/device/google/contexthub/firmware/os/cpu/x86/ |
D | atomic.c | 21 uint32_t old; in atomicAdd32bits() local 24 old = *val; in atomicAdd32bits() 25 } while (!atomicCmpXchg32bits(val, old, old + addend)); in atomicAdd32bits() 27 return old; in atomicAdd32bits() 32 uint8_t old; in atomicAddByte() local 35 old = *val; in atomicAddByte() 36 } while (!atomicCmpXchgByte(val, old, old + addend)); in atomicAddByte() 38 return old; in atomicAddByte()
|
D | atomicBitset.c | 49 uint32_t old, new; in atomicBitsetClearBit() local 56 old = *wordPtr; in atomicBitsetClearBit() 57 new = old &~ mask; in atomicBitsetClearBit() 58 } while (!atomicCmpXchg32bits(wordPtr, old, new)); in atomicBitsetClearBit() 67 uint32_t old, new; in atomicBitsetFindClearAndSet() local 70 old = *wordPtr; in atomicBitsetFindClearAndSet() 71 if (!(old + 1)) /* no work for words with no clear bits */ in atomicBitsetFindClearAndSet() 74 …pos = __builtin_ctz(~old); /* This will allocate in diff order than ARM. Since we never made any p… in atomicBitsetFindClearAndSet() 75 new = old | (1 << pos); in atomicBitsetFindClearAndSet() 77 if (atomicCmpXchg32bits(wordPtr, old, new)) in atomicBitsetFindClearAndSet()
|
/device/generic/goldfish-opengl/android-emu/android/base/threads/ |
D | AndroidThreadStore.h | 91 void* old = get(); in swap() local 93 return old; in swap() 137 T* old = static_cast<T*>(swap(t)); in set() local 138 delete old; in set() local
|
/device/linaro/dragonboard/qcom/qrtr/src/ |
D | map.c | 92 struct map_item **old) in map_reput() argument 101 if (old) { in map_reput() 103 *old = NULL; in map_reput() 105 *old = map->data[rc].item; in map_reput()
|
D | map.h | 22 struct map_item **old);
|
D | ns.c | 278 struct server *old = container_of(mi, struct server, mi); in server_add() local 279 free(old); in server_add()
|
/device/generic/car/common/ |
D | car.mk | 67 device/sample/etc/old-apns-conf.xml:system/etc/old-apns-conf.xml
|
/device/google/coral/json-c/ |
D | README.md | 10 they are old.
|
D | ChangeLog | 22 * Remove the old libjson.so name compatibility support. The library is 51 A compatibility shim is in place so builds using the old name will
|
D | Doxyfile | 146 # description. Set this tag to YES if you prefer the old behaviour instead.
|
/device/google/bonito/json-c/ |
D | README.md | 10 they are old.
|
D | ChangeLog | 22 * Remove the old libjson.so name compatibility support. The library is 51 A compatibility shim is in place so builds using the old name will
|
D | Doxyfile | 146 # description. Set this tag to YES if you prefer the old behaviour instead.
|
/device/google/crosshatch/json-c/ |
D | README.md | 10 they are old.
|
D | ChangeLog | 22 * Remove the old libjson.so name compatibility support. The library is 51 A compatibility shim is in place so builds using the old name will
|
D | Doxyfile | 146 # description. Set this tag to YES if you prefer the old behaviour instead.
|
/device/google/contexthub/util/nanoapp_postprocess/ |
D | postprocess.c | 310 uint32_t old = *addr; in fixupAddress() local 319 DBG("Fixup addr 0x%08" PRIX32 " (RAM) --> 0x%08" PRIX32, old, *addr); in fixupAddress() 324 DBG("Fixup addr 0x%08" PRIX32 " (FLASH) --> 0x%08" PRIX32, old, *addr); in fixupAddress()
|
/device/google/contexthub/firmware/os/core/ |
D | bl.c | 315 static void blUpdateMark(uint32_t old, uint32_t new) in blUpdateMark() argument 319 if (hdr->marker != old) in blUpdateMark()
|
D | seos.c | 76 struct Task *old = mCurrentTask; in osSetCurrentTask() local 78 old = mCurrentTask; in osSetCurrentTask() 79 if (atomicCmpXchgPtr((uintptr_t*)&mCurrentTask, (uintptr_t)old, (uintptr_t)task)) { in osSetCurrentTask() 83 return old; in osSetCurrentTask()
|
/device/generic/goldfish/radio/ril/ |
D | reference-ril.c | 1226 int current, old; local 1239 old = PREFERRED_NETWORK(sMdmInfo); 1240 RLOGD("old != preferred: %d", old != preferred); 1241 if (old != preferred) {
|
/device/google/cuttlefish/guest/hals/ril/reference-ril/ |
D | reference-ril.c | 1290 int current, old; local 1310 old = PREFERRED_NETWORK(sMdmInfo); 1311 RLOGD("old != preferred: %d", old != preferred); 1312 if (old != preferred) {
|