Searched refs:digit (Results 1 - 25 of 42) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/v850/kernel/
H A Drte_cb.c114 /* Which frame we're currently displaying for each digit. */
120 int digit;
130 for (digit = 0; digit < LED_NUM_DIGITS; digit++)
131 if (image[digit] != prev_image[digit]
132 && image[digit] && prev_image[digit])
139 for (digit
118 int digit; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/fpsp040/
H A Dbinstr.S18 | msb form a decimal digit. This process is iterated until
21 | A1. Init d7 to 1. D7 is the byte digit counter, and if 1, the
22 | digit formed will be assumed the least significant. This is
36 | into d2:d3. D1 will contain the bcd digit formed.
38 | A6. Test d7. If zero, the digit formed is the ms digit. If non-
39 | zero, it is the ls digit. Put the digit in its place in the
40 | upper word of d0. If it is the ls digit, write the word
50 | d1: temp used to form the digit
[all...]
H A Ddecbin.S33 | assumed following the least-significant digit.
43 | SM = 0 a non-zero digit in the integer position
44 | SM = 1 a non-zero digit in Mant0, lsd of the fraction
133 | (*) d0: temp digit storage
135 | (*) d2: digit count
153 mulul #TEN,%d1 |mul partial product by one digit place
154 bfextu %d4{%d3:#4},%d0 |get the digit and zero extend into d0
156 addqb #4,%d3 |advance d3 to the next digit
179 | (*) d0: temp digit storage
181 | (*) d2: digit coun
[all...]
/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;
201 *digit++ = number % 10;
206 while (digit != digits)
207 *ucs4++ = '0' + *--digit;
/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;
201 *digit++ = number % 10;
206 while (digit != digits)
207 *ucs4++ = '0' + *--digit;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/dhcp6/
H A Dserver6_token.l64 digit [0-9]
65 number ({digit})+
66 snum -?({digit})+
71 ipv4addr ({digit}{1,3}"."{digit}{1,3}"."{digit}{1,3}"."{digit}{1,3})
H A Dclient6_token.l89 digit [0-9]
90 number {digit}+
95 ipv4addr ({digit}{1,3}"."{digit}{1,3}"."{digit}{1,3}"."{digit}{1,3})
H A Dresolv_token.l77 digit [0-9]
78 number ({digit})+
80 ipv4addr ({digit}{1,3}"."{digit}{1,3}"."{digit}{1,3}"."{digit}{1,3})
H A Dlease_token.l99 digit [0-9]
100 number ({digit})+
104 ipv4addr ({digit}{1,3}"."{digit}{1,3}"."{digit}{1,3}"."{digit}{1,3})
111 string [a-zA-Z]([a-zA-Z]|{digit})*(":"{digit}+)?
H A Dra_token.l70 digit [0-9]
71 number ({digit})+
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/lib/
H A Dhttp_chunks.c78 /* Check for an ASCII hex digit.
80 static bool Curl_isxdigit(char digit) argument
82 return ( (digit >= 0x30 && digit <= 0x39) /* 0-9 */
83 || (digit >= 0x41 && digit <= 0x46) /* A-F */
84 || (digit >= 0x61 && digit <= 0x66) /* a-f */ ) ? TRUE : FALSE;
146 a hexadecimal digit. */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppd/plugins/pppoatm/
H A Dans.c179 int digit; local
183 digit = addr[i] & 0x0F;
184 *(buf++) = digit + (digit >= 10 ? '7' : '0');
186 digit = ((unsigned char) (addr[i])) >> 4;
187 *(buf++) = digit + (digit >= 10 ? '7' : '0');
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
H A Dec_mult.c185 * with the exception that the most significant digit may be only
186 * w-1 zeros away from that next non-zero digit.
212 r = OPENSSL_malloc(len + 1); /* modified wNAF may be one digit longer than binary representation
226 int digit = 0; local
236 digit = window_val - next_bit; /* -2^w < digit < 0 */
243 * so using a positive digit here will decrease
246 digit = window_val & (mask >> 1); /* 0 < digit < 2^w */
252 digit
636 int digit = wNAF[i][k]; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/radvd/
H A Dscanner.l27 digit [0-9]
28 number ({digit})+
29 snum -?({digit})+
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/acpi/executer/
H A Dexoparg1.c263 acpi_integer digit; local
337 digit = operand[0]->integer.value;
339 /* Convert each BCD digit (each is one nybble wide) */
342 (i < acpi_gbl_integer_nybble_width) && (digit > 0);
345 /* Get the least significant 4-bit BCD digit */
347 temp32 = ((u32) digit) & 0xF;
349 /* Check the range of the digit */
353 "BCD digit too large (not decimal): 0x%X",
360 /* Sum the digit into the result with the current power of 10 */
365 /* Shift to next BCD digit */
[all...]
H A Dexconvrt.c290 acpi_integer digit; local
328 digit = integer;
330 (void)acpi_ut_short_divide(digit, 10, &digit,
354 /* Get one hex digit, most significant digits first */
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/ec/
H A Dec_mult.c106 len = BN_num_bits(c) + 1; /* wNAF may be one digit longer than binary representation */
352 int digit = wNAF[i][k]; local
355 if (digit)
357 is_neg = digit < 0;
360 digit = -digit;
371 /* digit > 0 */
375 if (!EC_POINT_copy(r, val_sub[i][digit >> 1])) goto err;
380 if (!EC_POINT_add(group, r, r, val_sub[i][digit >> 1], ctx)) goto err;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/
H A Dvsprintf.c623 char digit; local
755 digit = *str;
756 if (is_sign && digit == '-')
757 digit = *(str + 1);
759 if (!digit
760 || (base == 16 && !isxdigit(digit))
761 || (base == 10 && !isdigit(digit))
762 || (base == 8 && (!isdigit(digit) || digit > '7'))
763 || (base == 0 && !isdigit(digit)))
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/flex/
H A Dscan.l133 ^"%"{LEXOPT}{OPTWS}[[:digit:]]*{OPTWS}{NL} ++linenum; /* ignore */
159 [[:digit:]]+ linenum = myctoi( yytext );
336 "{"/[[:digit:]] BEGIN(NUM); return '{';
523 "[:digit:]" BEGIN(CCL); return CCE_DIGIT;
540 [[:digit:]]+ {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/zebra/bgpd/
H A Dbgp_community.c529 int digit = 0; local
545 digit = 0;
552 digit = 1;
558 if (! digit)
H A Dbgp_ecommunity.c257 int digit = 0;
334 digit = 0;
363 digit = 1;
370 /* Low digit part must be there. */
371 if (! digit || ! separator)
256 int digit = 0; local
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/engines/rsaref/
H A Dbuild.com12 $ files := desc,digit,md2c,md5c,nn,prime,-
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/demos/engines/rsaref/
H A Dbuild.com12 $ files := desc,digit,md2c,md5c,nn,prime,-
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/m68k/ifpsp060/src/
H A Dilsp.S312 mov.w %d5, %d1 # 2nd quotient 'digit'
320 # In this algorithm, the divisor is treated as a 2 digit (word) number
321 # which is divided into a 3 digit (word) dividend to get one quotient
322 # digit (word). After subtraction, the dividend is shifted and the
324 # 'normalized' so that the process of estimating the quotient digit
341 # The comments use subscripts for the first quotient digit determination.
388 # the 3 digit (word) result with the current dividend words
400 bcc ldd2nd # no carry, do next quotient digit
418 # first quotient digit now correct. store digit an
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-runtime/intl/
H A Dvasnprintf.c418 (Need a_len+1 digits for the real division and 1 more digit for the
2238 int digit = (int) tail; local
2239 tail -= digit;
2242 if (digit & 1 ? tail >= 0.5L : tail > 0.5L)
2260 int digit; local
2262 digit = (int) mantissa;
2263 mantissa -= digit;
2264 *p++ = '0' + digit;
2274 digit = (int) mantissa;
2275 mantissa -= digit;
2389 int digit = (int) tail; local
2411 int digit; local
[all...]

Completed in 145 milliseconds

12