/Zephyr-latest/include/zephyr/dsp/ |
D | utils.h | 46 #define Z_SHIFT_Q7_TO_F32(src, m) ((float32_t)(((src << m)) / (float32_t)(1U << 7))) argument 55 #define Z_SHIFT_Q15_TO_F32(src, m) ((float32_t)((src << m) / (float32_t)(1U << 15))) argument 64 #define Z_SHIFT_Q31_TO_F32(src, m) ((float32_t)(((int64_t)src) << m) / (float32_t)(1U << 31)) argument 73 #define Z_SHIFT_Q7_TO_F64(src, m) (((float64_t)(src << m)) / (1U << 7)) argument 82 #define Z_SHIFT_Q15_TO_F64(src, m) (((float64_t)(src << m)) / (1UL << 15)) argument 91 #define Z_SHIFT_Q31_TO_F64(src, m) ((float64_t)(((int64_t)src) << m) / (1ULL << 31)) argument 114 #define Z_SHIFT_F32_TO_Q7(src, m) \ argument 124 #define Z_SHIFT_F32_TO_Q15(src, m) \ argument 134 #define Z_SHIFT_F32_TO_Q31(src, m) \ argument 144 #define Z_SHIFT_F64_TO_Q7(src, m) \ argument [all …]
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/ |
D | ticker.c | 62 static struct mayfly m = {0, 0, &link, NULL, in hal_ticker_instance0_sched() local 86 static struct mayfly m = {0, 0, &link, NULL, in hal_ticker_instance0_sched() local 109 static struct mayfly m = {0, 0, &link, NULL, in hal_ticker_instance0_sched() local 132 static struct mayfly m = {0, 0, &link, NULL, in hal_ticker_instance0_sched() local 147 static struct mayfly m = {0, 0, &link, NULL, in hal_ticker_instance0_sched() local 170 static struct mayfly m = {0, 0, &link, NULL, in hal_ticker_instance0_sched() local
|
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/openisa/hal/RV32M1/ |
D | ticker.c | 63 static struct mayfly m = {0, 0, &link, NULL, in hal_ticker_instance0_sched() local 88 static struct mayfly m = {0, 0, &link, NULL, in hal_ticker_instance0_sched() local 111 static struct mayfly m = {0, 0, &link, NULL, in hal_ticker_instance0_sched() local 134 static struct mayfly m = {0, 0, &link, NULL, in hal_ticker_instance0_sched() local 149 static struct mayfly m = {0, 0, &link, NULL, in hal_ticker_instance0_sched() local 172 static struct mayfly m = {0, 0, &link, NULL, in hal_ticker_instance0_sched() local
|
/Zephyr-latest/arch/xtensa/core/ |
D | gen_vectors.py | 67 m = re.match(r"^#define\s+XCHAL_([^ ]+)_VECOFS\s*(.*)", line.rstrip()) variable 82 m = re.match(r"XCHAL_INTLEVEL(\d+)_VECOFS", val) variable 94 m = re.match(r"^INTLEVEL(\d+)", sym) variable
|
D | gen_zsr.py | 48 m = re.match(r"^#define\s+([^ ]+)\s*(.*)", line.rstrip()) variable 76 m = re.match(r"XCHAL_INT(\d+)_TYPE", sym) variable
|
/Zephyr-latest/tests/crypto/tinycrypt/src/ |
D | sha256.c | 66 const char *m = "abc"; in ZTEST() local 95 const char *m = in ZTEST() local 123 const uint8_t m[1] = { 0xbd }; in ZTEST() local 151 const uint8_t m[4] = { 0xc9, 0x8c, 0x8e, 0x55 }; in ZTEST() local 179 uint8_t m[55]; in ZTEST() local 209 uint8_t m[56]; in ZTEST() local 239 uint8_t m[57]; in ZTEST() local 269 uint8_t m[64]; in ZTEST() local 299 uint8_t m[1000]; in ZTEST() local 329 uint8_t m[1000]; in ZTEST() local [all …]
|
/Zephyr-latest/lib/posix/options/ |
D | mutex.c | 44 static inline size_t posix_mutex_to_offset(struct k_mutex *m) in posix_mutex_to_offset() 84 struct k_mutex *m; in to_posix_mutex() local 114 struct k_mutex *m = NULL; in acquire_mutex() local 199 int pthread_mutex_trylock(pthread_mutex_t *m) in pthread_mutex_trylock() 210 int pthread_mutex_timedlock(pthread_mutex_t *m, in pthread_mutex_timedlock() 225 struct k_mutex *m; in pthread_mutex_init() local 253 int pthread_mutex_lock(pthread_mutex_t *m) in pthread_mutex_lock() 266 struct k_mutex *m; in pthread_mutex_unlock() local 294 struct k_mutex *m; in pthread_mutex_destroy() local
|
/Zephyr-latest/include/zephyr/posix/sys/ |
D | stat.h | 183 #define S_ISBLK(m) (((m)&_IFMT) == _IFBLK) argument 184 #define S_ISCHR(m) (((m)&_IFMT) == _IFCHR) argument 185 #define S_ISDIR(m) (((m)&_IFMT) == _IFDIR) argument 186 #define S_ISFIFO(m) (((m)&_IFMT) == _IFIFO) argument 187 #define S_ISREG(m) (((m)&_IFMT) == _IFREG) argument 188 #define S_ISLNK(m) (((m)&_IFMT) == _IFLNK) argument 189 #define S_ISSOCK(m) (((m)&_IFMT) == _IFSOCK) argument
|
/Zephyr-latest/include/zephyr/sys/ |
D | util_internal.h | 145 #define MACRO_MC_1(m, a, ...) m(a) argument 146 #define MACRO_MC_2(m, a, ...) UTIL_CAT(m(a), MACRO_MC_1(m, __VA_ARGS__,)) argument 147 #define MACRO_MC_3(m, a, ...) UTIL_CAT(m(a), MACRO_MC_2(m, __VA_ARGS__,)) argument 148 #define MACRO_MC_4(m, a, ...) UTIL_CAT(m(a), MACRO_MC_3(m, __VA_ARGS__,)) argument 149 #define MACRO_MC_5(m, a, ...) UTIL_CAT(m(a), MACRO_MC_4(m, __VA_ARGS__,)) argument 150 #define MACRO_MC_6(m, a, ...) UTIL_CAT(m(a), MACRO_MC_5(m, __VA_ARGS__,)) argument 151 #define MACRO_MC_7(m, a, ...) UTIL_CAT(m(a), MACRO_MC_6(m, __VA_ARGS__,)) argument 152 #define MACRO_MC_8(m, a, ...) UTIL_CAT(m(a), MACRO_MC_7(m, __VA_ARGS__,)) argument 153 #define MACRO_MC_9(m, a, ...) UTIL_CAT(m(a), MACRO_MC_8(m, __VA_ARGS__,)) argument 154 #define MACRO_MC_10(m, a, ...) UTIL_CAT(m(a), MACRO_MC_9(m, __VA_ARGS__,)) argument [all …]
|
/Zephyr-latest/samples/kernel/metairq_dispatch/src/ |
D | msgdev.c | 58 struct msg m; in dev_timer_expired() local 99 void message_dev_fetch(struct msg *m) in message_dev_fetch()
|
D | main.c | 59 struct msg m; in metairq_fn() local 111 static void record_latencies(struct msg *m, uint32_t latency) in record_latencies() 182 struct msg m; in thread_fn() local
|
/Zephyr-latest/tests/subsys/lorawan/frag_decoder/src/ |
D | frag_encoder.c | 51 void lorawan_fec_parity_matrix_vector(int m, int n, uint8_t *vec) in lorawan_fec_parity_matrix_vector() 105 for (int m = 0; m < frag_size; m++) { in lorawan_frag_encoder() local
|
/Zephyr-latest/subsys/bluetooth/crypto/ |
D | bt_crypto.c | 22 uint8_t m[65]; in bt_crypto_f4() local 61 uint8_t m[53] = {0x00, /* counter */ in bt_crypto_f5() local 122 uint8_t m[65]; in bt_crypto_f6() local 163 uint8_t m[80], xs[16]; in bt_crypto_g2() local
|
/Zephyr-latest/subsys/lorawan/services/ |
D | frag_decoder_lowmem.c | 28 static inline size_t matrix_location_to_index(size_t x, size_t y, size_t m) in matrix_location_to_index() 37 static bool triangular_matrix_get_entry(struct sys_bitarray *m2tbm, size_t x, size_t y, size_t m) in triangular_matrix_get_entry() 50 static void triangular_matrix_set_entry(struct sys_bitarray *m2tbm, size_t x, size_t y, size_t m) in triangular_matrix_set_entry() 60 static void triangular_matrix_clear_entry(struct sys_bitarray *m2tbm, size_t x, size_t y, size_t m) in triangular_matrix_clear_entry() 144 static void frag_dec_parity_matrix_vector(size_t m, size_t n, struct sys_bitarray *vec) in frag_dec_parity_matrix_vector()
|
/Zephyr-latest/subsys/bluetooth/audio/ |
D | csip_crypto.c | 137 static int s1(const uint8_t *m, size_t m_size, in s1() 161 const uint8_t m[] = {'S', 'I', 'R', 'K', 'e', 'n', 'c'}; in bt_csip_sef() local
|
/Zephyr-latest/subsys/bluetooth/controller/util/ |
D | mayfly.c | 76 struct mayfly *m) in mayfly_enqueue() 131 struct mayfly *m) in dequeue() 194 struct mayfly *m = 0; in mayfly_run() local
|
/Zephyr-latest/doc/_extensions/zephyr/ |
D | external_content.py | 72 def _adjust(m): argument
|
/Zephyr-latest/samples/drivers/misc/grove_display/src/ |
D | main.c | 42 int i, j, m; in main() local
|
/Zephyr-latest/tests/posix/common/src/ |
D | cond.c | 19 pthread_cond_t m[CONFIG_MAX_PTHREAD_COND_COUNT + 1]; in ZTEST() local
|
D | mutex.c | 132 pthread_mutex_t m[CONFIG_MAX_PTHREAD_MUTEX_COUNT + 1]; in ZTEST() local 155 pthread_mutex_t m; in ZTEST() local
|
/Zephyr-latest/doc/_static/js/ |
D | dark-mode-toggle.min.mjs | 2 …onst d="legend";const p="toggle";const b="switch";const g="three-way";const m="appearance";const u… method in DarkModeToggle
|
/Zephyr-latest/lib/libc/common/source/time/ |
D | gmtime_r.c | 49 unsigned int m = mp + ((mp < 10) ? 3 : -9); in time_civil_from_days() local
|
/Zephyr-latest/tests/bluetooth/controller/mock_ctrl/src/ |
D | mayfly.c | 29 uint8_t chain, struct mayfly *m) in mayfly_enqueue()
|
/Zephyr-latest/samples/sensor/fdc2x1x/src/ |
D | main.c | 14 #define CH_BUF_INIT(m) {}, argument
|
/Zephyr-latest/samples/subsys/rtio/sensor_batch_processing/src/ |
D | main.c | 38 int m = 0; in main() local
|