Home
last modified time | relevance | path

Searched full:digit (Results 1 – 25 of 32) sorted by relevance

12

/Zephyr-Core-3.5.0/lib/os/
Ddec.c13 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()
Dcbprintf_complete.c313 * 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/
Dmacros.bnf33 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/
Dmaxim,max7219.yaml26 Display digit 0 only when scan-limit is 0, digits 0 & 1 when
/Zephyr-Core-3.5.0/tests/posix/common/src/
Dfnmatch.c78 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/
Dstrtol.c84 * 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()
Dstrtoll.c83 * 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/
DREADME.rst27 leftmost digit, then the center sensor, then the right sensor.
/Zephyr-Core-3.5.0/soc/arm/microchip_mec/common/spigen/
Dmec_spi_gen.py34 # 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/
Dlwm2m_util.c548 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/
Drtc_pcf8563.c89 * 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/
Dmain.c72 /* Convert 4-digit int to string */ in test_thread()
/Zephyr-Core-3.5.0/include/zephyr/net/http/
Dclient.h176 * 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/
Dcounter_cmos.c101 /* Convert 8-bit (2-digit) BCD to binary equivalent. */
/Zephyr-Core-3.5.0/scripts/
Dtags.sh72 --regex-c='/^SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/sys_\1/' \
73 --regex-c='/^COMPAT_SYSCALL_DEFINE[[:digit:]]?\(([^,)]*).*/compat_sys_\1/' \
/Zephyr-Core-3.5.0/drivers/display/
Ddisplay_max7219.c13 * This driver map the segment as x, digit as y.
/Zephyr-Core-3.5.0/drivers/flash/
Dflash_cadence_qspi_nor_ll.c653 * 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/
Dpwm_mchp_xec.c43 * To mitigate frequency comparision up to the first digit after 0.
/Zephyr-Core-3.5.0/scripts/pylib/twister/twisterlib/
Dsize_calc.py237 continue # with a digit
/Zephyr-Core-3.5.0/tests/crypto/tinycrypt/src/
Decc_dh.c314 /* invalid input to ECC digit conversion (string2native()) */ in pkv_vectors()
/Zephyr-Core-3.5.0/subsys/net/lib/http/
Dhttp_parser.c945 /* 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/
Duart_mcux_flexcomm.c882 #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/
Ddns_sd.c97 * <let-dig> ::= <letter> | <digit>
99 * <digit> ::= [0-9]
/Zephyr-Core-3.5.0/include/zephyr/fs/
Dfs.h530 * or mount points that consist of single digit, e.g: "/0:", "/1:" and so forth.
/Zephyr-Core-3.5.0/drivers/modem/
Dwncm14a2a.c513 /* 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()

12