Searched defs:old (Results 1 - 25 of 351) sorted by relevance

1234567891011>>

/external/syslinux/com32/lib/
H A Dchrreplace.c3 /* Replace char 'old' by char 'new' in source */
4 void chrreplace(char *source, char old, char new) argument
8 if (source[0] == old) source[0]=new;
/external/libcxx/test/std/depr/exception.unexpected/set.unexpected/
H A Dget_unexpected.pass.cpp29 std::unexpected_handler old = std::get_unexpected(); local
31 assert(old);
39 (*old)();
H A Dset_unexpected.pass.cpp28 std::unexpected_handler old = std::set_unexpected(f1); local
30 assert(old);
35 (*old)();
/external/libcxx/test/std/experimental/memory/memory.resource.global/
H A Ddefault_resource.pass.cpp50 memory_resource *old = set_default_resource(expect); local
51 assert(old != nullptr);
52 assert(old == new_delete_resource());
60 memory_resource* old = set_default_resource(nullptr); local
61 assert(old == &R);
/external/tcpdump/
H A Dsetsignal.c72 struct sigaction old, new; local
78 if (sigaction(sig, &new, &old) < 0)
80 return (old.sa_handler);
/external/libcxx/test/libcxx/depr/exception.unexpected/
H A Dget_unexpected.pass.cpp30 std::unexpected_handler old = std::get_unexpected(); local
32 assert(old);
40 (*old)();
H A Dset_unexpected.pass.cpp28 std::unexpected_handler old = std::set_unexpected(f1); local
30 assert(old);
35 (*old)();
/external/boringssl/src/util/bot/go/
H A Denv.py33 old = os.environ.copy() variable
38 if old.get(key) != value:
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dsignal_segv_handler.cc32 struct sigaction a, old; local
34 memset(&old, 0, sizeof(old));
37 sigaction(SIGSEGV, &a, &old);
44 sigaction(SIGSEGV, &old, 0);
/external/icu/icu4c/source/tools/tzcode/
H A Dialloc.c11 icatalloc(char *const old, const char *const new) argument
17 if (old == NULL)
20 return old;
21 else oldsize = strlen(old);
22 if ((result = realloc(old, oldsize + newsize + 1)) != NULL)
/external/libcap/libcap/
H A Dcap_alloc.c61 char *_libcap_strdup(const char *old) argument
65 if (old == NULL) {
70 raw_data = malloc( sizeof(__u32) + strlen(old) + 1 );
77 strcpy((char *) raw_data, old);
/external/slf4j/integration/src/test/java/org/slf4j/
H A DCompatibilityAssertionTest.java36 PrintStream old = System.err; field in class:CompatibilityAssertionTest
50 System.setErr(old);
H A DMissingSingletonMethodAssertionTest.java35 PrintStream old = System.err; field in class:MissingSingletonMethodAssertionTest
49 System.setErr(old);
H A DVersionMismatchAssertionTest.java35 PrintStream old = System.err; field in class:VersionMismatchAssertionTest
49 System.setErr(old);
H A DIncompatibleMultiBindingAssertionTest.java36 PrintStream old = System.err; field in class:IncompatibleMultiBindingAssertionTest
50 System.setErr(old);
H A DMultiBindingAssertionTest.java36 PrintStream old = System.err; field in class:MultiBindingAssertionTest
50 System.setErr(old);
/external/clang/test/CodeGen/
H A Datomic.c5 int old; local
13 old = __sync_fetch_and_add(&val, 1);
16 old = __sync_fetch_and_sub(&valc, 2);
19 old = __sync_fetch_and_min(&val, 3);
22 old = __sync_fetch_and_max(&val, 4);
25 old = __sync_fetch_and_umin(&uval, 5u);
28 old = __sync_fetch_and_umax(&uval, 6u);
31 old = __sync_lock_test_and_set(&val, 7);
34 old = __sync_swap(&val, 8);
37 old
[all...]
/external/elfutils/libdw/
H A Dlibdw_alloc.c66 Dwarf_OOM old = dbg->oom_handler; local
68 return old;
/external/ltp/utils/ffsb-6.0-rc2/
H A Dlist.c47 void list_replace(struct list_head *old, struct list_head *new) argument
49 new->next = old->next;
51 new->prev = old->prev;
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_fence.h79 struct lp_fence *old = *ptr; local
81 if (pipe_reference(&old->reference, &f->reference)) {
82 lp_fence_destroy(old);
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_sampler_view.h94 struct svga_sampler_view *old = *ptr; local
98 svga_destroy_sampler_view_priv(old);
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_fence.c54 struct vc4_fence *old = *p; local
57 free(old);
/external/mesa3d/src/gallium/winsys/i915/drm/
H A Di915_drm_fence.c40 struct i915_drm_fence *old = (struct i915_drm_fence *)*ptr; local
44 if (old->bo)
45 drm_intel_bo_unreference(old->bo);
46 FREE(old);
/external/slf4j/slf4j-simple/src/test/java/org/slf4j/
H A DInvocationTest.java39 PrintStream old = System.err; field in class:InvocationTest
47 System.setErr(new SilentPrintStream(old));
52 System.setErr(old);
/external/strace/tests/
H A Drt_sigprocmask.c50 iterate(const char *const text, void *set, void *old, unsigned int size) argument
53 if (k_sigprocmask(SIG_UNBLOCK, set, old, size)) {
57 set, old, size);
61 text, old, size);
70 old += size;

Completed in 916 milliseconds

1234567891011>>