Home
last modified time | relevance | path

Searched refs:l (Results 1 – 25 of 141) sorted by relevance

123456

/Zephyr-Core-3.7.0/include/zephyr/
Dspinlock.h108 bool z_spin_lock_valid(struct k_spinlock *l);
109 bool z_spin_unlock_valid(struct k_spinlock *l);
110 void z_spin_lock_set_owner(struct k_spinlock *l);
114 bool z_spin_lock_mem_coherent(struct k_spinlock *l);
132 static ALWAYS_INLINE void z_spinlock_validate_pre(struct k_spinlock *l) in z_spinlock_validate_pre() argument
134 ARG_UNUSED(l); in z_spinlock_validate_pre()
136 __ASSERT(z_spin_lock_valid(l), "Invalid spinlock %p", l); in z_spinlock_validate_pre()
138 __ASSERT_NO_MSG(z_spin_lock_mem_coherent(l)); in z_spinlock_validate_pre()
143 static ALWAYS_INLINE void z_spinlock_validate_post(struct k_spinlock *l) in z_spinlock_validate_post() argument
145 ARG_UNUSED(l); in z_spinlock_validate_post()
[all …]
/Zephyr-Core-3.7.0/lib/posix/options/
Dspinlock.c36 static inline size_t posix_spinlock_to_offset(struct k_spinlock *l) in posix_spinlock_to_offset() argument
38 return (union _spinlock_storage *)l - posix_spinlock_pool; in posix_spinlock_to_offset()
99 struct k_spinlock *l; in pthread_spin_destroy() local
101 l = get_posix_spinlock(lock); in pthread_spin_destroy()
102 if (l == NULL) { in pthread_spin_destroy()
107 bit = posix_spinlock_to_offset(l); in pthread_spin_destroy()
117 struct k_spinlock *l; in pthread_spin_lock() local
119 l = get_posix_spinlock(lock); in pthread_spin_lock()
120 if (l == NULL) { in pthread_spin_lock()
125 bit = posix_spinlock_to_offset(l); in pthread_spin_lock()
[all …]
/Zephyr-Core-3.7.0/kernel/
Dspinlock_validate.c9 bool z_spin_lock_valid(struct k_spinlock *l) in z_spin_lock_valid() argument
11 uintptr_t thread_cpu = l->thread_cpu; in z_spin_lock_valid()
21 bool z_spin_unlock_valid(struct k_spinlock *l) in z_spin_unlock_valid() argument
23 uintptr_t tcpu = l->thread_cpu; in z_spin_unlock_valid()
25 l->thread_cpu = 0; in z_spin_unlock_valid()
37 void z_spin_lock_set_owner(struct k_spinlock *l) in z_spin_lock_set_owner() argument
39 l->thread_cpu = _current_cpu->id | (uintptr_t)_current; in z_spin_lock_set_owner()
43 bool z_spin_lock_mem_coherent(struct k_spinlock *l) in z_spin_lock_mem_coherent() argument
45 return arch_mem_coherent((void *)l); in z_spin_lock_mem_coherent()
/Zephyr-Core-3.7.0/include/zephyr/llext/
Dloader.h93 static inline int llext_read(struct llext_loader *l, void *buf, size_t len) in llext_read() argument
95 return l->read(l, buf, len); in llext_read()
98 static inline int llext_seek(struct llext_loader *l, size_t pos) in llext_seek() argument
100 return l->seek(l, pos); in llext_seek()
103 static inline void *llext_peek(struct llext_loader *l, size_t pos) in llext_peek() argument
105 if (l->peek) { in llext_peek()
106 return l->peek(l, pos); in llext_peek()
/Zephyr-Core-3.7.0/scripts/west_commands/completion/
Dwest-completion.fish20 set -l tokens (commandline -opc)
41 set -l tokens (commandline -opc)
42 set -l argc (count $argv)
43 set -l max $argv[1]
44 set -l counter 0
77 set -l tokens (commandline -opc)
90 set -l tokens (commandline -opc)
98 set -l prv_idx (math $idx - 1)
116 set -l tokens (commandline -opc)
136 set -l tokens (commandline -opc)
[all …]
/Zephyr-Core-3.7.0/arch/xtensa/core/
Dxtensa_intgen.py69 for l in fileinput.input():
70 l = l if l.find("#") < 0 else l[0:l.find("#")] variable
71 blob += l.rstrip() + " "
100 for l in ints_by_lvl:
101 for i in ints_by_lvl[l]:
103 cprint("#if !defined(" + v + ") || " + str(v) + " != " + str(l))
/Zephyr-Core-3.7.0/subsys/llext/
Dbuf_loader.c12 int llext_buf_read(struct llext_loader *l, void *buf, size_t len) in llext_buf_read() argument
14 struct llext_buf_loader *buf_l = CONTAINER_OF(l, struct llext_buf_loader, loader); in llext_buf_read()
24 int llext_buf_seek(struct llext_loader *l, size_t pos) in llext_buf_seek() argument
26 struct llext_buf_loader *buf_l = CONTAINER_OF(l, struct llext_buf_loader, loader); in llext_buf_seek()
33 void *llext_buf_peek(struct llext_loader *l, size_t pos) in llext_buf_peek() argument
35 struct llext_buf_loader *buf_l = CONTAINER_OF(l, struct llext_buf_loader, loader); in llext_buf_peek()
/Zephyr-Core-3.7.0/samples/subsys/llext/edk/ext1/src/
Dmain.c22 long l; in start() local
28 receive(CHAN_TICK, &l, sizeof(l)); in start()
29 printk("[ext1]Read val: %ld\n", l); in start()
/Zephyr-Core-3.7.0/samples/subsys/llext/edk/k-ext1/src/
Dmain.c52 long l; in start() local
58 receive(CHAN_TICK, &l, sizeof(l)); in start()
59 printk("[k-ext1]Read val: %ld\n", l); in start()
/Zephyr-Core-3.7.0/samples/subsys/llext/edk/ext3/src/
Dmain.c53 long l; in start() local
59 receive(CHAN_TICK, &l, sizeof(l)); in start()
60 printk("[ext3]Read val: %ld\n", l); in start()
/Zephyr-Core-3.7.0/subsys/bluetooth/controller/util/
Dmfifo.h55 uint8_t l; /* Last. Write index */ \
63 mfifo_fifo_##name.f = mfifo_fifo_##name.l = 0
111 mfifo_fifo_##name.l, (i))
134 (mem), &mfifo_fifo_##name.l)
176 mfifo_fifo_##name.l, (mem))
203 mfifo_enqueue((idx), &mfifo_fifo_##name.l)
226 mfifo_fifo_##name.l)
248 mfifo_fifo_##name.f, mfifo_fifo_##name.l)
271 mfifo_fifo_##name.f, mfifo_fifo_##name.l)
303 mfifo_fifo_##name.l, (idx))
[all …]
/Zephyr-Core-3.7.0/subsys/bluetooth/mesh/
Dblob.h39 #define _BLOB_LOG_2_CEIL(l, x) ((x) <= (1U << l)) ? l : argument
40 #define _BLOB_LOG_2_FLOOR(l, x) ((x) < (1U << (l + 1))) ? l : argument
/Zephyr-Core-3.7.0/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-Core-3.7.0/tests/kernel/spinlock/src/
Dmain.c45 static struct k_spinlock l; in ZTEST() local
47 zassert_true(!z_spin_is_locked(&l), "Spinlock initialized to locked"); in ZTEST()
49 key = k_spin_lock(&l); in ZTEST()
51 zassert_true(z_spin_is_locked(&l), "Spinlock failed to lock"); in ZTEST()
53 k_spin_unlock(&l, key); in ZTEST()
55 zassert_true(!z_spin_is_locked(&l), "Spinlock failed to unlock"); in ZTEST()
/Zephyr-Core-3.7.0/boards/enjoydigital/litex_vexriscv/doc/img/
Dsymbiflow.svg1l-19.9 49.6c-2.5 6.2-5.2 10.7-8.1 13.5-2.9 2.8-6.7 4.3-11.3 4.3-.6 0-1.1 0-1.7-.1-.5 0-1.1-.1-1.6-…
/Zephyr-Core-3.7.0/subsys/net/l2/ethernet/
Dbridge.c138 int eth_bridge_listener_add(struct eth_bridge *br, struct eth_bridge_listener *l) in eth_bridge_listener_add() argument
141 sys_slist_append(&br->listeners, &l->node); in eth_bridge_listener_add()
146 int eth_bridge_listener_remove(struct eth_bridge *br, struct eth_bridge_listener *l) in eth_bridge_listener_remove() argument
149 sys_slist_find_and_remove(&br->listeners, &l->node); in eth_bridge_listener_remove()
226 struct eth_bridge_listener *l; in net_eth_bridge_input() local
229 l = CONTAINER_OF(node, struct eth_bridge_listener, node); in net_eth_bridge_input()
236 k_fifo_put(&l->pkt_queue, out_pkt); in net_eth_bridge_input()
/Zephyr-Core-3.7.0/tests/bluetooth/shell/boards/
Dnrf5340dk_nrf5340_cpuapp.overlay8 mic-channel-l;
12 hp-channel-l;
/Zephyr-Core-3.7.0/samples/bluetooth/bap_broadcast_sink/boards/
Dnrf52833dk_nrf52833.overlay8 mic-channel-l;
12 hp-channel-l;
Dnrf52840dongle_nrf52840.overlay8 mic-channel-l;
12 hp-channel-l;
Dnrf5340dk_nrf5340_cpuapp.overlay8 mic-channel-l;
12 hp-channel-l;
/Zephyr-Core-3.7.0/samples/bluetooth/bap_broadcast_source/boards/
Dnrf52833dk_nrf52833.overlay8 mic-channel-l;
12 hp-channel-l;
Dnrf52840dongle_nrf52840.overlay8 mic-channel-l;
12 hp-channel-l;
Dnrf5340dk_nrf5340_cpuapp.overlay8 mic-channel-l;
12 hp-channel-l;
/Zephyr-Core-3.7.0/samples/subsys/usb/audio/headphones_microphone/
Dapp.overlay11 channel-l;
22 channel-l;
/Zephyr-Core-3.7.0/samples/subsys/usb/audio/headset/
Dapp.overlay11 mic-channel-l;
15 hp-channel-l;

123456