Searched refs:digits (Results 1 - 25 of 27) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dinet_pton.c98 static const char digits[] = "0123456789"; local
109 if((pch = strchr(digits, ch)) != NULL) {
110 unsigned int val = *tp * 10 + (unsigned int)(pch - digits);
H A Dmprintf.c94 /* Lower-case digits. */
97 /* Upper-case digits. */
618 /* Base-36 digits for numbers. */
619 const char *digits = lower_digits; local
748 digits = (p->flags & FLAGS_UPPER)? upper_digits : lower_digits;
784 *w-- = digits[num % base];
895 digits = (p->flags & FLAGS_UPPER)? upper_digits : lower_digits;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/libid3tag-0.15.0b/
H A Ducs4.c196 int digits[10], *digit; local
198 digit = digits;
206 while (digit != digits)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/packages/libid3tag-0.15.0b/
H A Ducs4.c196 int digits[10], *digit; local
198 digit = digits;
206 while (digit != digits)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/boot/
H A Dstdio.c62 const char *digits="0123456789abcdefghijklmnopqrstuvwxyz"; local
66 digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
96 tmp[i++] = digits[do_div(num, base)];
111 *str++ = digits[33];
137 int precision; /* min. # of digits for integers; max
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dvasnprintf.c417 /* Allocate room for a_len+2 digits.
418 (Need a_len+1 digits for the real division and 1 more digit for the
751 Return the allocated memory - containing the decimal digits in low-to-high
780 /* Store the remainder as 9 decimal digits. */
974 Return the allocated memory - containing the decimal digits in low-to-high
991 char *digits; local
1187 digits = convert_to_decimal (z, extra_zeroes);
1189 return digits;
1196 Return the allocated memory - containing the decimal digits in low-to-high
1214 Return the allocated memory - containing the decimal digits i
2768 char *digits; local
2823 char *digits; local
2934 char *digits; local
3127 char *digits; local
3179 char *digits; local
3303 char *digits; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/libasprintf/
H A Dvasnprintf.c417 /* Allocate room for a_len+2 digits.
418 (Need a_len+1 digits for the real division and 1 more digit for the
751 Return the allocated memory - containing the decimal digits in low-to-high
780 /* Store the remainder as 9 decimal digits. */
974 Return the allocated memory - containing the decimal digits in low-to-high
991 char *digits; local
1187 digits = convert_to_decimal (z, extra_zeroes);
1189 return digits;
1196 Return the allocated memory - containing the decimal digits in low-to-high
1214 Return the allocated memory - containing the decimal digits i
2768 char *digits; local
2823 char *digits; local
2934 char *digits; local
3127 char *digits; local
3179 char *digits; local
3303 char *digits; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/
H A Dvasnprintf.c416 /* Allocate room for a_len+2 digits.
417 (Need a_len+1 digits for the real division and 1 more digit for the
750 Return the allocated memory - containing the decimal digits in low-to-high
779 /* Store the remainder as 9 decimal digits. */
973 Return the allocated memory - containing the decimal digits in low-to-high
990 char *digits; local
1186 digits = convert_to_decimal (z, extra_zeroes);
1188 return digits;
1195 Return the allocated memory - containing the decimal digits in low-to-high
1213 Return the allocated memory - containing the decimal digits i
2767 char *digits; local
2822 char *digits; local
2933 char *digits; local
3126 char *digits; local
3178 char *digits; local
3302 char *digits; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/fpsp040/
H A Dbindec.S44 | LEN is the number of digits to be displayed. The
45 | k-factor can dictate either the total number of digits,
46 | if it is a positive number, or the number of digits
54 | of decimal places needed to insure LEN integer digits
69 | significant digits. The excess digits are collected
85 | A13. Check for LEN digits.
86 | If the int operation results in more than LEN digits,
87 | or less than LEN -1 digits, adjust ILOG and repeat from
97 | The bcd digits ar
[all...]
H A Ddecbin.S27 | digits, rather than 1 integer and 16 fraction digits.
32 | The mantissa digits will be converted with the decimal point
127 | 4. Subtract 16 to compensate for interpreting the mant as all integer digits.
128 | (i.e., all digits assumed left of the decimal point.)
144 movel #EDIGITS,%d2 |# of nibbles (digits) in fraction part
145 moveql #ESTRT,%d3 |counter to pick up digits
157 dbf %d2,e_gd |if we have used all 3 digits, exit loop
174 | (i.e., all digits assumed left of the decimal point.)
207 moveql #FSTRT,%d3 |counter to pick up digits
[all...]
H A Dbinstr.S12 | Output: LEN bcd digits representing the 64-bit integer.
19 | LEN digits are formed.
121 clrw %d7 |set d7a to signal no digits done
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/modules/
H A Dgetdate.y66 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
88 /* An integer value, and the number of digits in its textual
93 int digits;
292 /* Interpret as YYYY/MM/DD if the first value has 4 or more digits,
297 if (4 <= $1.digits)
323 PC.year.digits = $3.digits;
405 && ! PC.rels_seen && (PC.times_seen || 2 < $1.digits))
409 if (4 < $1.digits)
415 PC.year.digits
[all...]
H A Dgetdate.c161 POSIX says that only '0' through '9' are digits. Prefer ISDIGIT to
183 /* An integer value, and the number of digits in its textual
188 int digits; member in struct:__anon1684
1368 /* Interpret as YYYY/MM/DD if the first value has 4 or more digits,
1373 if (4 <= yyvsp[-4].textintval.digits)
1405 PC.year.digits = yyvsp[0].textintval.digits;
1549 && ! PC.rels_seen && (PC.times_seen || 2 < yyvsp[0].textintval.digits))
1553 if (4 < yyvsp[0].textintval.digits)
1559 PC.year.digits
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/atm/
H A Dproc.c418 int digits,num; local
426 digits = 0;
427 for (num = dev->number; num; num /= 10) digits++;
428 if (!digits) digits++;
430 dev->proc_name = kmalloc(strlen(dev->type) + digits + 2, GFP_KERNEL);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ppc/boot/common/
H A Dmisc-common.c53 static int _cvt(unsigned long val, char *buf, long radix, char *digits);
439 _cvt(unsigned long val, char *buf, long radix, char *digits) argument
450 *cp++ = digits[val % radix];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dvsprintf.c149 const char *digits; local
154 digits = (type & LARGE) ? large_digits : small_digits;
184 tmp[i++] = digits[do_div(num,base)];
210 *buf = digits[33];
268 int precision; /* min. # of digits for integers; max
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/mtools-4.0.10/
H A Dfloppyd.c526 char *digits = portnum; local
530 for (port = 0; isdigit(*digits); ++digits)
532 port = (port * 10) + (*digits - '0');
535 if ((*digits != '\0') || (port <= 0))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/etc/atalkd/
H A Dconfig.c825 int digits = 0; local
839 digits++;
843 if (digits == 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/etc/atalkd/
H A Dconfig.c825 int digits = 0; local
839 digits++;
843 if (digits == 0) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/shared/
H A Dshutils.c439 * @return Returns 0 if the string ends with digits or digits.digits, -1 otherwise.
440 * If ifname ends in digits.digits, then unit and subuint are set
442 * in just digits, unit is set to the value, and subunit is set
449 const char digits[] = "0123456789"; local
467 len = sh_strrspn(str, digits);
469 /* fail if there were no trailing digits */
495 len = sh_strrspn(str, digits);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/shared/
H A Dbcmstdlib.c99 const char *digits)
109 *op++ = digits[num % radix];
98 __atox(char *buf, char * end, unsigned int num, unsigned int radix, int width, const char *digits) argument
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/expat-2.0.1/xmlwf/
H A Dxmlwf.c574 static const XML_Char digits[] = T("0123456789"); local
575 const XML_Char *s = tcschr(digits, name[i]);
579 cp += (int)(s - digits);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Dprom_init.c456 static char digits[] = "0123456789abcdef"; local
464 result[i] = digits[x & 0xf];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/ifpsp060/src/
H A Dilsp.S328 clr.b DDSECOND(%a6) # clear flag for quotient digits
402 # need to add back divisor longword to current ms 3 digits of dividend
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/media/video/usbvideo/
H A Dusbvideo.c265 static const unsigned short digits[16] = { local
297 digit = digits[ch];

Completed in 203 milliseconds

12