Home
last modified time | relevance | path

Searched defs:l (Results 1 – 25 of 54) sorted by relevance

123

/Zephyr-latest/kernel/
Dspinlock_validate.c9 bool z_spin_lock_valid(struct k_spinlock *l) in z_spin_lock_valid()
21 bool z_spin_unlock_valid(struct k_spinlock *l) in z_spin_unlock_valid()
37 void z_spin_lock_set_owner(struct k_spinlock *l) in z_spin_lock_set_owner()
43 bool z_spin_lock_mem_coherent(struct k_spinlock *l) in z_spin_lock_mem_coherent()
/Zephyr-latest/subsys/llext/
Dfs_loader.c15 int llext_fs_prepare(struct llext_loader *l) in llext_fs_prepare()
32 int llext_fs_read(struct llext_loader *l, void *buf, size_t len) in llext_fs_read()
46 int llext_fs_seek(struct llext_loader *l, size_t pos) in llext_fs_seek()
57 void llext_fs_finalize(struct llext_loader *l) in llext_fs_finalize()
Dbuf_loader.c12 int llext_buf_read(struct llext_loader *l, void *buf, size_t len) in llext_buf_read()
24 int llext_buf_seek(struct llext_loader *l, size_t pos) in llext_buf_seek()
33 void *llext_buf_peek(struct llext_loader *l, size_t pos) in llext_buf_peek()
/Zephyr-latest/include/zephyr/
Dspinlock.h132 static ALWAYS_INLINE void z_spinlock_validate_pre(struct k_spinlock *l) in z_spinlock_validate_pre()
143 static ALWAYS_INLINE void z_spinlock_validate_post(struct k_spinlock *l) in z_spinlock_validate_post()
182 static ALWAYS_INLINE k_spinlock_key_t k_spin_lock(struct k_spinlock *l) in k_spin_lock()
230 static ALWAYS_INLINE int k_spin_trylock(struct k_spinlock *l, k_spinlock_key_t *k) in k_spin_trylock()
300 static ALWAYS_INLINE void k_spin_unlock(struct k_spinlock *l, in k_spin_unlock()
346 static ALWAYS_INLINE bool z_spin_is_locked(struct k_spinlock *l) in z_spin_is_locked()
359 static ALWAYS_INLINE void k_spin_release(struct k_spinlock *l) in k_spin_release()
/Zephyr-latest/include/zephyr/llext/
Dloader.h106 static inline int llext_prepare(struct llext_loader *l) in llext_prepare()
115 static inline int llext_read(struct llext_loader *l, void *buf, size_t len) in llext_read()
120 static inline int llext_seek(struct llext_loader *l, size_t pos) in llext_seek()
125 static inline void *llext_peek(struct llext_loader *l, size_t pos) in llext_peek()
134 static inline void llext_finalize(struct llext_loader *l) in llext_finalize()
/Zephyr-latest/lib/posix/options/
Dspinlock.c36 static inline size_t posix_spinlock_to_offset(struct k_spinlock *l) in posix_spinlock_to_offset()
99 struct k_spinlock *l; in pthread_spin_destroy() local
117 struct k_spinlock *l; in pthread_spin_lock() local
134 struct k_spinlock *l; in pthread_spin_trylock() local
149 struct k_spinlock *l; in pthread_spin_unlock() local
/Zephyr-latest/samples/subsys/llext/edk/ext1/src/
Dmain.c22 long l; in start() local
/Zephyr-latest/samples/subsys/llext/edk/app/include/
Dapp_api.h24 unsigned long l; member
/Zephyr-latest/doc/_static/js/
Ddark-mode-toggle-stylesheets-loader.min.js2 (()=>{const e="dark-mode-toggle-stylesheets";const s="dark-mode-toggle";const t="light";const l="da… constant
Ddark-mode-toggle.min.mjs2 …const s="light";const r="dark";const h="system";const o=`(${i}:${r})`;const l=`(${i}:${s})`;const … method in DarkModeToggle
/Zephyr-latest/samples/subsys/llext/edk/ext3/src/
Dmain.c53 long l; in start() local
/Zephyr-latest/samples/subsys/llext/edk/k-ext1/src/
Dmain.c52 long l; in start() local
/Zephyr-latest/arch/xtensa/core/
Dxtensa_intgen.py70 l = l if l.find("#") < 0 else l[0:l.find("#")] variable
Dvector_handlers.c289 #define DEF_INT_C_HANDLER(l) \ argument
/Zephyr-latest/samples/sensor/amg88xx/src/
Dmain.c28 void print_buffer(void *ptr, size_t l) in print_buffer()
/Zephyr-latest/subsys/bluetooth/mesh/
Dblob.h53 #define _BLOB_LOG_2_CEIL(l, x) ((x) <= (1U << l)) ? l : argument
54 #define _BLOB_LOG_2_FLOOR(l, x) ((x) < (1U << (l + 1))) ? l : argument
/Zephyr-latest/kernel/include/
Dpriority_q.h147 sys_dlist_t *l = &pq->queues[i * 64 + u64_count_trailing_zeros(pq->bitmask[i])]; in z_priq_mq_best() local
149 sys_dlist_t *l = &pq->queues[i * 32 + u32_count_trailing_zeros(pq->bitmask[i])]; in z_priq_mq_best() local
/Zephyr-latest/include/zephyr/dsp/
Dprint_format.h46 #define __PRIq_arg_get(q, shift, h, l) FIELD_GET(GENMASK64(h, l), __PRIq_arg_shift(q, shift)) argument
/Zephyr-latest/subsys/usb/device_next/class/
Dusbd_hid_api.c83 int l = len; in wrapper_get_report() local
105 int l = len; in wrapper_set_report() local
/Zephyr-latest/drivers/flash/
Dflash_page_layout.c87 const struct flash_pages_layout *l = &layout[block]; in flash_page_foreach() local
/Zephyr-latest/soc/ite/ec/it8xxx2/
Dilm.c58 uint8_t l; member
/Zephyr-latest/drivers/edac/
Dibecc.h11 #define BITFIELD(val, h, l) (((val) & GENMASK(h, l)) >> l) argument
13 #define BITFIELD64(val, h, l) (((val) & GENMASK64(h, l)) >> l) argument
/Zephyr-latest/tests/kernel/spinlock/src/
Dmain.c45 static struct k_spinlock l; in ZTEST() local
/Zephyr-latest/tests/crypto/tinycrypt/src/
Dcmac_mode.c76 const uint8_t l[BUF_LEN] = { in verify_gf_2_128_double() local
/Zephyr-latest/subsys/bluetooth/controller/ll_sw/openisa/lll/
Dlll_test.c85 uint32_t l, i, s, t; in isr_tx() local

123