Home
last modified time | relevance | path

Searched refs:old (Results 151 - 175 of 600) sorted by relevance

12345678910>>...24

/third_party/musl/src/signal/x32/
H A Dsetitimer.c4 int setitimer(int which, const struct itimerval *restrict new, struct itimerval *restrict old) in setitimer() argument
6 return syscall(SYS_setitimer, which, new, old); in setitimer()
H A Dgetitimer.c4 int getitimer(int which, struct itimerval *old) in getitimer() argument
6 return syscall(SYS_getitimer, which, old); in getitimer()
/third_party/musl/src/mq/
H A Dmq_setattr.c4 int mq_setattr(mqd_t mqd, const struct mq_attr *restrict new, struct mq_attr *restrict old) in mq_setattr() argument
6 return syscall(SYS_mq_getsetattr, mqd, new, old); in mq_setattr()
/third_party/musl/porting/liteos_a/user/src/signal/
H A Dgetitimer.c4 int getitimer(int which, struct itimerval *old) in getitimer() argument
6 return syscall(SYS_getitimer, which, old); in getitimer()
H A Dsetitimer.c7 int setitimer(int which, const struct itimerval *restrict new, struct itimerval *restrict old) in setitimer() argument
9 return syscall(SYS_setitimer, which, new, old); in setitimer()
H A Dsigaltstack.c7 int sigaltstack(const stack_t *restrict ss, stack_t *restrict old) in sigaltstack() argument
20 return syscall(SYS_sigaltstack, ss, old); in sigaltstack()
/third_party/ffmpeg/libavfilter/
H A Df_drawgraph.c78 {"replace", "replace old columns with new", OFFSET(slide), AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "slide"},
218 int j, y, x, old; in filter_frame() local
278 old = AV_RN32(out->data[0] + y * out->linesize[0] + x * 4); in filter_frame()
280 if (old != bg && in filter_frame()
281 (AV_RN32(out->data[0] + j * out->linesize[0] + x * 4) != old) || in filter_frame()
282 AV_RN32(out->data[0] + FFMIN(j+1, outlink->h - 1) * out->linesize[0] + x * 4) != old) { in filter_frame()
358 int j, y, x, old; in request_frame() local
377 old = AV_RN32(out->data[0] + y * out->linesize[0] + x * 4); in request_frame()
379 if (old != bg && in request_frame()
380 (AV_RN32(out->data[0] + j * out->linesize[0] + x * 4) != old) || in request_frame()
[all...]
/third_party/node/deps/v8/src/compiler/
H A Dpersistent-map.h382 const FocusedTree* old = FindHash(key_hash, &path, &length);
384 if (!(GetFocusedValue(old, key) != value)) return;
385 if (old && !(old->more == nullptr && old->key_value.key() == key)) {
387 if (old->more) {
388 *more = *old->more;
390 more->erase(old->key_value.key());
391 more->emplace(old->key_value.key(), old
341 DCHECK(old_first < first_); } if (second_current_) { ++second_; DCHECK(old_second < second_); } return *this = double_iterator(first_, second_); } double_iterator(iterator first, iterator second) : first_(first), second_(second) { if (first_ == second_) { first_current_ = second_current_ = true; } else if (first_ < second_) { first_current_ = true; second_current_ = false; } else { DCHECK(second_ < first_); first_current_ = false; second_current_ = true; } } bool operator!=(const double_iterator& other) { return first_ != other.first_ || second_ != other.second_; } bool is_end() const { return first_.is_end() && second_.is_end(); } private: iterator first_; iterator second_; bool first_current_; bool second_current_; }; template <class Key, class Value, class Hasher> void PersistentMap<Key, Value, Hasher>::Set(Key key, Value value) { HashValue key_hash = HashValue(Hasher()(key)); std::array<const FocusedTree*, kHashBits> path; int length = 0; const FocusedTree* old = FindHash(key_hash, &path, &length); ZoneMap<Key, Value>* more = nullptr; if (!(GetFocusedValue(old, key) != value)) return; if (old && !(old->more == nullptr && old->key_value.key() == key)) { more = zone_->New<ZoneMap<Key, Value>>(zone_); if (old->more) operator ++() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSparseBitVector.h103 bool old = test(Idx);
104 if (!old) {
174 BitWord old = changed ? 0 : Bits[i];
177 if (!changed && old != Bits[i])
201 BitWord old = changed ? 0 : Bits[i];
207 if (!changed && old != Bits[i])
224 BitWord old = changed ? 0 : Bits[i];
230 if (!changed && old != Bits[i])
532 bool old = test(Idx);
533 if (!old) {
[all...]
/third_party/mbedtls/library/
H A Dmemory_buffer_alloc.c374 memory_header *hdr, *old = NULL; in buffer_alloc_free() local
425 old = hdr; in buffer_alloc_free()
432 memset(old, 0, sizeof(memory_header)); in buffer_alloc_free()
442 old = hdr->next; in buffer_alloc_free()
457 hdr->prev_free = old->prev_free; in buffer_alloc_free()
458 hdr->next_free = old->next_free; in buffer_alloc_free()
474 memset(old, 0, sizeof(memory_header)); in buffer_alloc_free()
480 if (old == NULL) { in buffer_alloc_free()
/third_party/node/deps/v8/src/heap/cppgc/
H A Dstats-collector.cc315 const size_t old = in IncrementDiscardedMemory() local
317 DCHECK_GE(old + value, old); in IncrementDiscardedMemory()
318 USE(old); in IncrementDiscardedMemory()
322 const size_t old = in DecrementDiscardedMemory() local
324 DCHECK_GE(old, old - value); in DecrementDiscardedMemory()
325 USE(old); in DecrementDiscardedMemory()
/third_party/musl/src/signal/
H A Dsigprocmask.c4 int sigprocmask(int how, const sigset_t *restrict set, sigset_t *restrict old) in sigprocmask() argument
6 int r = pthread_sigmask(how, set, old); in sigprocmask()
H A Dsigaltstack.c6 int sigaltstack(const stack_t *restrict ss, stack_t *restrict old) in sigaltstack() argument
19 return syscall(SYS_sigaltstack, ss, old); in sigaltstack()
/third_party/ltp/tools/sparse/sparse-src/
H A Dflow.c31 int remove_phisources(struct basic_block *par, struct basic_block *old) in remove_phisources() argument
36 FOR_EACH_PTR(old->insns, insn) { in remove_phisources()
92 struct basic_block *old, in rewrite_branch()
95 if (*ptr != old || new == old || !bb->ep) in rewrite_branch()
102 replace_bb_in_list(&bb->children, old, new, 1); in rewrite_branch()
103 remove_bb_from_list(&old->parents, bb, 1); in rewrite_branch()
664 static int rewrite_parent_branch(struct basic_block *bb, struct basic_block *old, struct basic_block *new) in rewrite_parent_branch() argument
673 if (old == new) in rewrite_parent_branch()
678 changed |= rewrite_branch(bb, &insn->bb_false, old, ne in rewrite_parent_branch()
90 rewrite_branch(struct basic_block *bb, struct basic_block **ptr, struct basic_block *old, struct basic_block *new) rewrite_branch() argument
[all...]
H A Devaluate.c250 struct symbol *old = expr->ctype; in is_same_type() local
254 old = base_type(old, &oldmod, &oldas); in is_same_type()
258 if (old == new && oldas == newas) { in is_same_type()
315 static struct expression * cast_to(struct expression *old, struct symbol *type) in cast_to() argument
319 warn_for_different_enum_types (old->pos, old->ctype, type); in cast_to()
321 if (old->ctype != &null_ctype && is_same_type(old, type)) in cast_to()
322 return old; in cast_to()
2517 next_designators(struct expression *old, struct symbol *ctype, struct expression *e, struct expression **v) next_designators() argument
2856 struct expression *old = expr->cast_expression; cast_to_bool() local
2878 cast_flags(struct expression *expr, struct expression *old) cast_flags() argument
[all...]
H A Dinline.c294 struct asm_operand *old; in copy_asm_operands() local
296 FOR_EACH_PTR(in, old) { in copy_asm_operands()
298 new->name = old->name; in copy_asm_operands()
299 new->constraint = copy_expression(old->constraint); in copy_asm_operands()
300 new->expr = copy_expression(old->expr); in copy_asm_operands()
302 } END_FOR_EACH_PTR(old); in copy_asm_operands()
306 static void set_replace(struct symbol *old, struct symbol *new) in set_replace() argument
308 new->replace = old; in set_replace()
309 old->replace = new; in set_replace()
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dbss.c474 static int are_ies_equal(const struct wpa_bss *old, in are_ies_equal() argument
484 old_ie = wpa_bss_get_vendor_ie(old, ie); in are_ies_equal()
489 old_ie_buff = wpa_bss_get_vendor_ie_multi(old, ie); in are_ies_equal()
496 old_ie = wpa_bss_get_ie(old, ie); in are_ies_equal()
530 static u32 wpa_bss_compare_res(const struct wpa_bss *old, in wpa_bss_compare_res() argument
534 int caps_diff = old->caps ^ new_res->caps; in wpa_bss_compare_res()
536 if (old->freq != new_res->freq) in wpa_bss_compare_res()
539 if (old->level != new_res->level) in wpa_bss_compare_res()
548 if (old->ie_len == new_res->ie_len && in wpa_bss_compare_res()
549 os_memcmp(old in wpa_bss_compare_res()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dbss.c539 static int are_ies_equal(const struct wpa_bss *old, in are_ies_equal() argument
549 old_ie = wpa_bss_get_vendor_ie(old, ie); in are_ies_equal()
554 old_ie_buff = wpa_bss_get_vendor_ie_multi(old, ie); in are_ies_equal()
561 old_ie = wpa_bss_get_ie(old, ie); in are_ies_equal()
595 static u32 wpa_bss_compare_res(const struct wpa_bss *old, in wpa_bss_compare_res() argument
599 int caps_diff = old->caps ^ new_res->caps; in wpa_bss_compare_res()
601 if (old->freq != new_res->freq) in wpa_bss_compare_res()
604 if (old->level != new_res->level) in wpa_bss_compare_res()
613 if (old->ie_len == new_res->ie_len && in wpa_bss_compare_res()
614 os_memcmp(wpa_bss_ie_ptr(old), new_re in wpa_bss_compare_res()
[all...]
/third_party/littlefs/scripts/
H A Dstructs.py71 old = other.x if other else 0
72 diff = new - old
82 old = other.x if other else 0
83 if m.isinf(new) and m.isinf(old):
87 elif m.isinf(old):
89 elif not old and not new:
91 elif not old:
94 return (new-old) / old
/third_party/mesa3d/src/util/
H A Dralloc.c159 ralloc_header *child, *old, *info; in resize() local
161 old = get_header(ptr); in resize()
162 info = realloc(old, align64(size + sizeof(ralloc_header), in resize()
169 if (info != old && info->parent != NULL) { in resize()
170 if (info->parent->child == old) in resize()
741 linear_realloc(void *parent, void *old, unsigned new_size) in linear_realloc() argument
748 if (unlikely(!old)) in linear_realloc()
751 old_size = ((linear_size_chunk*)old)[-1].size; in linear_realloc()
754 memcpy(new_ptr, old, MIN2(old_size, new_size)); in linear_realloc()
/third_party/node/test/parallel/
H A Dtest-process-umask-mask.js22 const old = process.umask();
28 process.umask(old);
/third_party/musl/libc-test/src/functionalext/supplement/signal/
H A D__getitimer_time64.c63 struct itimerval old; in getitimer_time64_0100() local
64 int result = __getitimer_time64(ITIMER_REAL, &old); in getitimer_time64_0100()
/third_party/musl/src/malloc/
H A Dlite_malloc.c17 /* This function returns true if the interval [old,new]
23 static int traverses_stack_p(uintptr_t old, uintptr_t new) in traverses_stack_p() argument
30 if (new>a && old<b) return 1; in traverses_stack_p()
34 if (new>a && old<b) return 1; in traverses_stack_p()
/third_party/musl/porting/linux/user/src/malloc/
H A Dlite_malloc.c17 /* This function returns true if the interval [old,new]
23 static int traverses_stack_p(uintptr_t old, uintptr_t new) in traverses_stack_p() argument
30 if (new>a && old<b) return 1; in traverses_stack_p()
34 if (new>a && old<b) return 1; in traverses_stack_p()
/third_party/mesa3d/src/vulkan/registry/
H A Dupdate-aliases.py82 for old, new in aliases.items():
84 aliases[old] = aliases[new]
128 ";".join([f's/{old}/{new}/g' for old, new in aliases.items()]),

Completed in 18 milliseconds

12345678910>>...24