Home
last modified time | relevance | path

Searched refs:nptr (Results 1 – 9 of 9) sorted by relevance

/PHP-8.0/ext/bcmath/libbcmath/src/
H A Dnearzero.c50 char *nptr; local
58 nptr = num->n_value;
61 while ((count > 0) && (*nptr++ == 0)) count--;
63 if (count != 0 && (count != 1 || *--nptr != 1))
H A Dstr2num.c46 char *ptr, *nptr; in bc_str2num() local
90 nptr = (*num)->n_value; in bc_str2num()
93 *nptr++ = 0; in bc_str2num()
97 *nptr++ = CH_VAL(*ptr++); in bc_str2num()
105 *nptr++ = CH_VAL(*ptr++); in bc_str2num()
H A Dzero.c46 char *nptr; in bc_is_zero_for_scale() local
53 nptr = num->n_value; in bc_is_zero_for_scale()
56 while ((count > 0) && (*nptr++ == 0)) count--; in bc_is_zero_for_scale()
H A Dnum2long.c50 char *nptr; local
55 nptr = num->n_value;
57 char n = *nptr++;
H A Dnum2str.c49 char *nptr; local
64 nptr = num->n_value;
66 *sptr++ = BCD_CHAR(*nptr++);
73 *sptr++ = BCD_CHAR(*nptr++);
H A Doutput.c94 char *nptr; in bc_out_num() local
109 nptr = num->n_value; in bc_out_num()
110 if (num->n_len > 1 || *nptr != 0) in bc_out_num()
112 (*out_char) (BCD_CHAR(*nptr++)); in bc_out_num()
114 nptr++; in bc_out_num()
124 (*out_char) (BCD_CHAR(*nptr++)); in bc_out_num()
H A Ddiv.c53 unsigned char *nptr, *rptr; local
64 nptr = (unsigned char *) (num+size-1);
70 value = *nptr-- * digit + carry;
/PHP-8.0/ext/intl/collator/
H A Dcollator_is_numeric.c19 static double collator_u_strtod(const UChar *nptr, UChar **endptr) /* {{{ */ in collator_u_strtod() argument
21 const UChar *u = nptr, *nstart; in collator_u_strtod()
99 *endptr = (UChar *)nptr; in collator_u_strtod()
113 static zend_long collator_u_strtol(nptr, endptr, base) in collator_u_strtol() argument
114 const UChar *nptr; in collator_u_strtol()
118 register const UChar *s = nptr;
201 *endptr = (UChar *)(any ? s - 1 : nptr);
/PHP-8.0/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c2040 PCRE2_SPTR nptr; in internal_dfa_match() local
2047 nptr = PRIV(extuni)(c, ptr + clen, mb->start_subject, end_subject, utf, in internal_dfa_match()
2049 if (nptr >= end_subject && (mb->moptions & PCRE2_PARTIAL_HARD) != 0) in internal_dfa_match()
2226 PCRE2_SPTR nptr = PRIV(extuni)(c, ptr + clen, mb->start_subject, in internal_dfa_match() local
2228 if (nptr >= end_subject && (mb->moptions & PCRE2_PARTIAL_HARD) != 0) in internal_dfa_match()

Completed in 24 milliseconds