/linux-2.4.37.9/arch/m68k/fpsp040/ |
D | binstr.S | 18 | 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 56 | d7: byte digit formation word;digit count {0,1} 79 moveql #1,%d7 |init d7 for second digit [all …]
|
D | decbin.S | 33 | 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 134 | (*) d0: temp digit storage 136 | (*) d2: digit count 154 mulul #TEN,%d1 |mul partial product by one digit place 155 bfextu %d4{%d3:#4},%d0 |get the digit and zero extend into d0 157 addqb #4,%d3 |advance d3 to the next digit
|
D | bindec.S | 93 | The binstr routine is used to convert the LEN digit
|
/linux-2.4.37.9/drivers/acpi/executer/ |
D | exoparg1.c | 226 acpi_integer digit; in acpi_ex_opcode_1A_1T_1R() local 300 digit = operand[0]->integer.value; in acpi_ex_opcode_1A_1T_1R() 304 for (i = 0; (i < acpi_gbl_integer_nybble_width) && (digit > 0); i++) { in acpi_ex_opcode_1A_1T_1R() 307 temp32 = ((u32) digit) & 0xF; in acpi_ex_opcode_1A_1T_1R() 326 digit >>= 4; in acpi_ex_opcode_1A_1T_1R() 338 digit = operand[0]->integer.value; in acpi_ex_opcode_1A_1T_1R() 342 for (i = 0; (i < acpi_gbl_integer_nybble_width) && (digit > 0); i++) { in acpi_ex_opcode_1A_1T_1R() 343 (void) acpi_ut_short_divide (&digit, 10, &digit, &temp32); in acpi_ex_opcode_1A_1T_1R() 352 if (digit > 0) { in acpi_ex_opcode_1A_1T_1R()
|
D | exconvrt.c | 316 acpi_integer digit; in acpi_ex_convert_to_ascii() local 341 digit = integer; in acpi_ex_convert_to_ascii() 343 (void) acpi_ut_short_divide (&digit, 10, &digit, &remainder); in acpi_ex_convert_to_ascii()
|
/linux-2.4.37.9/lib/ |
D | vsprintf.c | 534 char digit; in vsscanf() local 658 digit = *str; in vsscanf() 659 if (is_sign && digit == '-') in vsscanf() 660 digit = *(str + 1); in vsscanf() 662 if (!digit in vsscanf() 663 || (base == 16 && !isxdigit(digit)) in vsscanf() 664 || (base == 10 && !isdigit(digit)) in vsscanf() 665 || (base == 8 && (!isdigit(digit) || digit > '7')) in vsscanf() 666 || (base == 0 && !isdigit(digit))) in vsscanf()
|
/linux-2.4.37.9/drivers/usb/ |
D | CDCEther.c | 1115 static inline unsigned char hex2dec( unsigned char digit ) in hex2dec() argument 1119 if ( (digit >= '0') && (digit <= '9') ) { in hex2dec() 1120 return (digit - '0'); in hex2dec() 1122 if ( (digit >= 'a') && (digit <= 'f') ) { in hex2dec() 1123 return (digit - 'a' + 10); in hex2dec() 1125 if ( (digit >= 'A') && (digit <= 'F') ) { in hex2dec() 1126 return (digit - 'A' + 10); in hex2dec()
|
D | usbvideo.c | 288 unsigned short digit; in usbvideo_OverlayChar() local 302 digit = digits[ch]; in usbvideo_OverlayChar() 306 if (digit & 0x8000) { in usbvideo_OverlayChar() 311 digit = digit << 1; in usbvideo_OverlayChar()
|
/linux-2.4.37.9/drivers/ide/ |
D | ide-proc.c | 88 int digit; in ide_getxdigit() local 90 digit = c - '0'; in ide_getxdigit() 92 digit = tolower(c) - 'a' + 10; in ide_getxdigit() 94 digit = -1; in ide_getxdigit() 95 return digit; in ide_getxdigit() 375 int digit; in ide_getdigit() local 377 digit = c - '0'; in ide_getdigit() 379 digit = -1; in ide_getdigit() 380 return digit; in ide_getdigit()
|
/linux-2.4.37.9/arch/m68k/ifpsp060/src/ |
D | ilsp.S | 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 and shift the 426 st DDSECOND(%a6) # second digit 431 # shift down one word/digit to renormalize remainder.
|
/linux-2.4.37.9/net/ipv4/netfilter/ |
D | ipt_recent.c | 191 int digit; in ip_recent_ctrl() local 257 val = 0; base = 10; digit = 0; in ip_recent_ctrl() 261 else { base = 8; digit = 1; } in ip_recent_ctrl() 268 digit = 1; in ip_recent_ctrl() 272 digit = 1; in ip_recent_ctrl() 284 if(!digit) return used; in ip_recent_ctrl()
|
/linux-2.4.37.9/arch/ia64/sn/fakeprom/ |
D | README | 101 - a mem config entry consists of 8 hex digits. Each digit gives the 103 1GB*<dn>, where dn is the digit number. The amount of memory
|
/linux-2.4.37.9/drivers/net/ |
D | sb1250-mac.c | 2267 int digit; in sbmac_parse_xdigit() local 2270 digit = str - '0'; in sbmac_parse_xdigit() 2272 digit = str - 'a' + 10; in sbmac_parse_xdigit() 2274 digit = str - 'A' + 10; in sbmac_parse_xdigit() 2278 return digit; in sbmac_parse_xdigit()
|
/linux-2.4.37.9/Documentation/isdn/ |
D | README.eicon | 66 increases the digit with each further card. With a given driver-id
|
D | README | 51 applies to German 1TR6-type lines. This is a one-digit string, 362 (For 1TR6 a single digit is allowed, for Euro-ISDN the number is your 435 ? one arbitrary digit 438 [1-5] one digit between '1' and '5' 567 configured to a 1TR6-type EAZ (one digit). The mapping is also valid
|
/linux-2.4.37.9/drivers/net/wan/ |
D | Config.in | 55 # ATI's sync/async boards. Currently 2520, 4020, 4520, 8520 -- 0 in second digit means async only
|
/linux-2.4.37.9/Documentation/ia64/ |
D | efirtc.txt | 34 the reference date is different. Year is the using the full 4-digit format.
|
/linux-2.4.37.9/fs/hfs/ |
D | HFS.txt | 354 replaced by a percent character (%) followed by the two-digit 366 by a percent character (%) followed by the two-digit hexadecimal 380 followed by the two-digit hexadecimal code for the character. 395 (:) followed by the two-digit hexadecimal code for the 411 followed by the two-digit hexadecimal code for the character. 432 followed by the two-digit hexadecimal code for the character.
|
/linux-2.4.37.9/drivers/telephony/ |
D | ixj.h | 193 unsigned int digit:4; member
|
/linux-2.4.37.9/Documentation/ |
D | hayes-esp.txt | 57 with each digit representing the divisor to use for a corresponding port. The
|
D | svga.txt | 14 ** remember its mode ID (the four-digit hexadecimal number) and then
|
/linux-2.4.37.9/Documentation/networking/ |
D | decnet.txt | 46 set with a single digit, 0=EndNode, 1=L1 Router and 2=L2 Router.
|
/linux-2.4.37.9/drivers/scsi/aic7xxx/ |
D | README.aic7xxx | 316 - The 12-digit TSID can be found on the white barcode-type label
|
D | README.aic79xx | 398 - The 12-digit TSID can be found on the white barcode-type label
|
/linux-2.4.37.9/drivers/scsi/ |
D | README.tmscsim | 49 fixes to people for testing, I create intermediate versions with a digit
|