/Linux-v5.10/arch/m68k/fpsp040/ |
D | bindec.S | 44 | 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 are stored in the correct position in 102 | digits are stored in the final string. [all …]
|
D | decbin.S | 27 | 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 208 moveql #FNIBS,%d2 |reset number of digits per a0 ptr [all …]
|
D | binstr.S | 12 | Output: LEN bcd digits representing the 64-bit integer. 19 | LEN digits are formed. 121 clrw %d7 |set d7a to signal no digits done
|
/Linux-v5.10/drivers/isdn/mISDN/ |
D | dsp_dtmf.c | 130 dsp->dtmf.digits[0] = '\0'; in dsp_dtmf_goertzel_decode() 155 return dsp->dtmf.digits; in dsp_dtmf_goertzel_decode() 179 return dsp->dtmf.digits; in dsp_dtmf_goertzel_decode() 298 if ((strlen(dsp->dtmf.digits) + 1) in dsp_dtmf_goertzel_decode() 299 < sizeof(dsp->dtmf.digits)) { in dsp_dtmf_goertzel_decode() 300 dsp->dtmf.digits[strlen( in dsp_dtmf_goertzel_decode() 301 dsp->dtmf.digits) + 1] = '\0'; in dsp_dtmf_goertzel_decode() 302 dsp->dtmf.digits[strlen( in dsp_dtmf_goertzel_decode() 303 dsp->dtmf.digits)] = what; in dsp_dtmf_goertzel_decode()
|
D | dsp_core.c | 669 u8 *digits = NULL; in dsp_function() local 726 digits = dsp_dtmf_goertzel_decode(dsp, skb->data, in dsp_function() 738 if (digits) { in dsp_function() 739 while (*digits) { in dsp_function() 745 __func__, *digits, dsp->name); in dsp_function() 746 k = *digits | DTMF_TONE_VAL; in dsp_function() 758 digits++; in dsp_function() 783 digits = dsp_dtmf_goertzel_decode(dsp, skb->data, in dsp_function() 785 while (*digits) { in dsp_function() 791 __func__, *digits, dsp->name); in dsp_function() [all …]
|
/Linux-v5.10/tools/perf/util/ |
D | demangle-rust.c | 59 * 1. The hash must consist of "h" followed by 16 lowercase hex digits. 62 * hex digits. This is true of 99.9998% of hashes so once in your life you 97 * A hash is the prefix "::h" followed by 16 lowercase hex digits. The hex 98 * digits must comprise between 5 and 15 (inclusive) distinct digits. 120 /* Count how many distinct digits seen */ in is_prefixed_hash()
|
/Linux-v5.10/arch/alpha/boot/ |
D | stdio.c | 46 const char *digits="0123456789abcdefghijklmnopqrstuvwxyz"; in number() local 50 digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; in number() 80 tmp[i++] = digits[do_div(num, base)]; in number() 95 *str++ = digits[33]; in number() 121 int precision; /* min. # of digits for integers; max in vsprintf()
|
/Linux-v5.10/arch/x86/boot/ |
D | printf.c | 45 static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */ in number() local 51 /* locase = 0 or 0x20. ORing digits or letters with 'locase' in number() 52 * produces same digits or (maybe lowercased) letters */ in number() 84 tmp[i++] = (digits[__do_div(num, base)] | locase); in number() 124 int precision; /* min. # of digits for integers; max in vsprintf()
|
/Linux-v5.10/arch/powerpc/boot/ |
D | stdio.c | 82 const char *digits="0123456789abcdefghijklmnopqrstuvwxyz"; in number() local 86 digits = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"; in number() 116 tmp[i++] = digits[do_div(num, base)]; in number() 131 *str++ = digits[33]; in number() 157 int precision; /* min. # of digits for integers; max in vsprintf()
|
/Linux-v5.10/Documentation/admin-guide/ |
D | lcd-panel-cgram.rst | 8 number, and up to 8 couples of hex digits terminated by a semi-colon 9 (';'). Each couple of digits represents a line, with 1-bits for each
|
/Linux-v5.10/lib/mpi/ |
D | generic_mpih-lshift.c | 18 /* Shift U (pointed to by UP and USIZE digits long) CNT bits to the left 19 * and store the USIZE least significant digits of the result at WP.
|
/Linux-v5.10/crypto/ |
D | ecc.h | 77 * @ndigits: curve's number of digits 92 * @ndigits: curve number of digits 104 * @ndigits: curve's number of digits 118 * @ndigits: curve's number of digits
|
/Linux-v5.10/net/sunrpc/ |
D | debugfs.c | 123 char name[24]; /* enough for "../../rpc_xprt/ + 8 hex digits + NULL */ in do_xprt_debugfs() 124 char link[9]; /* enough for 8 hex digits + NULL */ in do_xprt_debugfs() 149 char name[9]; /* enough for 8 hex digits + NULL */ in rpc_clnt_debugfs_register() 224 char name[9]; /* 8 hex digits + NULL term */ in rpc_xprt_debugfs_register()
|
/Linux-v5.10/drivers/firmware/efi/libstub/ |
D | vsprintf.c | 116 * locase = 0 or 0x20. ORing digits or letters with 'locase' in number() 117 * produces same digits or (maybe lowercased) letters in number() 121 static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */ in number() local 134 *--end = digits[num & 0xf] | locase; in number() 315 int precision; /* min. # of digits for integers; max in vsnprintf() 458 /* precision is minimum number of digits to print */ in vsnprintf()
|
/Linux-v5.10/drivers/watchdog/ |
D | octeon-wdt-main.c | 171 * @digits: Number of digits to print (1 to 16) 173 static void octeon_wdt_write_hex(u64 value, int digits) in octeon_wdt_write_hex() argument 178 for (d = 0; d < digits; d++) { in octeon_wdt_write_hex() 179 v = (value >> ((digits - d - 1) * 4)) & 0xf; in octeon_wdt_write_hex()
|
/Linux-v5.10/Documentation/filesystems/nfs/ |
D | rpc-cache.rst | 215 hex digits, and pairs of these digits provide the bytes in the 217 - otherwise a \ in the field must be followed by 3 octal digits
|
/Linux-v5.10/net/netfilter/ |
D | nf_nat_irc.c | 76 * AAAAAAAAA: bound addr (1.0.0.0==16777216, min 8 digits, in help() 77 * 255.255.255.255==4294967296, 10 digits) in help()
|
/Linux-v5.10/lib/ |
D | string_helpers.c | 95 /* work out in j how many digits of precision we need from the in string_get_size() 253 * '\NNN' - byte with octal value NNN (1 to 3 digits) 255 * '\xHH' - byte with hexadecimal value HH (1 to 2 digits) 481 * '\NNN' - byte with octal value NNN (3 digits) 489 * '\xHH' - byte with hexadecimal value HH (2 digits)
|
/Linux-v5.10/arch/x86/lib/ |
D | misc.c | 3 * Count the digits of @val including a possible sign.
|
/Linux-v5.10/Documentation/devicetree/bindings/net/ |
D | ethernet-phy.yaml | 41 The first group of digits is the 16 bit Phy Identifier 1 43 second group of digits is the Phy Identifier 2 register,
|
/Linux-v5.10/Documentation/admin-guide/laptops/ |
D | asus-laptop.rst | 203 where T control the 3 letters display, and DDD the 3 digits display, 206 DDD (digits) 207 000 to 999 = display digits
|
/Linux-v5.10/Documentation/input/devices/ |
D | yealink.rst | 68 From a userspace perspective the world is separated into "digits" and "icons". 123 - If less characters are written than allowed, the remaining digits are
|
/Linux-v5.10/sound/pci/asihpi/ |
D | hpi_version.h | 12 /* Use single digits for versions less that 10 to avoid octal. */
|
/Linux-v5.10/drivers/md/bcache/ |
D | util.c | 104 /* For as long as the number is more than 3 digits, but at least in STRTO_H() 116 /* '-', up to 3 digits, '.', 1 digit, 1 character, null; in STRTO_H()
|
/Linux-v5.10/Documentation/admin-guide/perf/ |
D | qcom_l2_pmu.rst | 22 Events are specified as 0xCCG, where CC is 2 hex digits specifying
|