Home
last modified time | relevance | path

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

12

/Zephyr-Core-2.7.6/include/sys/
Datomic.h148 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/
Ddiffconfig107 old = []
110 old.append(config)
111 old.sort()
112 for config in old:
/Zephyr-Core-2.7.6/boards/arc/qemu_arc/
Dboard.cmake17 # 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/
Dparse_syscalls.py99 old = fp.read()
101 if new != old:
/Zephyr-Core-2.7.6/include/posix/
Dunistd.h32 extern int rename(const char *old, const char *newp);
/Zephyr-Core-2.7.6/drivers/counter/
Dcounter_nrfx_timer.c120 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()
Dcounter_nrfx_rtc.c115 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/
Dfs.c307 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/
DKconfig42 Disable support of 64-bit integer fields, for old compilers or
/Zephyr-Core-2.7.6/samples/bluetooth/
Dbluetooth.rst28 old after many test iterations. If this happens, subsequent host-device
/Zephyr-Core-2.7.6/subsys/bluetooth/host/
Dconn.c1139 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/
DKconfig.winc150019 bool "Use old SPI access method in the vendor HAL"
/Zephyr-Core-2.7.6/subsys/testsuite/
Dunittest.cmake20 # This add support for old style boilerplate include.
/Zephyr-Core-2.7.6/lib/os/
Drb.c40 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/
DREADME.rst59 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/
Dfcb.rst31 an array of flash sectors; when it erases old data, it does this a
/Zephyr-Core-2.7.6/subsys/net/ip/
Dtp.c494 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/
Dtroubleshooting.rst108 **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
Drelease-notes.rst106 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/
Dindex.rst129 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/
Dindex.rst129 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/
Dindex.rst149 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/
DREADME-WINDOWS.rst34 to WINDOWBASE, at the same time copying the old (now hidden) stack
/Zephyr-Core-2.7.6/boards/arm/96b_aerocore2/doc/
Dindex.rst276 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/
Dmessage_queues.rst139 /* message queue is full: purge old data & try again */

12