/Zephyr-latest/tests/posix/c_lib_ext/src/ |
D | fnmatch.c | 35 zassert_ok(fnmatch("[!]a-]", "b", 0)); in ZTEST() 40 /* zassert_ok(fnmatch("a[/]b", "a/b", 0)); */ in ZTEST() 41 zassert_equal(fnmatch("a[/]b", "a/b", FNM_PATHNAME), FNM_NOMATCH); in ZTEST() 42 zassert_ok(fnmatch("[a-z]/[a-z]", "a/b", 0)); in ZTEST() 43 zassert_equal(fnmatch("*", "a/b", FNM_PATHNAME), FNM_NOMATCH); in ZTEST() 44 zassert_equal(fnmatch("*[/]b", "a/b", FNM_PATHNAME), FNM_NOMATCH); in ZTEST() 45 zassert_equal(fnmatch("*[b]", "a/b", FNM_PATHNAME), FNM_NOMATCH); in ZTEST() 46 zassert_equal(fnmatch("[*]/b", "a/b", 0), FNM_NOMATCH); in ZTEST() 47 zassert_ok(fnmatch("[*]/b", "*/b", 0)); in ZTEST() 48 zassert_equal(fnmatch("[?]/b", "a/b", 0), FNM_NOMATCH); in ZTEST() [all …]
|
/Zephyr-latest/samples/sensor/stream_fifo/ |
D | README.rst | 80 XL data for lsm6dsv16x@6b 1680572433340ns (0.373229, -0.009569, 9.909734) 81 XL data for lsm6dsv16x@6b 1680639100006ns (0.354089, -0.023924, 9.909734) 82 XL data for lsm6dsv16x@6b 1680705766672ns (0.368444, 0.000000, 9.933659) 83 XL data for lsm6dsv16x@6b 1680772433338ns (0.373229, 0.000000, 9.924089) 84 XL data for lsm6dsv16x@6b 1680839100004ns (0.368444, -0.004784, 9.924089) 85 XL data for lsm6dsv16x@6b 1680905766670ns (0.363659, -0.009569, 9.924089) 86 XL data for lsm6dsv16x@6b 1680972433336ns (0.358874, -0.004784, 9.928874) 87 XL data for lsm6dsv16x@6b 1681039100002ns (0.363659, 0.004784, 9.928874) 88 GY data for lsm6dsv16x@6b 1680572433340ns (0.001524, -0.000609, 0.004269) 89 GY data for lsm6dsv16x@6b 1680639100006ns (-0.001219, 0.002134, 0.004879) [all …]
|
/Zephyr-latest/soc/microchip/mec/mec172x/ |
D | soc.h | 94 I2C_SMB_0_IRQn = 20, /*!< GIRQ13 b[0] */ 95 I2C_SMB_1_IRQn = 21, /*!< GIRQ13 b[1] */ 96 I2C_SMB_2_IRQn = 22, /*!< GIRQ13 b[2] */ 97 I2C_SMB_3_IRQn = 23, /*!< GIRQ13 b[3] */ 98 DMA0_IRQn = 24, /*!< GIRQ14 b[0] */ 99 DMA1_IRQn = 25, /*!< GIRQ14 b[1] */ 100 DMA2_IRQn = 26, /*!< GIRQ14 b[2] */ 101 DMA3_IRQn = 27, /*!< GIRQ14 b[3] */ 102 DMA4_IRQn = 28, /*!< GIRQ14 b[4] */ 103 DMA5_IRQn = 29, /*!< GIRQ14 b[5] */ [all …]
|
/Zephyr-latest/tests/kernel/timer/timepoints/src/ |
D | main.c | 40 k_timepoint_t a, b; in ZTEST() local 43 b = a; in ZTEST() 44 zassert_true(sys_timepoint_cmp(a, b) == 0); in ZTEST() 45 zassert_true(sys_timepoint_cmp(b, a) == 0); in ZTEST() 48 b = a; in ZTEST() 49 zassert_true(sys_timepoint_cmp(a, b) == 0); in ZTEST() 50 zassert_true(sys_timepoint_cmp(b, a) == 0); in ZTEST() 53 b = sys_timepoint_calc(K_MSEC(1)); in ZTEST() 54 zassert_true(sys_timepoint_cmp(a, b) < 0); in ZTEST() 55 zassert_true(sys_timepoint_cmp(b, a) > 0); in ZTEST() [all …]
|
/Zephyr-latest/subsys/ipc/ipc_service/backends/ |
D | ipc_rpmsg_static_vrings.h | 17 * [B] backend 22 * [B] register_ept ** 23 * [B] register_ept ** 24 * [B] ipc_rpmsg_register_ept 25 * [B] rpmsg_create_ept 29 * [B] mbox_send 30 * [B] mbox_callback 31 * [B] mbox_callback_process 32 * [B] virtqueue_notification 34 * [B] ns_bind_cb [all …]
|
/Zephyr-latest/include/zephyr/sys/ |
D | math_extras_impl.h | 32 static inline bool u16_add_overflow(uint16_t a, uint16_t b, uint16_t *result) in u16_add_overflow() argument 34 return __builtin_add_overflow(a, b, result); in u16_add_overflow() 37 static inline bool u32_add_overflow(uint32_t a, uint32_t b, uint32_t *result) in u32_add_overflow() argument 39 return __builtin_add_overflow(a, b, result); in u32_add_overflow() 42 static inline bool u64_add_overflow(uint64_t a, uint64_t b, uint64_t *result) in u64_add_overflow() argument 44 return __builtin_add_overflow(a, b, result); in u64_add_overflow() 47 static inline bool size_add_overflow(size_t a, size_t b, size_t *result) in size_add_overflow() argument 49 return __builtin_add_overflow(a, b, result); in size_add_overflow() 52 static inline bool u16_add_overflow(uint16_t a, uint16_t b, uint16_t *result) in u16_add_overflow() argument 54 uint16_t c = a + b; in u16_add_overflow() [all …]
|
D | math_extras.h | 29 * These functions compute `a + b` and store the result in `*result`, returning 37 * @param b Second operand. 41 static bool u16_add_overflow(uint16_t a, uint16_t b, uint16_t *result); 46 * @param b Second operand. 51 static bool u32_add_overflow(uint32_t a, uint32_t b, uint32_t *result); 56 * @param b Second operand. 60 static bool u64_add_overflow(uint64_t a, uint64_t b, uint64_t *result); 65 * @param b Second operand. 69 static bool size_add_overflow(size_t a, size_t b, size_t *result); 76 * These functions compute `a * b` and store the result in `*result`, returning [all …]
|
/Zephyr-latest/tests/bluetooth/addr/src/ |
D | test_bt_addr_le_eq.c | 13 bt_addr_le_t b = a; in ZTEST() local 15 zassert_true(bt_addr_le_eq(&a, &b)); in ZTEST() 21 bt_addr_le_t b = a; in ZTEST() local 23 zassert_true(bt_addr_le_eq(&a, &b)); in ZTEST() 29 bt_addr_le_t b = a; in ZTEST() local 31 zassume_true(bt_addr_le_eq(&a, &b)); in ZTEST() 33 zassert_false(bt_addr_le_eq(&a, &b)); in ZTEST() 39 bt_addr_le_t b = a; in ZTEST() local 41 zassume_true(bt_addr_le_eq(&a, &b)); in ZTEST() 43 zassert_false(bt_addr_le_eq(&a, &b)); in ZTEST() [all …]
|
/Zephyr-latest/scripts/coredump/gdbstubs/ |
D | gdbstub.py | 41 data = b'' 46 if ch == b'$': 52 if ch == b'#': 68 socket.send(b'+') 74 socket.send(b'-') 87 pkt = b'$' + data + b'#' 107 barray = b'' 128 pkt = b'S' 142 self.put_gdb_packet(b"E01") 146 self.put_gdb_packet(b"E01") [all …]
|
/Zephyr-latest/subsys/bluetooth/host/ |
D | aes_ccm.c | 20 static inline void xor16(uint8_t *dst, const uint8_t *a, const uint8_t *b) in xor16() argument 22 dst[0] = a[0] ^ b[0]; in xor16() 23 dst[1] = a[1] ^ b[1]; in xor16() 24 dst[2] = a[2] ^ b[2]; in xor16() 25 dst[3] = a[3] ^ b[3]; in xor16() 26 dst[4] = a[4] ^ b[4]; in xor16() 27 dst[5] = a[5] ^ b[5]; in xor16() 28 dst[6] = a[6] ^ b[6]; in xor16() 29 dst[7] = a[7] ^ b[7]; in xor16() 30 dst[8] = a[8] ^ b[8]; in xor16() [all …]
|
/Zephyr-latest/samples/subsys/zbus/uart_bridge/ |
D | README.rst | 81 PUB [sensor_data] -> b'\xc5\x01\x00\x00\xb2\x11\x00\x00' 82 PUB [start_measurement] -> b'\x00' 83 PUB [sensor_data] -> b'\xc6\x01\x00\x00\xbc\x11\x00\x00' 84 PUB [start_measurement] -> b'\x01' 85 PUB [sensor_data] -> b'\xc7\x01\x00\x00\xc6\x11\x00\x00' 86 PUB [start_measurement] -> b'\x00' 87 PUB [sensor_data] -> b'\xc8\x01\x00\x00\xd0\x11\x00\x00' 88 PUB [start_measurement] -> b'\x01' 89 PUB [sensor_data] -> b'\xc9\x01\x00\x00\xda\x11\x00\x00' 90 PUB [start_measurement] -> b'\x00' [all …]
|
/Zephyr-latest/subsys/net/lib/ptp/ |
D | btca.c | 32 static int btca_ds_cmp2(const struct ptp_dataset *a, const struct ptp_dataset *b) in btca_ds_cmp2() argument 36 if (b->steps_rm + 1 < a->steps_rm) { in btca_ds_cmp2() 39 if (a->steps_rm + 1 < b->steps_rm) { in btca_ds_cmp2() 42 if (a->steps_rm > b->steps_rm) { in btca_ds_cmp2() 53 if (a->steps_rm < b->steps_rm) { in btca_ds_cmp2() 54 diff = btca_port_id_cmp(&b->receiver, &b->sender); in btca_ds_cmp2() 65 diff = btca_port_id_cmp(&a->sender, &b->sender); in btca_ds_cmp2() 73 if (a->receiver.port_number > b->receiver.port_number) { in btca_ds_cmp2() 76 if (a->receiver.port_number > b->receiver.port_number) { in btca_ds_cmp2() 83 int ptp_btca_ds_cmp(const struct ptp_dataset *a, const struct ptp_dataset *b) in ptp_btca_ds_cmp() argument [all …]
|
/Zephyr-latest/tests/lib/cmsis_dsp/common/ |
D | test_common.h | 75 size_t length, const float64_t *a, const float64_t *b) in test_equal_f64() argument 80 if (a[index] != b[index]) { in test_equal_f64() 89 size_t length, const float32_t *a, const float32_t *b) in test_equal_f32() argument 94 if (a[index] != b[index]) { in test_equal_f32() 104 size_t length, const float16_t *a, const float16_t *b) in test_equal_f16() argument 109 if (a[index] != b[index]) { in test_equal_f16() 119 size_t length, const q63_t *a, const q63_t *b) in test_equal_q63() argument 124 if (a[index] != b[index]) { in test_equal_q63() 133 size_t length, const q31_t *a, const q31_t *b) in test_equal_q31() argument 138 if (a[index] != b[index]) { in test_equal_q31() [all …]
|
/Zephyr-latest/arch/arm64/core/ |
D | early_mem_funcs.S | 27 b.ne 2f 31 b.lo 2f 42 b.hi 1b 50 b.ne 3b 61 b.ne 2f 65 b.lo 2f 72 b.hi 1b 81 b.ne 3b
|
/Zephyr-latest/arch/x86/core/ia32/ |
D | soft_float_stubs.c | 22 __weak void __addtf3(long double a, long double b) in __addtf3() argument 27 __weak void __addxf3(long double a, long double b) in __addxf3() argument 32 __weak void __subtf3(long double a, long double b) in __subtf3() argument 37 __weak void __subxf3(long double a, long double b) in __subxf3() argument 42 __weak void __multf3(long double a, long double b) in __multf3() argument 47 __weak void __mulxf3(long double a, long double b) in __mulxf3() argument 52 __weak void __divtf3(long double a, long double b) in __divtf3() argument 57 __weak void __divxf3(long double a, long double b) in __divxf3() argument 232 __weak void __cmptf2(long double a, long double b) in __cmptf2() argument 237 __weak void __unordtf2(long double a, long double b) in __unordtf2() argument [all …]
|
/Zephyr-latest/samples/subsys/nvs/ |
D | sample.yaml | 19 - "Id: 5, Longarray: 0 1 2 3 4 5 6 7 8 9 a b c d e f 10 11 12 13 14 15 16 17 18 19 1a 1b \ 20 1c 1d 1e 1f 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f 30 31 32 33 34 35 36 37 38 \ 21 39 3a 3b 3c 3d 3e 3f 40 41 42 43 44 45 46 47 48 49 4a 4b 4c 4d 4e 4f 50 51 52 53 54 55 \ 22 56 57 58 59 5a 5b 5c 5d 5e 5f 60 61 62 63 64 65 66 67 68 69 6a 6b 6c 6d 6e 6f 70 71 72 \ 23 73 74 75 76 77 78 79 7a 7b 7c 7d 7e 7f"
|
/Zephyr-latest/tests/lib/cobs/src/ |
D | main.c | 112 U8({'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 113 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'a', 'b', 115 's', 't', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 117 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 118 'q', 'r', 's', 't', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 120 'S', 'T', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 122 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 123 'Q', 'R', 'S', 'T', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 125 '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 126 'O', 'P', 'Q', 'R', 'S', 'T', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', [all …]
|
/Zephyr-latest/cmake/sca/eclair/ECL/ |
D | analysis.ecl | 4 -enable=B.REPORT.ECB 5 -config=B.REPORT.ECB,output=join_paths(data_dir,"FRAME.@FRAME@.ecb") 6 -config=B.REPORT.ECB,preprocessed=show 7 -config=B.REPORT.ECB,macros=10 9 -enable=B.EXPLAIN
|
/Zephyr-latest/samples/subsys/zbus/dyn_channel/ |
D | sample.yaml | 48 - "W: 0b 0b 0b 0b 0b 0b 0b 0b |........" 49 - "W: 0b 0b 0b 0b |...."
|
D | README.rst | 66 W: 0b 0b 0b 0b 0b 0b 0b 0b |........ 67 W: 0b 0b 0b 0b |....
|
/Zephyr-latest/drivers/spi/ |
D | Kconfig.renesas_ra8 | 7 bool "Renesas RA SPI B" 13 Enable Renesas RA RA SPI B Driver. 18 bool "RA MCU SPI B Interrupt Support" 20 Enable Interrupt support for the SPI B Driver of RA family. 30 bool "RA MCU SPI B Hardware Slave Select support"
|
/Zephyr-latest/include/zephyr/drivers/sensor/ |
D | mcux_lpcmp.h | 51 * 0b: disable 52 * 1b: enable 57 * 0b: disable 58 * 1b: enable 79 * 00b: latched 80 * 01b: set to low 81 * 11b: set to high 87 * 001b: COUT rising edge event close an active window 88 * 011b: COUT falling edge event close an active window
|
/Zephyr-latest/boards/openisa/rv32m1_vega/ |
D | rv32m1_vega_openisa_rv32m1-pinctrl.dtsi | 43 pinmux = <RV32M1_MUX('B', 4, 2)>, 44 <RV32M1_MUX('B', 5, 2)>, 45 <RV32M1_MUX('B', 6, 2)>, 46 <RV32M1_MUX('B', 7, 2)>; 53 pinmux = <RV32M1_MUX('B', 20, 2)>, 54 <RV32M1_MUX('B', 21, 2)>, 55 <RV32M1_MUX('B', 22, 2)>, 56 <RV32M1_MUX('B', 24, 2)>;
|
/Zephyr-latest/tests/lib/cmsis_dsp/filtering/src/ |
D | misc_q15.c | 46 #define DEFINE_CORRELATE_TEST(a, b) \ argument 48 arm_correlate_q15, a##_##b, a, b, \ 49 ref_correlate_##a##_##b, ARRAY_SIZE(ref_correlate_##a##_##b)) 103 #define DEFINE_CONV_TEST(a, b) \ argument 105 arm_conv_q15, a##_##b, a, b, \ 106 ref_conv_##a##_##b, ARRAY_SIZE(ref_conv_##a##_##b)) 324 #define DEFINE_CONV_PARTIAL_TEST(a, b, c) \ argument 326 arm_conv_partial_q15, a##_##b##_##c, a, b, c, \ 327 ref_conv_partial_##a##_##b##_##c, \ 328 ARRAY_SIZE(ref_conv_partial_##a##_##b##_##c)) \ [all …]
|
/Zephyr-latest/subsys/testsuite/ztest/include/zephyr/ |
D | ztest_assert.h | 313 * @brief Assert that @a a equals @a b 315 * @a a and @a b won't be converted and will be compared directly. 318 * @param b Value to compare 321 #define zassert_equal(a, b, ...) zassert((a) == (b), #a " not equal to " #b, ##__VA_ARGS__) argument 324 * @brief Assert that @a a does not equal @a b 326 * @a a and @a b won't be converted and will be compared directly. 329 * @param b Value to compare 332 #define zassert_not_equal(a, b, ...) zassert((a) != (b), #a " equal to " #b, ##__VA_ARGS__) argument 335 * @brief Assert that @a a equals @a b 337 * @a a and @a b will be converted to `void *` before comparing. [all …]
|