Home
last modified time | relevance | path

Searched refs:digit (Results 1 – 25 of 112) sorted by relevance

12345

/openbmc/linux/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
56 | d7: byte digit formation word;digit count {0,1}
78 moveql #1,%d7 |init d7 for second 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
/openbmc/linux/arch/powerpc/boot/
H A Dstdlib.c21 int digit; in strtoull() local
24 digit = *ptr - '0'; in strtoull()
26 digit = *ptr - 'A' + 10; in strtoull()
28 digit = *ptr - 'a' + 10; in strtoull()
33 ret += digit; in strtoull()
/openbmc/u-boot/include/
H A Ddebug_uart.h147 static inline void printhex1(uint digit) \
149 digit &= 0xf; \
150 _debug_uart_putc(digit > 9 ? digit - 10 + 'a' : digit + '0'); \
/openbmc/qemu/target/s390x/tcg/
H A Dint_helper.c105 int digit, sign; in HELPER() local
114 digit = dec & 0xf; in HELPER()
115 if (digit > 0x9) { in HELPER()
119 bin += digit * pow10; in HELPER()
138 int digit, i, sign; in HELPER() local
148 digit = dec64[i >> 4] & 0xf; in HELPER()
149 if (digit > 0x9) { in HELPER()
161 tmp = bin + pow10 * digit; in HELPER()
/openbmc/linux/arch/arm/boot/compressed/
H A Datags_to_fdt.c106 uint32_t digit; in hex_str() local
110 digit = value >> 28; in hex_str()
112 digit &= 0xf; in hex_str()
113 if (digit < 10) in hex_str()
114 digit += '0'; in hex_str()
116 digit += 'A'-10; in hex_str()
117 *out++ = digit; in hex_str()
/openbmc/u-boot/lib/libavb/
H A Davb_property_descriptor.c141 int digit; in avb_property_lookup_uint64() local
146 digit = c - '0'; in avb_property_lookup_uint64()
148 digit = c - 'a' + 10; in avb_property_lookup_uint64()
150 digit = c - 'A' + 10; in avb_property_lookup_uint64()
156 parsed_val += digit; in avb_property_lookup_uint64()
/openbmc/u-boot/tools/
H A Dimg2srec.c73 uint32_t digit; in ExtractHex() local
80 if ((c >= '0') && (c <= '9')) digit = (uint32_t)(c - '0'); in ExtractHex()
81 else if ((c >= 'A') && (c <= 'F')) digit = (uint32_t)(c - 'A' + 10); in ExtractHex()
82 else if ((c >= 'a') && (c <= 'f')) digit = (uint32_t)(c - 'a' + 10); in ExtractHex()
85 num += digit; in ExtractHex()
95 uint32_t digit; in ExtractDecimal() local
102 if ((c >= '0') && (c <= '9')) digit = (uint32_t)(c - '0'); in ExtractDecimal()
105 num += digit; in ExtractDecimal()
/openbmc/linux/drivers/acpi/acpica/
H A Dexoparg1.c236 u64 digit; in acpi_ex_opcode_1A_1T_1R() local
310 digit = operand[0]->integer.value; in acpi_ex_opcode_1A_1T_1R()
315 (i < acpi_gbl_integer_nybble_width) && (digit > 0); in acpi_ex_opcode_1A_1T_1R()
320 temp32 = ((u32) digit) & 0xF; in acpi_ex_opcode_1A_1T_1R()
340 digit >>= 4; in acpi_ex_opcode_1A_1T_1R()
365 digit = operand[0]->integer.value; in acpi_ex_opcode_1A_1T_1R()
370 (i < acpi_gbl_integer_nybble_width) && (digit > 0); in acpi_ex_opcode_1A_1T_1R()
372 (void)acpi_ut_short_divide(digit, 10, &digit, in acpi_ex_opcode_1A_1T_1R()
385 if (digit > 0) { in acpi_ex_opcode_1A_1T_1R()
H A Dutstrsuppt.c21 static acpi_status acpi_ut_strtoul_add64(u64 addend1, u32 digit, u64 *out_sum);
423 static acpi_status acpi_ut_strtoul_add64(u64 addend1, u32 digit, u64 *out_sum) in acpi_ut_strtoul_add64() argument
429 if ((addend1 > 0) && (digit > (ACPI_UINT64_MAX - addend1))) { in acpi_ut_strtoul_add64()
433 sum = addend1 + digit; in acpi_ut_strtoul_add64()
H A Dexconvrt.c262 u64 digit; in acpi_ex_convert_to_ascii() local
303 digit = integer; in acpi_ex_convert_to_ascii()
305 (void)acpi_ut_short_divide(digit, 10, &digit, in acpi_ex_convert_to_ascii()
/openbmc/linux/Documentation/userspace-api/media/rc/
H A Drc-tables.rst52 - Keyboard digit 0
60 - Keyboard digit 1
68 - Keyboard digit 2
76 - Keyboard digit 3
84 - Keyboard digit 4
92 - Keyboard digit 5
100 - Keyboard digit 6
108 - Keyboard digit 7
116 - Keyboard digit 8
124 - Keyboard digit 9
[all …]
/openbmc/linux/samples/pktgen/
H A Dfunctions.sh239 for digit in "${addr[@]}"; do
240 [[ $IP6 ]] && digit=$[ 16#$digit ]
241 if ! (in_between $digit 0 $max); then
289 digit=$[ IP6 ? 16#${ip[$i]} : ${ip[$i]} ]
290 ip_bit=${D2B[$digit]}
/openbmc/linux/tools/testing/selftests/size/
H A Dget_size.c47 unsigned int digit; in num_to_str() local
53 digit = num % 10; in num_to_str()
54 *(--buf) = digit + '0'; in num_to_str()
/openbmc/linux/Documentation/input/devices/
H A Dyealink.rst69 A digit can have a character set, an icon can only be ON or OFF.
73 '8' : Generic 7 segment digit with individual addressable segments
75 Reduced capability 7 segment digit, when segments are hard wired together.
76 '1' : 2 segments digit only able to produce a 1.
77 'e' : Most significant day of the month digit,
79 'M' : Most significant minute digit,
/openbmc/openbmc/poky/meta/files/common-licenses/
H A DNTP4 Copyright (c) (CopyrightHoldersName) (From 4-digit-year)-(To 4-digit-year)
/openbmc/openbmc/poky/meta/recipes-extended/unzip/unzip/
H A D19-cve-2016-9844-zipinfo-buffer-overflow.patch21 + * &methbuf[]. Use the old, three-digit decimal format
23 + * and use four-digit hexadecimal.
H A D18-cve-2014-9913-unzip-buffer-overflow.patch22 + * &methbuf[]. Use the old, three-digit decimal format
24 + * colon, and use four-digit hexadecimal.
/openbmc/linux/arch/x86/boot/compressed/
H A Dmisc.c173 unsigned long digit = (value >> bits) & 0xf; in __puthex() local
175 if (digit < 0xA) in __puthex()
176 alpha[0] = '0' + digit; in __puthex()
178 alpha[0] = 'a' + (digit - 0xA); in __puthex()
/openbmc/linux/lib/
H A Dstring_helpers.c228 int digit; in unescape_hex() local
234 num = digit = hex_to_bin(*q++); in unescape_hex()
235 if (digit < 0) in unescape_hex()
238 digit = hex_to_bin(*q); in unescape_hex()
239 if (digit >= 0) { in unescape_hex()
241 num = (num << 4) | digit; in unescape_hex()
/openbmc/openbmc/poky/meta/recipes-devtools/dpkg/dpkg/
H A D0002-Adapt-to-linux-wrs-kernel-version-which-has-characte.patch5 inside. Remove the first-char-digit-check (as the 1.15.8.5 version does).
24 - return dpkg_put_warn(err, _("version number does not start with digit"));
/openbmc/linux/Documentation/ABI/stable/
H A Dsysfs-driver-ib_srp10 * id_ext, a 16-digit hexadecimal number specifying the eight
14 * ioc_guid, a 16-digit hexadecimal number specifying the eight
17 * dgid, a 32-digit hexadecimal number specifying the
19 * pkey, a four-digit hexadecimal number specifying the
21 * service_id, a 16-digit hexadecimal number specifying the
33 * initiator_ext, a 16-digit hexadecimal number specifying the
/openbmc/libpldm/src/
H A Dutils.c112 #define AS_CHAR(digit) ((digit) + '0') argument
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-devices-lpss_ltr28 represented as an 8-digit hexadecimal number.
40 as an 8-digit hexadecimal number.
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/rdist/rdist-6.1.5/
H A Drdist-6.1.5-stat64.patch33 fatalerr("Expected digit, got '%s'.", cp);
42 fatalerr("Expected digit, got '%s'.", cp);

12345