/vendor/hisilicon/hispark_pegasus/demo/ssd1306_demo/libm_port/ |
H A D | features.h | 22 weak_alias(old, new) { in weak_alias() 23 extern __typeof(old) new __attribute__((__weak__, __alias__(#old))) in weak_alias()
|
/third_party/musl/src/thread/ |
H A D | pthread_mutex_consistent.c | 6 int old = m->_m_lock; in pthread_mutex_consistent() local 7 int own = old & 0x3fffffff; in pthread_mutex_consistent() 8 if (!(m->_m_type & 4) || !own || !(old & 0x40000000)) in pthread_mutex_consistent()
|
/third_party/musl/arch/riscv32/ |
H A D | atomic_arch.h | 10 int old, tmp; in a_cas() local 17 : "=&r"(old), "=&r"(tmp) in a_cas() 20 return old; in a_cas()
|
/third_party/libwebsockets/lib/misc/lwsac/ |
H A D | cached-file.c | 54 * - the old cache lac, if any, is detached (so it will be freed when its 130 lwsac_cached_file_t old = *cache; in lwsac_cached_file() local 139 if (old) { /* we already have a cached copy of it */ in lwsac_cached_file() 144 /* we checked it as fresh less than 5s ago, use old */ in lwsac_cached_file() 166 if (old && s.st_mtime == info->s.st_mtime) { in lwsac_cached_file() 177 * it... reload in a new lac and then detach the old lac. in lwsac_cached_file() 204 if (old) in lwsac_cached_file() 205 lwsac_use_cached_file_detach(&old); in lwsac_cached_file()
|
/third_party/icu/icu4c/source/tools/genren/ |
H A D | Makefile | 62 -mv $(ICUDIR) $(ICUDIR)old 63 -(rm -rf $(ICUDIR)old &) 88 -cp urename.h urename.h.old 92 sorts: urename.sort urename.old.sort 94 @echo "Try 'diff --side-by-side urename.old.sort urename.sort'" 99 urename.old.sort: $(top_srcdir)/common/unicode/urename.h
|
/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | basetexture9.h | 142 struct NineBaseTexture9 *old = *slot; in NineBindTextureToDevice() local 150 if (old) { in NineBindTextureToDevice() 151 old->bind_count--; in NineBindTextureToDevice() 152 if (!old->bind_count) in NineBindTextureToDevice() 153 list_delinit(&old->list); in NineBindTextureToDevice()
|
/third_party/node/deps/openssl/openssl/crypto/x509/ |
H A D | x_req.c | 67 X509_REQ *old = exarg; in req_cb() local 69 if (!ossl_x509_req_set0_libctx(ret, old->libctx, old->propq)) in req_cb() 71 if (old->req_info.pubkey != NULL) { in req_cb() 72 EVP_PKEY *pkey = X509_PUBKEY_get0(old->req_info.pubkey); in req_cb()
|
/third_party/openssl/crypto/x509/ |
H A D | x_req.c | 67 X509_REQ *old = exarg; in req_cb() local 69 if (!ossl_x509_req_set0_libctx(ret, old->libctx, old->propq)) in req_cb() 71 if (old->req_info.pubkey != NULL) { in req_cb() 72 EVP_PKEY *pkey = X509_PUBKEY_get0(old->req_info.pubkey); in req_cb()
|
/third_party/skia/third_party/externals/icu/source/tools/genren/ |
H A D | Makefile | 62 -mv $(ICUDIR) $(ICUDIR)old 63 -(rm -rf $(ICUDIR)old &) 88 -cp urename.h urename.h.old 92 sorts: urename.sort urename.old.sort 94 @echo "Try 'diff --side-by-side urename.old.sort urename.sort'" 99 urename.old.sort: $(top_srcdir)/common/unicode/urename.h
|
/third_party/backends/lib/ |
H A D | sigprocmask.c | 29 sigprocmask (int how, int *new, int *old) in sigprocmask() argument 46 if (old) in sigprocmask() 47 *old = o; in sigprocmask()
|
/third_party/musl/src/locale/ |
H A D | uselocale.c | 8 locale_t old = self->locale; in __uselocale() local 13 return old == global ? LC_GLOBAL_LOCALE : old; in __uselocale()
|
/third_party/pulseaudio/src/pulsecore/ |
H A D | memblockq.c | 212 int64_t old; in pa_memblockq_push() local 226 old = bq->write_index; in pa_memblockq_push() 372 write_index_changed(bq, old, true); in pa_memblockq_push() 538 int64_t old; in pa_memblockq_drop() local 542 old = bq->read_index; in pa_memblockq_drop() 577 read_index_changed(bq, old); in pa_memblockq_drop() 581 int64_t old; in pa_memblockq_rewind() local 585 old = bq->read_index; in pa_memblockq_rewind() 591 read_index_changed(bq, old); in pa_memblockq_rewind() 616 int64_t old; in pa_memblockq_seek() local 643 int64_t old; pa_memblockq_flush_write() local 656 int64_t old; pa_memblockq_flush_read() local [all...] |
/third_party/mesa3d/src/util/ |
H A D | os_socket.c | 70 int old = fcntl(s, F_GETFL, 0); in os_socket_block() local 71 if (old == -1) in os_socket_block() 76 fcntl(s, F_SETFL, old & ~O_NONBLOCK); in os_socket_block() 78 fcntl(s, F_SETFL, old | O_NONBLOCK); in os_socket_block()
|
/third_party/toybox/toys/lsb/ |
H A D | passwd.c | 43 static void weak_check(char *new, char *old, char *user) in weak_check() argument 50 if (*old && (strcasestr(new, old) || strcasestr(old, new))) msg = "old"; in weak_check()
|
/third_party/rust/crates/rustix/tests/process/ |
H A D | priority.rs | 5 #[cfg(not(target_os = "freebsd"))] // FreeBSD's nice(3) doesn't return the old value. 8 let old = nice(0).unwrap(); in test_priorities() 13 assert_eq!(get_prio, old); in test_priorities() 21 if old < 19 { in test_priorities() 22 assert_eq!(old + 1, new); in test_priorities()
|
H A D | rlimit.rs | 15 let old = rustix::process::getrlimit(Resource::Core); in test_setrlimit() 20 assert_ne!(old, new); in test_setrlimit() 35 let old = match rustix::process::prlimit(None, Resource::Core, new.clone()) { in test_setrlimit() 41 assert_eq!(first, old); in test_setrlimit()
|
/third_party/mesa3d/src/mesa/main/ |
H A D | glspirv.c | 41 struct gl_spirv_module *old = *dest; in _mesa_spirv_module_reference() local 43 if (old && p_atomic_dec_zero(&old->RefCount)) in _mesa_spirv_module_reference() 44 free(old); in _mesa_spirv_module_reference() 56 struct gl_shader_spirv_data *old = *dest; in _mesa_shader_spirv_data_reference() local 58 if (old && p_atomic_dec_zero(&old->RefCount)) { in _mesa_shader_spirv_data_reference() 60 ralloc_free(old); in _mesa_shader_spirv_data_reference()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/htmldiff/ |
H A D | htmldiff.pl | 35 # -o - disable outputting of old text 81 # Improved handling of old text and changed styles. 95 # Added an option to turn off the display of old text. 149 # a block wrapped in control-b is old text 162 # my $old="<span class=\\\"diff-old-a\\\">deleted text: </span>%c'\012'%c'\001'%c'\012'%<%c'\012'%c'\001'%c'\012'"; 163 my $old="%c'\012'%c'\001'%c'\012'%<%c'\012'%c'\001'%c'\012'"; 168 $old = ""; 171 # my $old="%c'\002'<font color=\\\"purple\\\" size=\\\"-2\\\">deleted text:</font><s>%c'\012'%c'\001'%c'\012'%<%c'\012'%c'\001'%c'\012'</s>%c'\012'%c'\002'"; 178 $span[1]="<del class=\"diff-old\">"; [all...] |
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_fence.h | 82 struct lp_fence *old = *ptr; in lp_fence_reference() local 84 if (pipe_reference(&old->reference, &f->reference)) { in lp_fence_reference() 85 lp_fence_destroy(old); in lp_fence_reference()
|
/third_party/icu/tools/multi/c/ |
H A D | Makefile | 22 ICUVERS:=$(shell cd $(ICUS); ls icu4c*.tgz | cut -d- -f2 | sort | uniq | fgrep -v -f $(MULTICU_ROOT)/c/old-icu.txt) 23 ICU4JVERS:=$(shell cd $(ICUS); ls icu4j*.jar | cut -d- -f2 | cut -d. -f1 | sort | uniq | fgrep -v -f $(MULTICU_ROOT)/j/old-icu4j.txt) 56 -mv $(BLD)/r$* $(BLD)/r$*.old 57 -( rm -rf ./$(BLD)/r$*.old& ) 64 -mv $(BLD)/$* $(BLD)/$*.old 65 -( rm -rf ./$(BLD)/$*.old& )
|
/third_party/mesa3d/src/virtio/vulkan/ |
H A D | vn_common.h | 238 ASSERTED const int old = vn_refcount_fetch_add_relaxed(ref, 1); in vn_refcount_inc() local 239 assert(old >= 1); in vn_refcount_inc() 246 const int old = vn_refcount_fetch_sub_release(ref, 1); in vn_refcount_dec() local 247 assert(old >= 1); in vn_refcount_dec() 250 if (old == 1) in vn_refcount_dec() 253 return old == 1; in vn_refcount_dec()
|
/third_party/icu/icu4c/source/samples/ucnv/ |
H A D | flagcb.c | 53 FromUFLAGContext *old, *cloned; in flagCB_fromU() local 59 old = (FromUFLAGContext*)context; in flagCB_fromU() 62 memcpy(cloned, old, sizeof(FromUFLAGContext)); in flagCB_fromU() 65 printf("%p: my subcb=%p:%p\n", old, old->subCallback, in flagCB_fromU() 66 old->subContext); in flagCB_fromU()
|
/third_party/node/deps/v8/src/objects/ |
H A D | compressed-slots-inl.h | 90 Object CompressedObjectSlot::Release_CompareAndSwap(Object old, in Release_CompareAndSwap() argument 92 Tagged_t old_ptr = CompressTagged(old.ptr()); in Release_CompareAndSwap() 134 MaybeObject old, MaybeObject target) const { in Release_CompareAndSwap() 135 Tagged_t old_ptr = CompressTagged(old.ptr()); in Release_CompareAndSwap() 204 void OffHeapCompressedObjectSlot::Release_CompareAndSwap(Object old, in Release_CompareAndSwap() argument 206 Tagged_t old_ptr = CompressTagged(old.ptr()); in Release_CompareAndSwap() 133 Release_CompareAndSwap( MaybeObject old, MaybeObject target) const Release_CompareAndSwap() argument
|
/third_party/skia/third_party/externals/icu/source/samples/ucnv/ |
H A D | flagcb.c | 53 FromUFLAGContext *old, *cloned; in flagCB_fromU() local 59 old = (FromUFLAGContext*)context; in flagCB_fromU() 62 memcpy(cloned, old, sizeof(FromUFLAGContext)); in flagCB_fromU() 65 printf("%p: my subcb=%p:%p\n", old, old->subCallback, in flagCB_fromU() 66 old->subContext); in flagCB_fromU()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-object.hh | 59 item_t old = *item; in replace_or_insert() local 62 old.fini (); in replace_or_insert() 82 item_t old = *item; in remove() local 86 old.fini (); in remove() 126 item_t old = items[items.length - 1]; in fini() local 129 old.fini (); in fini()
|