Searched refs:old (Results 1 - 25 of 699) sorted by relevance

1234567891011>>

/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/chromium_org/third_party/polymer/components-chromium/core-layout/
H A Dcore-layout-extracted.js79 layoutContainerChanged: function(old) {
86 setLayoutClass: function(prefix, old, newValue) {
89 if (old) {
90 this.layoutContainer.classList.remove(prefix + old);
98 verticalChanged: function(old) {
99 old = old ? 'v' : 'h';
101 this.setLayoutClass('', old, vertical);
104 alignChanged: function(old) {
105 this.setLayoutClass('align-', old, thi
[all...]
/external/clang/test/SemaCXX/
H A Dconstexpr-turing.cpp19 constexpr Tape(const Tape &old, bool write) : argument
20 l(old.l), val(write), r(old.r) {}
21 constexpr Tape(const Tape &old, Dir dir) : argument
22 l(dir == L ? old.l ? old.l->l : 0 : &old),
23 val(dir == L ? old.l ? old.l->val : false
24 : old
30 update(const Tape &old, bool write) argument
31 move(const Tape &old, Dir dir) argument
[all...]
/external/chromium_org/courgette/
H A Dsimple_delta.h15 Status ApplySimpleDelta(SourceStream* old, SourceStream* delta,
18 Status GenerateSimpleDelta(SourceStream* old, SourceStream* target,
H A Dsimple_delta.cc29 Status ApplySimpleDelta(SourceStream* old, SourceStream* delta, argument
31 return BSDiffStatusToStatus(ApplyBinaryPatch(old, delta, target));
34 Status GenerateSimpleDelta(SourceStream* old, SourceStream* target, argument
36 VLOG(1) << "GenerateSimpleDelta " << old->Remaining()
38 return BSDiffStatusToStatus(CreateBinaryPatch(old, target, delta));
/external/libcxx/test/depr/exception.unexpected/set.unexpected/
H A Dset_unexpected.pass.cpp26 std::unexpected_handler old = std::set_unexpected(f1); local
28 assert(old);
33 (*old)();
H A Dget_unexpected.pass.cpp27 std::unexpected_handler old = std::get_unexpected(); local
29 assert(old);
37 (*old)();
/external/e2fsprogs/lib/ext2fs/
H A Dbrel.h37 errcode_t (*put)(ext2_brel brel, blk64_t old,
43 errcode_t (*get)(ext2_brel brel, blk64_t old,
55 errcode_t (*next)(ext2_brel brel, blk64_t *old,
62 errcode_t (*move)(ext2_brel brel, blk64_t old, blk_t new);
67 errcode_t (*delete)(ext2_brel brel, blk64_t old);
79 #define ext2fs_brel_put(brel, old, ent) ((brel)->put((brel), old, ent))
80 #define ext2fs_brel_get(brel, old, ent) ((brel)->get((brel), old, ent))
82 #define ext2fs_brel_next(brel, old, en
[all...]
H A Direl.h35 errcode_t (*put)(ext2_irel irel, ext2_ino_t old,
40 errcode_t (*get)(ext2_irel irel, ext2_ino_t old,
46 errcode_t (*get_by_orig)(ext2_irel irel, ext2_ino_t orig, ext2_ino_t *old,
58 errcode_t (*next)(ext2_irel irel, ext2_ino_t *old,
86 errcode_t (*move)(ext2_irel irel, ext2_ino_t old, ext2_ino_t new);
92 errcode_t (*delete)(ext2_irel irel, ext2_ino_t old);
103 #define ext2fs_irel_put(irel, old, ent) ((irel)->put((irel), old, ent))
104 #define ext2fs_irel_get(irel, old, ent) ((irel)->get((irel), old, en
[all...]
H A Dbrel_ma.c29 static errcode_t bma_put(ext2_brel brel, blk64_t old,
31 static errcode_t bma_get(ext2_brel brel, blk64_t old,
34 static errcode_t bma_next(ext2_brel brel, blk64_t *old,
36 static errcode_t bma_move(ext2_brel brel, blk64_t old, blk64_t new);
37 static errcode_t bma_delete(ext2_brel brel, blk64_t old);
104 static errcode_t bma_put(ext2_brel brel, blk64_t old, argument
110 if (old > ma->max_block)
112 ma->entries[(unsigned)old] = *ent;
116 static errcode_t bma_get(ext2_brel brel, blk64_t old, argument
122 if (old > m
136 bma_next(ext2_brel brel, blk64_t *old, struct ext2_block_relocate_entry *ent) argument
153 bma_move(ext2_brel brel, blk64_t old, blk64_t new) argument
167 bma_delete(ext2_brel brel, blk64_t old) argument
[all...]
H A Direl_ma.c26 static errcode_t ima_put(ext2_irel irel, ext2_ino_t old,
28 static errcode_t ima_get(ext2_irel irel, ext2_ino_t old,
30 static errcode_t ima_get_by_orig(ext2_irel irel, ext2_ino_t orig, ext2_ino_t *old,
33 static errcode_t ima_next(ext2_irel irel, ext2_ino_t *old,
39 static errcode_t ima_move(ext2_irel irel, ext2_ino_t old, ext2_ino_t new);
40 static errcode_t ima_delete(ext2_irel irel, ext2_ino_t old);
139 static errcode_t ima_put(ext2_irel irel, ext2_ino_t old,
148 if (old > ma->max_inode)
155 if (ma->entries[(unsigned) old].new == 0)
156 ent->orig = old;
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_update_shadow_word_inl.h20 old = LoadShadow(sp);
21 if (old.IsZero()) {
30 if (Shadow::Addr0AndSizeAreEqual(cur, old)) {
33 if (Shadow::TidsAreEqual(old, cur)) {
35 if (old.IsRWWeakerOrEqual(kAccessIsWrite, kIsAtomic))
40 if (HappensBefore(old, thr)) {
44 if (old.IsBothReadsOrAtomic(kAccessIsWrite, kIsAtomic))
49 if (Shadow::TwoRangesIntersect(old, cur, kAccessSize)) {
51 if (Shadow::TidsAreEqual(old, cur)) {
56 if (old
[all...]
/external/chromium_org/third_party/skia/bench/
H A Dbench_compare.py14 print '-o <file> the old bench output file.'
28 print ' o: old time'
39 def __init__(self, old, new):
40 self.old = old
42 self.diff = old.time - new.time
44 if old.time != 0:
45 diffp = self.diff / old.time
51 str(self.old),
64 old
[all...]
/external/skia/bench/
H A Dbench_compare.py14 print '-o <file> the old bench output file.'
28 print ' o: old time'
39 def __init__(self, old, new):
40 self.old = old
42 self.diff = old.time - new.time
44 if old.time != 0:
45 diffp = self.diff / old.time
51 str(self.old),
64 old
[all...]
/external/chromium_org/third_party/polymer/components-chromium/paper-tabs/
H A Dpaper-tabs-extracted.js27 selectedIndexChanged: function(old) {
38 if (this.nostretch || old === null || old === -1) {
46 if (old < this.selectedIndex) {
47 s.width = w + w * (this.selectedIndex - old) - m + '%';
49 s.width = w + w * (old - this.selectedIndex) - m + '%';
/external/tcpdump/
H A Dsetsignal.c77 struct sigaction old, new; local
83 if (sigaction(sig, &new, &old) < 0)
85 return (old.sa_handler);
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/svga/drm/
H A Dvmw_fence.c161 uint32_t old; local
167 old = p_atomic_read(&vfence->signalled);
171 if ((old & vflags) == vflags)
177 int32_t prev = old;
180 old = prev;
181 prev = p_atomic_cmpxchg(&vfence->signalled, old, old | vflags);
182 } while (prev != old);
206 uint32_t old; local
212 old
[all...]
/external/mesa3d/src/gallium/winsys/svga/drm/
H A Dvmw_fence.c161 uint32_t old; local
167 old = p_atomic_read(&vfence->signalled);
171 if ((old & vflags) == vflags)
177 int32_t prev = old;
180 old = prev;
181 prev = p_atomic_cmpxchg(&vfence->signalled, old, old | vflags);
182 } while (prev != old);
206 uint32_t old; local
212 old
[all...]
/external/chromium_org/third_party/polymer/components-chromium/core-splitter/
H A Dcore-splitter-extracted.js66 targetChanged: function(old) {
67 if (old) {
68 old.style[old.__splitterMinSize] = '';
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DLabeledList.java39 * Constructs a new instance that is a copy of the old instance.
41 * @param old instance to copy
43 public LabeledList(LabeledList old) { argument
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);
179 if (old != null) {
180 removeLabel(old
[all...]
/external/ipsec-tools/src/racoon/
H A Ddebugrm.h47 #define racoon_realloc(old, sz) realloc((old), (sz))
65 #define racoon_realloc(old, sz) \
66 DRM_realloc(__FILE__, __LINE__, __func__, (old), (sz))
89 #define vdup(old) \
90 DRM_vdup(__FILE__, __LINE__, __func__, (old))
91 #define vrealloc(old, sz) \
92 DRM_vrealloc(__FILE__, __LINE__, __func__, (old), (sz))
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dialloc.c46 icatalloc(old, new)
47 char * const old;
54 if (old == NULL)
57 return old;
58 else oldsize = strlen(old);
59 if ((result = irealloc(old, oldsize + newsize + 1)) != NULL)
/external/icu/icu4c/source/tools/tzcode/
H A Dialloc.c46 icatalloc(old, new)
47 char * const old;
54 if (old == NULL)
57 return old;
58 else oldsize = strlen(old);
59 if ((result = irealloc(old, oldsize + newsize + 1)) != NULL)
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dsigchain.c7 sigchain_fun *old; member in struct:sigchain_signal
24 ALLOC_GROW(s->old, s->n + 1, s->alloc);
25 s->old[s->n] = signal(sig, f);
26 if (s->old[s->n] == SIG_ERR)
39 if (signal(sig, s->old[s->n - 1]) == SIG_ERR)
/external/valgrind/main/drd/tests/
H A Dannotate_sem.c40 unsigned old, new; local
45 old = p->value;
46 new = old - 1;
49 } while (!old || !__sync_bool_compare_and_swap(&p->value, old, new));

Completed in 532 milliseconds

1234567891011>>