| /OK3568_Linux_fs/kernel/arch/m68k/fpsp040/ |
| H A 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} 78 moveql #1,%d7 |init d7 for second digit [all …]
|
| H A 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 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
|
| /OK3568_Linux_fs/buildroot/dl/stressapptest/git/src/ |
| H A D | sattypes.h | 136 int digit = 0, last_non_zero_size = 1; in cpuset_format() local 139 digit |= 1 << (i & 3); in cpuset_format() 142 format += char(digit <= 9 ? '0' + digit: 'A' + digit - 10); in cpuset_format() 143 if (digit) { in cpuset_format() 145 digit = 0; in cpuset_format() 149 if (digit) { in cpuset_format() 150 format += char(digit <= 9 ? '0' + digit: 'A' + digit - 10); in cpuset_format()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/spirit/home/qi/numeric/detail/ |
| H A D | numeric_utils.hpp | 112 inline static unsigned digit(Char ch) in digit() function 137 const int digit = radix_traits<Radix>::digit(ch); in add() local 138 n = n * T(Radix) + T(digit); in add() 154 const int digit = radix_traits<Radix>::digit(ch); in add() local 155 if (n > max::value - digit) in add() 158 n += static_cast<T>(digit); in add() 169 const int digit = radix_traits<Radix>::digit(ch); in add() local 170 n = n * T(Radix) - T(digit); in add() 186 int const digit = radix_traits<Radix>::digit(ch); in add() local 187 if (n < min::value + digit) in add() [all …]
|
| /OK3568_Linux_fs/kernel/arch/powerpc/boot/ |
| H A D | stdlib.c | 21 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()
|
| /OK3568_Linux_fs/u-boot/include/ |
| H A D | debug_uart.h | 185 static inline void printhex1(uint digit) \ 187 digit &= 0xf; \ 188 _debug_uart_putc(digit > 9 ? digit - 10 + 'a' : digit + '0'); \
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/compressed/ |
| H A D | atags_to_fdt.c | 105 uint32_t digit; in hex_str() local 109 digit = value >> 28; in hex_str() 111 digit &= 0xf; in hex_str() 112 if (digit < 10) in hex_str() 113 digit += '0'; in hex_str() 115 digit += 'A'-10; in hex_str() 116 *out++ = digit; in hex_str()
|
| /OK3568_Linux_fs/external/xserver/hw/dmx/config/ |
| H A D | scanner.l | 57 number [[:digit:]x]+ 58 dimension [[:digit:]]+[[:blank:]]*x[[:blank:]]*[[:digit:]]+ 59 offset [+-][[:digit:]]+[[:blank:]]*[+-][[:blank:]]*[[:digit:]]+ 60 origin @[[:blank:]]*[[:digit:]]+[[:blank:]]*[[:blank:]]*x[[:digit:]]+
|
| /OK3568_Linux_fs/u-boot/lib/avb/libavb/ |
| H A D | avb_property_descriptor.c | 160 int digit; in avb_property_lookup_uint64() local 165 digit = c - '0'; in avb_property_lookup_uint64() 167 digit = c - 'a' + 10; in avb_property_lookup_uint64() 169 digit = c - 'A' + 10; in avb_property_lookup_uint64() 175 parsed_val += digit; in avb_property_lookup_uint64()
|
| /OK3568_Linux_fs/u-boot/tools/ |
| H A D | img2srec.c | 73 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()
|
| /OK3568_Linux_fs/kernel/drivers/acpi/acpica/ |
| H A D | exoparg1.c | 230 u64 digit; in acpi_ex_opcode_1A_1T_1R() local 303 digit = operand[0]->integer.value; in acpi_ex_opcode_1A_1T_1R() 308 (i < acpi_gbl_integer_nybble_width) && (digit > 0); in acpi_ex_opcode_1A_1T_1R() 313 temp32 = ((u32) digit) & 0xF; in acpi_ex_opcode_1A_1T_1R() 333 digit >>= 4; in acpi_ex_opcode_1A_1T_1R() 344 digit = operand[0]->integer.value; in acpi_ex_opcode_1A_1T_1R() 349 (i < acpi_gbl_integer_nybble_width) && (digit > 0); in acpi_ex_opcode_1A_1T_1R() 351 (void)acpi_ut_short_divide(digit, 10, &digit, in acpi_ex_opcode_1A_1T_1R() 364 if (digit > 0) { in acpi_ex_opcode_1A_1T_1R()
|
| H A D | utstrsuppt.c | 21 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 D | exconvrt.c | 262 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()
|
| /OK3568_Linux_fs/kernel/Documentation/userspace-api/media/rc/ |
| H A D | rc-tables.rst | 52 - 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 …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/ |
| H A D | regex_scanner.tcc | 275 if (_M_ctype.is(_CtypeT::digit, __c)) in _M_scan_in_brace() 280 && _M_ctype.is(_CtypeT::digit, *_M_current)) in _M_scan_in_brace() 370 else if (_M_ctype.is(_CtypeT::digit, __c)) in _M_eat_escape_ecma() 374 && _M_ctype.is(_CtypeT::digit, *_M_current)) in _M_eat_escape_ecma() 410 else if (_M_is_basic() && _M_ctype.is(_CtypeT::digit, __c) && __c != '0') in _M_eat_escape_posix() 443 else if (_M_ctype.is(_CtypeT::digit, __c) in _M_eat_escape_awk() 451 && _M_ctype.is(_CtypeT::digit, *_M_current) in _M_eat_escape_awk()
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/ |
| H A D | regex_scanner.tcc | 275 if (_M_ctype.is(_CtypeT::digit, __c)) in _M_scan_in_brace() 280 && _M_ctype.is(_CtypeT::digit, *_M_current)) in _M_scan_in_brace() 370 else if (_M_ctype.is(_CtypeT::digit, __c)) in _M_eat_escape_ecma() 374 && _M_ctype.is(_CtypeT::digit, *_M_current)) in _M_eat_escape_ecma() 410 else if (_M_is_basic() && _M_ctype.is(_CtypeT::digit, __c) && __c != '0') in _M_eat_escape_posix() 443 else if (_M_ctype.is(_CtypeT::digit, __c) in _M_eat_escape_awk() 451 && _M_ctype.is(_CtypeT::digit, *_M_current) in _M_eat_escape_awk()
|
| /OK3568_Linux_fs/kernel/samples/pktgen/ |
| H A D | functions.sh | 233 for digit in "${addr[@]}"; do 234 [[ $IP6 ]] && digit=$[ 16#$digit ] 235 if ! (in_between $digit 0 $max); then 283 digit=$[ IP6 ? 16#${ip[$i]} : ${ip[$i]} ] 284 ip_bit=${D2B[$digit]}
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/size/ |
| H A D | get_size.c | 47 unsigned int digit; in num_to_str() local 53 digit = num % 10; in num_to_str() 54 *(--buf) = digit + '0'; in num_to_str()
|
| /OK3568_Linux_fs/kernel/lib/ |
| H A D | string_helpers.c | 183 int digit; in unescape_hex() local 189 num = digit = hex_to_bin(*q++); in unescape_hex() 190 if (digit < 0) in unescape_hex() 193 digit = hex_to_bin(*q); in unescape_hex() 194 if (digit >= 0) { in unescape_hex() 196 num = (num << 4) | digit; in unescape_hex()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/ |
| H A D | language_tag.cpp | 113 using ascii::digit; in bcp47_parser() 138 region = (repeat(2)[alpha] | repeat(3)[digit]) >> (&lit('-') | eoi); in bcp47_parser() 140 variant = (repeat(5,8)[alnum] | (digit >> repeat(3,inf)[alnum])) >> (&lit('-') | eoi); in bcp47_parser() 144 singleton = digit | char_('a','w') | char_('y','z'); // "no-case" handles A-W and Y-Z in bcp47_parser()
|
| /OK3568_Linux_fs/kernel/Documentation/input/devices/ |
| H A D | yealink.rst | 69 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,
|
| /OK3568_Linux_fs/kernel/arch/x86/boot/compressed/ |
| H A D | misc.c | 164 unsigned long digit = (value >> bits) & 0xf; in __puthex() local 166 if (digit < 0xA) in __puthex() 167 alpha[0] = '0' + digit; in __puthex() 169 alpha[0] = 'a' + (digit - 0xA); in __puthex()
|
| /OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/ |
| H A D | NTP | 4 Copyright (c) (CopyrightHoldersName) (From 4-digit-year)-(To 4-digit-year)
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-extended/unzip/unzip/ |
| H A D | 19-cve-2016-9844-zipinfo-buffer-overflow.patch | 21 + * &methbuf[]. Use the old, three-digit decimal format 23 + * and use four-digit hexadecimal.
|
| H A D | 18-cve-2014-9913-unzip-buffer-overflow.patch | 22 + * &methbuf[]. Use the old, three-digit decimal format 24 + * colon, and use four-digit hexadecimal.
|