nptr               54 ext/bcmath/libbcmath/src/div.c   unsigned char *nptr, *rptr;
nptr               65 ext/bcmath/libbcmath/src/div.c 	  nptr = (unsigned char *) (num+size-1);
nptr               71 ext/bcmath/libbcmath/src/div.c 	      value = *nptr-- * digit + carry;
nptr               51 ext/bcmath/libbcmath/src/nearzero.c   char *nptr;
nptr               59 ext/bcmath/libbcmath/src/nearzero.c   nptr = num->n_value;
nptr               62 ext/bcmath/libbcmath/src/nearzero.c   while ((count > 0) && (*nptr++ == 0)) count--;
nptr               64 ext/bcmath/libbcmath/src/nearzero.c   if (count != 0 && (count != 1 || *--nptr != 1))
nptr               51 ext/bcmath/libbcmath/src/num2long.c   char *nptr;
nptr               56 ext/bcmath/libbcmath/src/num2long.c   nptr = num->n_value;
nptr               58 ext/bcmath/libbcmath/src/num2long.c     val = val*BASE + *nptr++;
nptr               49 ext/bcmath/libbcmath/src/num2str.c 	char *nptr;
nptr               65 ext/bcmath/libbcmath/src/num2str.c 	nptr = num->n_value;
nptr               67 ext/bcmath/libbcmath/src/num2str.c 		*sptr++ = BCD_CHAR(*nptr++);
nptr               74 ext/bcmath/libbcmath/src/num2str.c 			*sptr++ = BCD_CHAR(*nptr++);
nptr               95 ext/bcmath/libbcmath/src/output.c   char *nptr;
nptr              110 ext/bcmath/libbcmath/src/output.c 	nptr = num->n_value;
nptr              111 ext/bcmath/libbcmath/src/output.c 	if (num->n_len > 1 || *nptr != 0)
nptr              113 ext/bcmath/libbcmath/src/output.c 	    (*out_char) (BCD_CHAR(*nptr++));
nptr              115 ext/bcmath/libbcmath/src/output.c 	  nptr++;
nptr              125 ext/bcmath/libbcmath/src/output.c 	      (*out_char) (BCD_CHAR(*nptr++));
nptr               47 ext/bcmath/libbcmath/src/str2num.c   char *ptr, *nptr;
nptr               91 ext/bcmath/libbcmath/src/str2num.c   nptr = (*num)->n_value;
nptr               94 ext/bcmath/libbcmath/src/str2num.c       *nptr++ = 0;
nptr               98 ext/bcmath/libbcmath/src/str2num.c     *nptr++ = CH_VAL(*ptr++);
nptr              106 ext/bcmath/libbcmath/src/str2num.c 	*nptr++ = CH_VAL(*ptr++);
nptr               47 ext/bcmath/libbcmath/src/zero.c   char *nptr;
nptr               54 ext/bcmath/libbcmath/src/zero.c   nptr = num->n_value;
nptr               57 ext/bcmath/libbcmath/src/zero.c   while ((count > 0) && (*nptr++ == 0)) count--;
nptr               34 ext/intl/collator/collator_is_numeric.c static double collator_u_strtod(const UChar *nptr, UChar **endptr) /* {{{ */
nptr               36 ext/intl/collator/collator_is_numeric.c 	const UChar *u = nptr, *nstart;
nptr              114 ext/intl/collator/collator_is_numeric.c 		*endptr = (UChar *)nptr;
nptr              128 ext/intl/collator/collator_is_numeric.c static zend_long collator_u_strtol(nptr, endptr, base)
nptr              129 ext/intl/collator/collator_is_numeric.c 	const UChar *nptr;
nptr              133 ext/intl/collator/collator_is_numeric.c 	register const UChar *s = nptr;
nptr              216 ext/intl/collator/collator_is_numeric.c 		*endptr = (UChar *)(any ? s - 1 : nptr);