/Zephyr-Core-2.7.6/include/sys/ |
D | atomic.h | 148 atomic_val_t old; in atomic_test_and_clear_bit() local 150 old = atomic_and(ATOMIC_ELEM(target, bit), ~mask); in atomic_test_and_clear_bit() 152 return (old & mask) != 0; in atomic_test_and_clear_bit() 169 atomic_val_t old; in atomic_test_and_set_bit() local 171 old = atomic_or(ATOMIC_ELEM(target, bit), mask); in atomic_test_and_set_bit() 173 return (old & mask) != 0; in atomic_test_and_set_bit()
|
/Zephyr-Core-2.7.6/scripts/kconfig/ |
D | diffconfig | 107 old = [] 110 old.append(config) 111 old.sort() 112 for config in old:
|
/Zephyr-Core-2.7.6/boards/arc/qemu_arc/ |
D | board.cmake | 17 # For old QEMU we had 'simhs' qemu board, however we are going to rename it 22 # (old and new) working for ARCv2.
|
/Zephyr-Core-2.7.6/scripts/ |
D | parse_syscalls.py | 99 old = fp.read() 101 if new != old:
|
/Zephyr-Core-2.7.6/include/posix/ |
D | unistd.h | 32 extern int rename(const char *old, const char *newp);
|
/Zephyr-Core-2.7.6/drivers/counter/ |
D | counter_nrfx_timer.c | 120 static uint32_t ticks_sub(uint32_t val, uint32_t old, uint32_t top) in ticks_sub() argument 123 return (val - old) & top; in ticks_sub() 127 return (val >= old) ? (val - old) : val + top + 1 - old; in ticks_sub()
|
D | counter_nrfx_rtc.c | 115 uint32_t old, uint32_t top) in ticks_sub() argument 118 return (val - old) & COUNTER_MAX_TOP_VALUE; in ticks_sub() 120 return (val - old) & top; in ticks_sub() 124 return (val >= old) ? (val - old) : val + top + 1 - old; in ticks_sub()
|
/Zephyr-Core-2.7.6/lib/posix/ |
D | fs.c | 307 int rename(const char *old, const char *new) in rename() argument 311 rc = fs_rename(old, new); in rename()
|
/Zephyr-Core-2.7.6/modules/nanopb/ |
D | Kconfig | 42 Disable support of 64-bit integer fields, for old compilers or
|
/Zephyr-Core-2.7.6/samples/bluetooth/ |
D | bluetooth.rst | 28 old after many test iterations. If this happens, subsequent host-device
|
/Zephyr-Core-2.7.6/subsys/bluetooth/host/ |
D | conn.c | 1139 atomic_val_t old; in bt_conn_ref() local 1147 old = atomic_get(&conn->ref); in bt_conn_ref() 1149 if (!old) { in bt_conn_ref() 1152 } while (!atomic_cas(&conn->ref, old, old + 1)); in bt_conn_ref() 1154 BT_DBG("handle %u ref %d -> %d", conn->handle, old, old + 1); in bt_conn_ref() 1161 atomic_val_t old; in bt_conn_unref() local 1163 old = atomic_dec(&conn->ref); in bt_conn_unref() 1165 BT_DBG("handle %u ref %d -> %d", conn->handle, old, in bt_conn_unref() 1168 __ASSERT(old > 0, "Conn reference counter is 0"); in bt_conn_unref()
|
/Zephyr-Core-2.7.6/drivers/wifi/winc1500/ |
D | Kconfig.winc1500 | 19 bool "Use old SPI access method in the vendor HAL"
|
/Zephyr-Core-2.7.6/subsys/testsuite/ |
D | unittest.cmake | 20 # This add support for old style boilerplate include.
|
/Zephyr-Core-2.7.6/lib/os/ |
D | rb.c | 40 uintptr_t old = (uintptr_t) n->children[0]; in set_child() local 43 n->children[0] = (void *) (new | (old & 1UL)); in set_child()
|
/Zephyr-Core-2.7.6/samples/boards/esp32/wifi_station/ |
D | README.rst | 59 I (1046) wifi:new:<4,1>, old:<1,1>, ap:<255,255>, sta:<4,1>, prof:1
|
/Zephyr-Core-2.7.6/doc/reference/storage/fcb/ |
D | fcb.rst | 31 an array of flash sectors; when it erases old data, it does this a
|
/Zephyr-Core-2.7.6/subsys/net/ip/ |
D | tp.c | 494 bool new_value, old = *((bool *) value); in tp_new_find_and_apply() local 498 tp_dbg("%s %d->%d", key, old, new_value); in tp_new_find_and_apply()
|
/Zephyr-Core-2.7.6/doc/guides/west/ |
D | troubleshooting.rst | 108 **Workaround 1**: remove the old version, then upgrade: 190 Then you have an old version of west installed, and are trying to use it in a
|
D | release-notes.rst | 106 allowed vlaues documented in :ref:`west-manifest-schema-version`. The old 122 is at least ``0.10``. The old behavior is still available in the top level 212 The old terms are still supported for compatibility, but the documentation 234 from the ``self: path:`` value in the manifest data. The old behavior is 279 be easier for most people to work with than the old one.
|
/Zephyr-Core-2.7.6/boards/arm/blackpill_f401ce/doc/ |
D | index.rst | 129 debian/ubuntu can be quite old, so you might have to build dfu-util from source.
|
/Zephyr-Core-2.7.6/boards/arm/blackpill_f411ce/doc/ |
D | index.rst | 129 debian/ubuntu can be quite old, so you might have to build dfu-util from source.
|
/Zephyr-Core-2.7.6/boards/arm/sensortile_box/doc/ |
D | index.rst | 149 Debian and Ubuntu can be quite old, so you might have to build dfu-util from source.
|
/Zephyr-Core-2.7.6/arch/xtensa/core/ |
D | README-WINDOWS.rst | 34 to WINDOWBASE, at the same time copying the old (now hidden) stack
|
/Zephyr-Core-2.7.6/boards/arm/96b_aerocore2/doc/ |
D | index.rst | 276 debian/ubuntu can be quite old, so you might have to build dfu-util from source.
|
/Zephyr-Core-2.7.6/doc/reference/kernel/data_passing/ |
D | message_queues.rst | 139 /* message queue is full: purge old data & try again */
|