/Zephyr-Core-3.5.0/lib/os/ |
D | dec.c | 13 uint8_t digit; in u8_to_dec() local 16 digit = value / divisor; in u8_to_dec() 17 if ((digit != 0) || (divisor == 1) || (num_digits != 0)) { in u8_to_dec() 18 *buf = digit + (char)'0'; in u8_to_dec() 24 value -= digit * divisor; in u8_to_dec()
|
D | cbprintf_complete.c | 313 * unconsumed character. There must be at least one non-digit character in 1081 * 0 and -2 as the magnitude of a fractional decimal digit is 3 bits. in encode_float() 1161 /* Round the value to the last digit being printed. */ in encode_float() 1205 /* Emit the one digit before the decimal. If it's not zero, in encode_float() 1263 * store EOS as a non-digit/non-decimal value so we don't have to in encode_float()
|
/Zephyr-Core-3.5.0/doc/build/dts/ |
D | macros.bnf | 33 node-macro =/ %s"DT_N" path-id %s"_REG_IDX_" DIGIT "_EXISTS" 34 node-macro =/ %s"DT_N" path-id %s"_REG_IDX_" DIGIT 40 node-macro =/ %s"DT_N" path-id %s"_IRQ_IDX_" DIGIT "_EXISTS" 41 node-macro =/ %s"DT_N" path-id %s"_IRQ_IDX_" DIGIT 47 node-macro =/ %s"DT_N" path-id %s"_RANGES_IDX_" DIGIT "_EXISTS" 48 node-macro =/ %s"DT_N" path-id %s"_RANGES_IDX_" DIGIT 51 node-macro =/ %s"DT_N" path-id %s"_RANGES_IDX_" DIGIT 56 node-macro =/ %s"DT_N" path-id %s"_PARTITION_ID" DIGIT 60 node-macro =/ %s"DT_N" path-id %s"_COMPAT_VENDOR_IDX_" DIGIT "_EXISTS" 61 node-macro =/ %s"DT_N" path-id %s"_COMPAT_VENDOR_IDX_" DIGIT [all …]
|
/Zephyr-Core-3.5.0/dts/bindings/display/ |
D | maxim,max7219.yaml | 26 Display digit 0 only when scan-limit is 0, digits 0 & 1 when
|
/Zephyr-Core-3.5.0/tests/posix/common/src/ |
D | fnmatch.c | 78 zassert_not_equal(fnmatch("*[![:digit:]]*/[![:d-d]", "a/b", FNM_PATHNAME), 0); in ZTEST() 79 zassert_not_equal(fnmatch("*[![:digit:]]*/[[:d-d]", "a/[", FNM_PATHNAME), 0); in ZTEST() 80 zassert_not_equal(fnmatch("*[![:digit:]]*/[![:d-d]", "a/[", FNM_PATHNAME), 0); in ZTEST()
|
/Zephyr-Core-3.5.0/lib/libc/minimal/source/stdlib/ |
D | strtol.c | 84 * digit. For instance, if the range for longs is in strtol() 88 * a value > 214748364, or equal but the next digit is > 7 (or 8), in strtol()
|
D | strtoll.c | 83 * digit. For instance, if the range for longs is in strtoll() 87 * a value > 214748364, or equal but the next digit is > 7 (or 8), in strtoll()
|
/Zephyr-Core-3.5.0/samples/shields/x_nucleo_53l0a1/ |
D | README.rst | 27 leftmost digit, then the center sensor, then the right sensor.
|
/Zephyr-Core-3.5.0/soc/arm/microchip_mec/common/spigen/ |
D | mec_spi_gen.py | 34 # 1st digit - number of I/O pins used to transmit the opcode 35 # 2nd digit - number of I/O pins used to transmit the SPI address 36 # 3rd digit - number of pins used to read data from flash 37 # 4th digit (if present) - dummy clocks between address and data phase
|
/Zephyr-Core-3.5.0/subsys/net/lib/lwm2m/ |
D | lwm2m_util.c | 548 static uint8_t to_hex_digit(uint8_t digit) in to_hex_digit() argument 550 if (digit >= 10U) { in to_hex_digit() 551 return digit - 10U + 'a'; in to_hex_digit() 554 return digit + '0'; in to_hex_digit()
|
/Zephyr-Core-3.5.0/drivers/rtc/ |
D | rtc_pcf8563.c | 89 * The the upper digit takes the next 3 bits for the tens place and then the rest 91 * So for example, value 43 is 40 * 10 + 3, so the tens digit is 4 and unit digit is 3.
|
/Zephyr-Core-3.5.0/samples/arch/smp/pi/src/ |
D | main.c | 72 /* Convert 4-digit int to string */ in test_thread()
|
/Zephyr-Core-3.5.0/include/zephyr/net/http/ |
D | client.h | 176 * The status-code element is a 3-digit integer code 189 * given. Otherwise, will be a 3-digit integer code if
|
/Zephyr-Core-3.5.0/drivers/counter/ |
D | counter_cmos.c | 101 /* Convert 8-bit (2-digit) BCD to binary equivalent. */
|
/Zephyr-Core-3.5.0/scripts/ |
D | tags.sh | 72 --regex-c='/^SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/sys_\1/' \ 73 --regex-c='/^COMPAT_SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/compat_sys_\1/' \
|
/Zephyr-Core-3.5.0/drivers/display/ |
D | display_max7219.c | 13 * This driver map the segment as x, digit as y.
|
/Zephyr-Core-3.5.0/drivers/flash/ |
D | flash_cadence_qspi_nor_ll.c | 653 * The first nibble is the 10's digit and the second nibble is the 1's in cad_qspi_init() 654 * digit in the number of bytes. in cad_qspi_init()
|
/Zephyr-Core-3.5.0/drivers/pwm/ |
D | pwm_mchp_xec.c | 43 * To mitigate frequency comparision up to the first digit after 0.
|
/Zephyr-Core-3.5.0/scripts/pylib/twister/twisterlib/ |
D | size_calc.py | 237 continue # with a digit
|
/Zephyr-Core-3.5.0/tests/crypto/tinycrypt/src/ |
D | ecc_dh.c | 314 /* invalid input to ECC digit conversion (string2native()) */ in pkv_vectors()
|
/Zephyr-Core-3.5.0/subsys/net/lib/http/ |
D | http_parser.c | 945 /* first digit of minor HTTP version */ in parser_execute() 1404 /* first digit of major HTTP version */ in parser_execute() 1438 /* first digit of minor HTTP version */ in parser_execute() 1461 /* XXX allow spaces after digit? */ in parser_execute()
|
/Zephyr-Core-3.5.0/drivers/serial/ |
D | uart_mcux_flexcomm.c | 882 #endif /* RT 3-digit */ 906 /* RT 3 digit uses input mux to route DMA requests from in flexcomm_uart_async_init()
|
/Zephyr-Core-3.5.0/subsys/net/lib/dns/ |
D | dns_sd.c | 97 * <let-dig> ::= <letter> | <digit> 99 * <digit> ::= [0-9]
|
/Zephyr-Core-3.5.0/include/zephyr/fs/ |
D | fs.h | 530 * or mount points that consist of single digit, e.g: "/0:", "/1:" and so forth.
|
/Zephyr-Core-3.5.0/drivers/modem/ |
D | wncm14a2a.c | 513 /* make sure only a single digit is picked up for socket_id */ in on_cmd_atcmdecho() 702 /* make sure only a single digit is picked up for socket_id */ in on_cmd_sockcreat()
|