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

12345678

/external/tcpdump/
H A Dsetsignal.c77 struct sigaction old, new; local
81 if (sigaction(sig, &new, &old) < 0)
83 return (old.sa_handler);
/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/dhcpcd/
H A Dbind.c63 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/elfutils/libdw/
H A Dlibdw_alloc.c90 Dwarf_OOM old = dbg->oom_handler; local
92 return old;
/external/kernel-headers/original/asm-generic/bitops/
H A Dnon-atomic.h52 * __test_and_set_bit - Set a bit and return its old value
64 unsigned long old = *p; local
66 *p = old | mask;
67 return (old & mask) != 0;
71 * __test_and_clear_bit - Clear a bit and return its old value
83 unsigned long old = *p; local
85 *p = old & ~mask;
86 return (old & mask) != 0;
95 unsigned long old = *p; local
97 *p = old
[all...]
H A Datomic.h121 * test_and_set_bit - Set a bit and return its old value
133 unsigned long old; local
137 old = *p;
138 *p = old | mask;
141 return (old & mask) != 0;
145 * test_and_clear_bit - Clear a bit and return its old value
157 unsigned long old; local
161 old = *p;
162 *p = old & ~mask;
165 return (old
180 unsigned long old; local
[all...]
/external/linux-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/webkit/Source/WebCore/svg/properties/
H A DSVGAnimatedPropertySynchronizer.h39 Attribute* old = namedAttrMap->getAttributeItem(attrName); local
40 if (old && value.isNull())
41 namedAttrMap->removeAttribute(old->name());
42 else if (!old && !value.isNull())
44 else if (old && !value.isNull())
45 old->setValue(value);
/external/blktrace/
H A Drbtree.c233 struct rb_node *old = node, *left; local
244 if (parent == old) {
250 node->rb_parent_color = old->rb_parent_color;
251 node->rb_right = old->rb_right;
252 node->rb_left = old->rb_left;
254 if (rb_parent(old))
256 if (rb_parent(old)->rb_left == old)
257 rb_parent(old)->rb_left = node;
259 rb_parent(old)
[all...]
/external/clang/test/SemaCXX/
H A Dconstexpr-turing.cpp18 constexpr Tape(const Tape &old, bool write) : argument
19 l(old.l), val(write), r(old.r) {}
20 constexpr Tape(const Tape &old, Dir dir) : argument
21 l(dir == L ? old.l ? old.l->l : 0 : &old),
22 val(dir == L ? old.l ? old.l->val : false
23 : old
29 update(const Tape &old, bool write) argument
30 move(const Tape &old, Dir dir) argument
[all...]
/external/dbus/dbus/
H A Ddbus-resources.c151 long old = counter->size_value; local
157 old, delta, counter->size_value);
161 ((old < counter->notify_size_guard_value &&
163 (old >= counter->notify_size_guard_value &&
181 long old = counter->unix_fd_value; local
187 old, delta, counter->unix_fd_value);
191 ((old < counter->notify_unix_fd_guard_value &&
193 (old >= counter->notify_unix_fd_guard_value &&
/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/dropbear/
H A Dsshpty.c269 void *old; local
276 /* First disconnect from the old controlling tty. */
313 old = mysignal(SIGHUP, SIG_IGN);
315 mysignal(SIGHUP, old);
/external/e2fsprogs/lib/ext2fs/
H A Dbrel_ma.c29 static errcode_t bma_put(ext2_brel brel, blk_t old,
31 static errcode_t bma_get(ext2_brel brel, blk_t old,
34 static errcode_t bma_next(ext2_brel brel, blk_t *old,
36 static errcode_t bma_move(ext2_brel brel, blk_t old, blk_t new);
37 static errcode_t bma_delete(ext2_brel brel, blk_t old);
104 static errcode_t bma_put(ext2_brel brel, blk_t old, argument
110 if (old > ma->max_block)
112 ma->entries[(unsigned)old] = *ent;
116 static errcode_t bma_get(ext2_brel brel, blk_t old, argument
122 if (old > m
136 bma_next(ext2_brel brel, blk_t *old, struct ext2_block_relocate_entry *ent) argument
153 bma_move(ext2_brel brel, blk_t old, blk_t new) argument
167 bma_delete(ext2_brel brel, blk_t old) argument
[all...]
/external/elfutils/libdwfl/
H A Dsegment.c97 Dwfl_Module **old = dwfl->lookup_module; local
102 free (old);
/external/icu4c/samples/ucnv/
H A Dflagcb.c49 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/openssh/
H A Dsshpty.c108 void *old; local
135 /* First disconnect from the old controlling tty. */
166 old = signal(SIGHUP, SIG_IGN);
168 signal(SIGHUP, old);
/external/quake/quake/src/QW/client/
H A Dgl_refrag.c53 efrag_t *ef, *old, *walk, **prev; local
74 old = ef;
78 old->entnext = cl.free_efrags;
79 cl.free_efrags = old;
H A Dr_efrag.c54 efrag_t *ef, *old, *walk, **prev; local
75 old = ef;
79 old->entnext = cl.free_efrags;
80 cl.free_efrags = old;
/external/quake/quake/src/WinQuake/
H A Dgl_refrag.cpp53 efrag_t *ef, *old, *walk, **prev; local
74 old = ef;
78 old->entnext = cl.free_efrags;
79 cl.free_efrags = old;
H A Dr_efrag.cpp54 efrag_t *ef, *old, *walk, **prev; local
75 old = ef;
79 old->entnext = cl.free_efrags;
80 cl.free_efrags = old;
/external/v8/src/
H A Datomicops_internals_mips_gcc.h45 // Always return the old value of "*ptr"
73 Atomic32 temp, old; local
77 "ll %1, %2\n" // old = *ptr
83 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
87 return old;
/external/valgrind/main/helgrind/tests/
H A Dannotate_hbefore.c29 UWord old, success; local
31 /* Fetch the old value, and set the reservation */
34 : /*out*/ "=b"(old)
39 /* If the old value isn't as expected, we've had it */
40 if (old != expected) return 0;
62 UWord old, success; local
64 /* Fetch the old value, and set the reservation */
67 : /*out*/ "=b"(old)
72 /* If the old value isn't as expected, we've had it */
73 if (old !
143 UWord old, success; local
194 UWord old = *w; local
[all...]
/external/blktrace/btt/
H A Dlist.h217 * list_replace - replace old entry by new one
218 * @old : the element to be replaced
221 * If @old was empty, it will be overwritten.
223 static inline void list_replace(struct list_head *old, argument
226 new->next = old->next;
228 new->prev = old->prev;
232 static inline void list_replace_init(struct list_head *old, argument
235 list_replace(old, new);
236 INIT_LIST_HEAD(old);
/external/bsdiff/
H A Dbspatch.c67 u_char *old, *new; local
138 ((old=malloc(oldsize+1))==NULL) ||
140 (read(fd,old,oldsize)!=oldsize) ||
165 /* Add old data to diff string */
168 new[newpos+i]+=old[oldpos+i];
202 free(old);

Completed in 3201 milliseconds

12345678