Home
last modified time | relevance | path

Searched refs:digits (Results 1 – 25 of 59) sorted by relevance

123

/linux-6.3-rc2/tools/include/nolibc/
A Dstdlib.h213 int digits = 0; in utoh_r() local
227 buffer[digits] = 0; in utoh_r()
228 return digits; in utoh_r()
253 int digits = 0; in utoa_r() local
268 buffer[digits] = 0; in utoa_r()
269 return digits; in utoa_r()
345 int digits = 0; in u64toh_r() local
363 buffer[digits] = 0; in u64toh_r()
364 return digits; in u64toh_r()
389 int digits = 0; in u64toa_r() local
[all …]
/linux-6.3-rc2/drivers/isdn/mISDN/
A Ddsp_dtmf.c130 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()
A Ddsp_core.c669 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()
785 while (*digits) { in dsp_function()
791 __func__, *digits, dsp->name); in dsp_function()
792 k = *digits | DTMF_TONE_VAL; in dsp_function()
[all …]
A Ddsp.h130 u8 digits[16]; /* dtmf result */ member
/linux-6.3-rc2/arch/m68k/fpsp040/
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 are stored in the correct position in
102 | digits are stored in the final string.
[all …]
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
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
/linux-6.3-rc2/arch/alpha/boot/
A Dstdio.c46 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()
/linux-6.3-rc2/arch/powerpc/boot/
A Dstdio.c82 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()
/linux-6.3-rc2/Documentation/admin-guide/
A Dlcd-panel-cgram.rst8 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-6.3-rc2/arch/x86/boot/
A Dprintf.c45 static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */ in number() local
84 tmp[i++] = (digits[__do_div(num, base)] | locase); in number()
/linux-6.3-rc2/drivers/watchdog/
A Docteon-wdt-main.c174 static void octeon_wdt_write_hex(u64 value, int digits) in octeon_wdt_write_hex() argument
179 for (d = 0; d < digits; d++) { in octeon_wdt_write_hex()
180 v = (value >> ((digits - d - 1) * 4)) & 0xf; in octeon_wdt_write_hex()
/linux-6.3-rc2/drivers/acpi/acpica/
A Dutprint.c106 const char *digits; in acpi_ut_put_number() local
111 digits = upper ? acpi_gbl_upper_hex_digits : acpi_gbl_lower_hex_digits; in acpi_ut_put_number()
119 *(pos++) = digits[digit_index]; in acpi_ut_put_number()
/linux-6.3-rc2/crypto/
A Decdsa.c226 const u64 *digits = (const u64 *)&d[1]; in ecdsa_set_pub_key() local
245 ecc_swap_digits(digits, ctx->pub_key.x, ndigits); in ecdsa_set_pub_key()
246 ecc_swap_digits(&digits[ndigits], ctx->pub_key.y, ndigits); in ecdsa_set_pub_key()
/linux-6.3-rc2/drivers/firmware/efi/libstub/
A Dvsprintf.c121 static const char digits[16] = "0123456789ABCDEF"; /* "GHIJKLMNOPQRSTUVWXYZ"; */ in number() local
134 *--end = digits[num & 0xf] | locase; in number()
/linux-6.3-rc2/Documentation/s390/
A Dpci.rst53 PCI function. The format depicted as XXXXXXXX above is 8 hexadecimal digits
54 with 0 padding and lower case hexadecimal digits.
/linux-6.3-rc2/Documentation/admin-guide/laptops/
A Dasus-laptop.rst203 where T control the 3 letters display, and DDD the 3 digits display,
206 DDD (digits)
207 000 to 999 = display digits
/linux-6.3-rc2/Documentation/ABI/testing/
A Dsysfs-platform-asus-laptop38 where T control the 3 letters display, and DDD the 3 digits display.
/linux-6.3-rc2/Documentation/admin-guide/perf/
A Dqcom_l2_pmu.rst22 Events are specified as 0xCCG, where CC is 2 hex digits specifying
/linux-6.3-rc2/Documentation/input/devices/
A Dyealink.rst68 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-6.3-rc2/Documentation/devicetree/bindings/net/
A Dethernet-phy.yaml41 The first group of digits is the 16 bit Phy Identifier 1
43 second group of digits is the Phy Identifier 2 register,
/linux-6.3-rc2/tools/power/pm-graph/config/
A Dfreeze.cfg88 # Number of significant digits in timestamps (0:S, [3:ms], 6:us)
A Dstandby.cfg88 # Number of significant digits in timestamps (0:S, [3:ms], 6:us)
A Dsuspend-dev.cfg88 # Number of significant digits in timestamps (0:S, [3:ms], 6:us)
/linux-6.3-rc2/Documentation/filesystems/nfs/
A Drpc-cache.rst215 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

Completed in 30 milliseconds

123