Home
last modified time | relevance | path

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

12345

/Zephyr-Core-3.5.0/include/zephyr/
Dspinlock.h86 bool z_spin_lock_valid(struct k_spinlock *l);
87 bool z_spin_unlock_valid(struct k_spinlock *l);
88 void z_spin_lock_set_owner(struct k_spinlock *l);
92 bool z_spin_lock_mem_coherent(struct k_spinlock *l);
110 static ALWAYS_INLINE void z_spinlock_validate_pre(struct k_spinlock *l) in z_spinlock_validate_pre() argument
112 ARG_UNUSED(l); in z_spinlock_validate_pre()
114 __ASSERT(z_spin_lock_valid(l), "Invalid spinlock %p", l); in z_spinlock_validate_pre()
116 __ASSERT_NO_MSG(z_spin_lock_mem_coherent(l)); in z_spinlock_validate_pre()
121 static ALWAYS_INLINE void z_spinlock_validate_post(struct k_spinlock *l) in z_spinlock_validate_post() argument
123 ARG_UNUSED(l); in z_spinlock_validate_post()
[all …]
/Zephyr-Core-3.5.0/lib/posix/
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.5.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.5.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.5.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()
/Zephyr-Core-3.5.0/subsys/bluetooth/controller/util/
Dmfifo.h51 uint8_t l; /* Last. Write index */ \
57 .l = 0, \
65 mfifo_##name.f = mfifo_##name.l = 0
113 mfifo_##name.l, (i))
136 (mem), &mfifo_##name.l)
177 mfifo_##name.l, (mem))
204 mfifo_enqueue((idx), &mfifo_##name.l)
226 mfifo_##name.l)
248 mfifo_##name.f, mfifo_##name.l)
271 mfifo_##name.f, mfifo_##name.l)
[all …]
/Zephyr-Core-3.5.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.5.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.5.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.5.0/boards/riscv/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.5.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.5.0/samples/subsys/usb/audio/headphones_microphone/
Dapp.overlay11 channel-l;
22 channel-l;
/Zephyr-Core-3.5.0/samples/subsys/usb/audio/headset/
Dapp.overlay11 mic-channel-l;
15 hp-channel-l;
/Zephyr-Core-3.5.0/drivers/flash/
Dflash_page_layout.c87 const struct flash_pages_layout *l = &layout[block]; in flash_page_foreach() local
88 page_info.size = l->pages_size; in flash_page_foreach()
90 for (i = 0; i < l->pages_count; i++) { in flash_page_foreach()
/Zephyr-Core-3.5.0/include/zephyr/net/
Dethernet_bridge.h134 int eth_bridge_listener_add(struct eth_bridge *br, struct eth_bridge_listener *l);
144 int eth_bridge_listener_remove(struct eth_bridge *br, struct eth_bridge_listener *l);
/Zephyr-Core-3.5.0/samples/subsys/llext/shell_loader/
DREADME.rst88 00000000 l df *ABS* 00000000 hello_world.c
89 00000000 l d .text 00000000 .text
90 00000000 l d .data 00000000 .data
91 00000000 l d .bss 00000000 .bss
92 00000000 l d .rodata 00000000 .rodata
93 00000000 l O .rodata 00000004 number
94 00000000 l d .comment 00000000 .comment
95 00000000 l d .ARM.attributes 00000000 .ARM.attributes
/Zephyr-Core-3.5.0/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-Core-3.5.0/subsys/bluetooth/controller/ll_sw/
Dull_internal.h145 &mfifo_##_name.l, mfifo_##_name.m, &mem_##_name.free, \
161 &mfifo_##_name.l, mfifo_##_name.m, _link, \
164 void ull_rxfifo_alloc(uint8_t s, uint8_t n, uint8_t f, uint8_t *l, uint8_t *m,
166 void *ull_rxfifo_release(uint8_t s, uint8_t n, uint8_t f, uint8_t *l, uint8_t *m,
/Zephyr-Core-3.5.0/tests/bluetooth/uuid/src/
Dtest_bt_uuid_to_str.c50 result_is_null_terminated(BT_UUID_DECLARE_128(BT_UUID_128_ENCODE(0l, 0, 0, 0, 0ll))); in ZTEST()
65 result_str_is(BT_UUID_DECLARE_128(BT_UUID_128_ENCODE(0l, 0, 0, 0, 0ll)), in ZTEST()
/Zephyr-Core-3.5.0/subsys/bluetooth/controller/ll_sw/openisa/lll/
Dlll_test.c85 uint32_t l, i, s, t; in isr_tx() local
103 l = radio_tmr_end_get() - radio_tmr_ready_get(); in isr_tx()
104 i = DIV_ROUND_UP((l + 249), SCAN_INT_UNIT_US) * SCAN_INT_UNIT_US; in isr_tx()
105 t = radio_tmr_end_get() - l + i; in isr_tx()
/Zephyr-Core-3.5.0/doc/connectivity/networking/api/
Dzperf.rst35 $ iperf -s -l 1K -u -V -B 2001:db8::2
41 $ iperf -s -l 1K -V -B 2001:db8::2
92 $ iperf -l 1K -u -V -c 2001:db8::1 -p 5001
99 $ iperf -l 1K -V -c 2001:db8::1 -p 5001
/Zephyr-Core-3.5.0/samples/sensor/amg88xx/src/
Dmain.c28 void print_buffer(void *ptr, size_t l) in print_buffer() argument
40 for (int i = 0; i < l; i++) { in print_buffer()
/Zephyr-Core-3.5.0/tests/crypto/tinycrypt/src/
Dcmac_mode.c76 const uint8_t l[BUF_LEN] = { in verify_gf_2_128_double() local
91 if (memcmp(L, l, BUF_LEN) != 0) { in verify_gf_2_128_double()
93 show("expected L =", l, sizeof(l)); in verify_gf_2_128_double()
/Zephyr-Core-3.5.0/doc/_static/js/
Ddark-mode-toggle.min.mjs2l="link[rel=stylesheet]";const h="remember";const c="legend";const d="toggle";const b="switch";con… method in DarkModeToggle
/Zephyr-Core-3.5.0/samples/modules/chre/
DREADME.rst64 …oid/platform/superproject/+/master:system/chre/pal/include/chre/pal/audio.h;l=69;drc=6ca547ad175f8…
65 …roid/platform/superproject/+/master:system/chre/pal/include/chre/pal/gnss.h;l=152;drc=830255234157…
66 …id/platform/superproject/+/master:system/chre/pal/include/chre/pal/sensor.h;l=51;drc=23207906add05…
67 …id/platform/superproject/+/master:system/chre/pal/include/chre/pal/system.h;l=49;drc=6ca547ad175f8…
68 …roid/platform/superproject/+/master:system/chre/pal/include/chre/pal/wifi.h;l=153;drc=b673b80ed98e…
69 …roid/platform/superproject/+/master:system/chre/pal/include/chre/pal/wwan.h;l=69;drc=629361a803cb3…

12345