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

/drivers/acpi/acpica/
H A Dexoparg1.c265 u64 digit; local
339 digit = operand[0]->integer.value;
341 /* Convert each BCD digit (each is one nybble wide) */
344 (i < acpi_gbl_integer_nybble_width) && (digit > 0);
347 /* Get the least significant 4-bit BCD digit */
349 temp32 = ((u32) digit) & 0xF;
351 /* Check the range of the digit */
355 "BCD digit too large (not decimal): 0x%X",
362 /* Sum the digit into the result with the current power of 10 */
367 /* Shift to next BCD digit */
[all...]
H A Dexconvrt.c289 u64 digit; local
327 digit = integer;
329 (void)acpi_ut_short_divide(digit, 10, &digit,
353 /* Get one hex digit, most significant digits first */
/drivers/atm/
H A DKconfig263 string "Dxxxx" to VCI 1023 (where x is a hex digit). See the file
287 string "Dxxxx" to VCI 1023 (where x is a hex digit). See the file
/drivers/acpi/
H A DKconfig268 Enter a 4-digit year, e.g., 2001, to disable ACPI by default
/drivers/staging/telephony/
H A Dixj.h180 unsigned int digit:4; member in struct:__anon5409
H A Dixj.c59 * Changed back to three digit version numbers
2622 j->dtmf_current = j->dtmf.bits.digit;
/drivers/net/ethernet/micrel/
H A Dksz884x.c6863 int digit; local
6866 digit = hex_to_bin(macaddr[i]);
6867 if (digit >= 0)
6868 num = num * 16 + digit;
/drivers/net/ethernet/broadcom/bnx2x/
H A Dbnx2x_link.c6053 u8 digit; local
6064 digit = ((num & mask) >> shift);
6065 if (digit == 0 && remove_leading_zeros) {
6068 } else if (digit < 0xa)
6069 *str_ptr = digit + '0';
6071 *str_ptr = digit - 0xa + 'a';

Completed in 558 milliseconds