Home
last modified time | relevance | path

Searched refs:old (Results 1 – 25 of 143) sorted by relevance

123456

/Zephyr-latest/arch/arm64/include/
Dkernel_arch_func.h44 struct k_thread *old); in arch_switch()
46 struct k_thread *old = CONTAINER_OF(switched_from, struct k_thread, in arch_switch() local
49 z_arm64_context_switch(new, old); in arch_switch()
/Zephyr-latest/include/zephyr/xen/
Dgeneric.h29 #define synch_cmpxchg(ptr, old, new) \ argument
30 ({ __typeof__(*ptr) stored = old; \
32 __ATOMIC_SEQ_CST) ? new : old; \
/Zephyr-latest/include/zephyr/sys/
Datomic.h150 atomic_val_t old; in atomic_test_and_clear_bit() local
152 old = atomic_and(ATOMIC_ELEM(target, bit), ~mask); in atomic_test_and_clear_bit()
154 return (old & mask) != 0; in atomic_test_and_clear_bit()
173 atomic_val_t old; in atomic_test_and_set_bit() local
175 old = atomic_or(ATOMIC_ELEM(target, bit), mask); in atomic_test_and_set_bit()
177 return (old & mask) != 0; in atomic_test_and_set_bit()
/Zephyr-latest/arch/arm/include/cortex_a_r/
Dkernel_arch_func.h66 struct k_thread *old); in arch_switch()
69 struct k_thread *old = CONTAINER_OF(switched_from, struct k_thread, in arch_switch() local
72 z_arm_context_switch(new, old); in arch_switch()
/Zephyr-latest/arch/riscv/include/
Dkernel_arch_func.h66 extern void z_riscv_switch(struct k_thread *new, struct k_thread *old); in arch_switch()
68 struct k_thread *old = CONTAINER_OF(switched_from, struct k_thread, in arch_switch() local
71 arch_syscall_invoke2((uintptr_t)new, (uintptr_t)old, RV_ECALL_SCHEDULE); in arch_switch()
73 z_riscv_switch(new, old); in arch_switch()
/Zephyr-latest/arch/xtensa/core/
Dgen_vectors.py101 old = f"Level{debug_level}Interrupt" variable
102 offsets[f"DebugException"] = offsets[old]
103 del offsets[old]
/Zephyr-latest/scripts/kconfig/
Ddiffconfig107 old = []
110 old.append(config)
111 old.sort()
112 for config in old:
/Zephyr-latest/drivers/mfd/
Dmfd_bd8lb600fs.c36 uint32_t old; member
76 data->old = 0; in bd8lb600fs_parse_rx_buffer()
85 WRITE_BIT(data->old, i + j * 8, 1); in bd8lb600fs_parse_rx_buffer()
93 LOG_DBG("%s: received 0x%08X open load state from BD8LB600FS", dev->name, data->old); in bd8lb600fs_parse_rx_buffer()
174 int mfd_bd8lb600fs_get_output_diagnostics(const struct device *dev, uint32_t *old, in mfd_bd8lb600fs_get_output_diagnostics() argument
182 *old = data->old; in mfd_bd8lb600fs_get_output_diagnostics()
/Zephyr-latest/subsys/bluetooth/audio/
Dbap_iso.c58 atomic_val_t old; in bt_bap_iso_ref() local
68 old = atomic_get(&iso->ref); in bt_bap_iso_ref()
70 if (!old) { in bt_bap_iso_ref()
73 } while (!atomic_cas(&iso->ref, old, old + 1)); in bt_bap_iso_ref()
80 atomic_val_t old; in bt_bap_iso_unref() local
84 old = atomic_dec(&iso->ref); in bt_bap_iso_unref()
86 __ASSERT(old > 0, "iso reference counter is 0"); in bt_bap_iso_unref()
/Zephyr-latest/doc/_extensions/zephyr/
Dhtml_redirects.py77 old == new_url for (old, _) in app.config.html_redirect_pages
/Zephyr-latest/drivers/sensor/rohm/bd8lb600fs/
Dbd8lb600fs_diagnostics.c24 return mfd_bd8lb600fs_get_output_diagnostics(config->parent_dev, &data->old, in bd8lb600fs_diagnostics_sample_fetch()
35 val->val1 = data->old; in bd8lb600fs_diagnostics_channel_get()
Dbd8lb600fs_diagnostics.h14 uint32_t old; member
/Zephyr-latest/include/zephyr/drivers/mfd/
Dbd8lb600fs.h49 int mfd_bd8lb600fs_get_output_diagnostics(const struct device *dev, uint32_t *old,
/Zephyr-latest/tests/bsim/bluetooth/host/l2cap/einprogress/src/
Ddut.c58 atomic_val_t old = atomic_dec(&acl_pool_refs_held[buf_id]); in acl_pool_refs_held_remove() local
60 __ASSERT(old != 0, "Tester error: releasing a reference that was not held"); in acl_pool_refs_held_remove()
/Zephyr-latest/boards/qemu/arc/
Dboard.cmake21 # For old QEMU we had 'simhs' qemu board, however we are going to rename it
26 # (old and new) working for ARCv2.
/Zephyr-latest/subsys/bluetooth/services/
Ddis.c271 static void dis_update_udi_value(const char *new, char *old, settings_read_cb read_cb, in dis_update_udi_value() argument
283 size_t without_old = merged_size - DIS_STR_SIZE(old); in dis_update_udi_value()
294 int16_t len = read_cb((void *)new, (void *)old, CONFIG_BT_DIS_STR_MAX); in dis_update_udi_value()
299 old[len] = '\0'; in dis_update_udi_value()
301 LOG_DBG("UDI %s set to %s", logkey, old); in dis_update_udi_value()
/Zephyr-latest/samples/drivers/mbox_data/remote/boards/
Dlpcxpresso55s69_lpc55s69_cpu1.overlay9 /* Delete ipc chosen property where old IPM mailbox driver bellow is
/Zephyr-latest/samples/drivers/mbox_data/boards/
Dlpcxpresso55s69_lpc55s69_cpu0.overlay9 /* Delete ipc chosen property where old IPM mailbox driver bellow is
Dmimxrt1160_evk_mimxrt1166_cm7.overlay9 /* Delete ipc chosen property where old IPM mailbox driver bellow is
Dmimxrt1170_evk_mimxrt1176_cm7_A.overlay9 /* Delete ipc chosen property where old IPM mailbox driver bellow is
Dmimxrt1170_evk_mimxrt1176_cm7_B.overlay9 /* Delete ipc chosen property where old IPM mailbox driver bellow is
/Zephyr-latest/samples/drivers/mbox/boards/
Dlpcxpresso55s69_lpc55s69_cpu0.overlay9 /* Delete ipc chosen property where old IPM mailbox driver bellow is
Dmimxrt1160_evk_mimxrt1166_cm7.overlay9 /* Delete ipc chosen property where old IPM mailbox driver bellow is
Dmimxrt1170_evk_mimxrt1176_cm7_A.overlay9 /* Delete ipc chosen property where old IPM mailbox driver bellow is
Dmimxrt1170_evk_mimxrt1176_cm7_B.overlay9 /* Delete ipc chosen property where old IPM mailbox driver bellow is

123456