HomeSort by relevance Sort by last modified time
    Searched defs:old (Results 1 - 25 of 570) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/tcpdump/
setsignal.c 77 struct sigaction old, new; local
83 if (sigaction(sig, &new, &old) < 0)
85 return (old.sa_handler);
  /external/libcxx/test/depr/exception.unexpected/set.unexpected/
get_unexpected.pass.cpp 27 std::unexpected_handler old = std::get_unexpected(); local
29 assert(old);
37 (*old)();
set_unexpected.pass.cpp 26 std::unexpected_handler old = std::set_unexpected(f1); local
28 assert(old);
33 (*old)();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/exception.unexpected/set.unexpected/
get_unexpected.pass.cpp 27 std::unexpected_handler old = std::get_unexpected(); local
29 assert(old);
40 (*old)();
set_unexpected.pass.cpp 26 std::unexpected_handler old = std::set_unexpected(f1); local
28 assert(old);
36 (*old)();
  /external/elfutils/0.153/libdw/
libdw_alloc.c 87 Dwarf_OOM old = dbg->oom_handler; local
89 return old;
  /bionic/tests/
locale_test.cpp 103 locale_t old = uselocale(n); local
104 EXPECT_TRUE(old == original);
  /external/chromium_org/chrome/browser/metrics/variations/
variations_request_scheduler_mobile_unittest.cc 41 base::Time old = base::Time::Now() - base::TimeDelta::FromHours(24); local
43 old.ToInternalValue());
84 base::Time old = base::Time::Now() - base::TimeDelta::FromHours(24); local
86 old.ToInternalValue());
111 base::Time old = base::Time::Now() - base::TimeDelta::FromHours(24); local
113 old.ToInternalValue());
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/sw/
i915_sw_fence.c 27 struct i915_sw_fence *old = (struct i915_sw_fence *)*ptr; local
31 FREE(old);
  /external/clang/test/CodeGen/
atomic.c 5 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 = __sync_val_compare_and_swap(&val, 4, 1976)
    [all...]
  /external/mesa3d/src/gallium/winsys/i915/sw/
i915_sw_fence.c 27 struct i915_sw_fence *old = (struct i915_sw_fence *)*ptr; local
31 FREE(old);
  /dalvik/dexgen/src/com/android/dexgen/util/
LabeledList.java 40 * Constructs a new instance that is a copy of the old instance.
42 * @param old instance to copy
44 protected LabeledList(LabeledList old) {
45 super(old.size());
46 labelToIndex = old.labelToIndex.mutableCopy();
48 int sz = old.size();
51 Object one = old.get0(i);
149 LabeledItem old = (LabeledItem) getOrNull0(n); local
153 if (old != null) {
154 removeLabel(old.getLabel())
    [all...]
  /dalvik/dx/src/com/android/dx/util/
LabeledList.java 39 * Constructs a new instance that is a copy of the old instance.
41 * @param old instance to copy
43 public LabeledList(LabeledList old) {
44 super(old.size());
45 labelToIndex = old.labelToIndex.mutableCopy();
47 int sz = old.size();
50 Object one = old.get0(i);
175 LabeledItem old = (LabeledItem) getOrNull0(n); local
179 if (old != null) {
180 removeLabel(old.getLabel())
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
LabeledList.java 39 * Constructs a new instance that is a copy of the old instance.
41 * @param old instance to copy
43 public LabeledList(LabeledList old) {
44 super(old.size());
45 labelToIndex = old.labelToIndex.mutableCopy();
47 int sz = old.size();
50 Object one = old.get0(i);
175 LabeledItem old = (LabeledItem) getOrNull0(n); local
179 if (old != null) {
180 removeLabel(old.getLabel())
    [all...]
  /art/runtime/
handle.h 124 T* old = down_cast<T*>(ref->AsMirrorPtr()); local
126 return old;
  /external/chromium_org/third_party/icu/source/samples/ucnv/
flagcb.c 49 FromUFLAGContext *old, *cloned; local
55 old = (FromUFLAGContext*)context;
58 memcpy(cloned, old, sizeof(FromUFLAGContext));
61 printf("%p: my subcb=%p:%p\n", old, old->subCallback,
62 old->subContext);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_fence.h 79 struct lp_fence *old = *ptr; local
81 if (pipe_reference(&old->reference, &f->reference)) {
82 lp_fence_destroy(old);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_sampler_view.h 92 struct svga_sampler_view *old = *ptr; local
96 svga_destroy_sampler_view_priv(old);
  /external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/drm/
i915_drm_fence.c 40 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/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeObject.cpp 31 const unsigned char* old = fStr.fBuffer; local
44 delete[] old;
  /external/chromium_org/v8/src/compiler/
node-cache.cc 56 // Insert the old entries into the new block.
58 Entry* old = &old_entries[i]; local
59 if (old->value_ != NULL) {
60 int hash = NodeCacheHash(old->key_);
66 entry->key_ = old->key_;
67 entry->value_ = old->value_;
  /external/clang/include/clang/Sema/
SemaInternal.h 65 SourceLocation &old = SemaRef.UndefinedButUsed[Var->getCanonicalDecl()]; local
66 if (old.isInvalid()) old = Loc;
  /external/clang/test/SemaCXX/
enable_if.cpp 36 __attribute__((deprecated)) constexpr int old() { return 0; } // expected-note2{{'old' has been explicitly marked deprecated here}} function
37 void deprec1(int i) __attribute__((enable_if(old() == 0, "chosen when old() is zero"))); // expected-warning{{'old' is deprecated}}
38 void deprec2(int i) __attribute__((enable_if(old() == 0, "chosen when old() is zero"))); // expected-warning{{'old' is deprecated}}
  /external/dhcpcd/
bind.c 63 sigset_t old; local
70 sigprocmask(SIG_SETMASK, &full, &old);
115 sigprocmask(SIG_SETMASK, &old, NULL);
136 free(state->old);
137 state->old = state->new;
208 if (state->old) {
209 if (state->old->yiaddr == state->new->yiaddr &&
  /external/icu/icu4c/source/samples/ucnv/
flagcb.c 49 FromUFLAGContext *old, *cloned; local
55 old = (FromUFLAGContext*)context;
58 memcpy(cloned, old, sizeof(FromUFLAGContext));
61 printf("%p: my subcb=%p:%p\n", old, old->subCallback,
62 old->subContext);

Completed in 2565 milliseconds

1 2 3 4 5 6 7 8 91011>>