HomeSort by relevance Sort by last modified time
    Searched refs:old (Results 276 - 300 of 1113) sorted by null

<<11121314151617181920>>

  /external/python/cpython2/Lib/lib2to3/tests/
test_fixers.py     [all...]
  /external/python/cpython3/Lib/lib2to3/tests/
test_fixers.py     [all...]
  /external/mesa3d/src/util/
ralloc.c 165 ralloc_header *child, *old, *info; local
167 old = get_header(ptr);
168 info = realloc(old, size + sizeof(ralloc_header));
174 if (info != old && info->parent != NULL) {
175 if (info->parent->child == old)
750 linear_realloc(void *parent, void *old, unsigned new_size)
757 if (unlikely(!old))
760 old_size = ((linear_size_chunk*)old)[-1].size;
763 memcpy(new_ptr, old, MIN2(old_size, new_size));
  /external/v8/src/compiler/
persistent-map.h 382 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)[old->key_value.key()] = old->key_value.value();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
gcmodule.c 497 * CAUTION: An instance of an old-style class has to be checked for a
595 * weakrefs with callbacks may be moved into the `old` generation. Objects
596 * moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in
601 handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old)
733 gc_list_move(gc, old);
773 * merged into the old list regardless.
778 handle_finalizers(PyGC_Head *finalizers, PyGC_Head *old)
796 gc_list_merge(finalizers, old);
805 delete_garbage(PyGC_Head *collectable, PyGC_Head *old)
826 gc_list_move(gc, old);
878 PyGC_Head *old; \/* next older generation *\/ local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
gcmodule.c 460 * CAUTION: An instance of an old-style class has to be checked for a
544 * weakrefs with callbacks may be moved into the `old` generation. Objects
545 * moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in
550 handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old)
682 gc_list_move(gc, old);
722 * merged into the old list regardless.
727 handle_finalizers(PyGC_Head *finalizers, PyGC_Head *old)
745 gc_list_merge(finalizers, old);
754 delete_garbage(PyGC_Head *collectable, PyGC_Head *old)
775 gc_list_move(gc, old);
827 PyGC_Head *old; \/* next older generation *\/ local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
blkmap64_rb.c 91 struct bmap_rb_extent *ext, *old = NULL; local
112 if (old) {
113 if (old->start > ext->start) {
116 old->start, old->start + old->count,
117 old->count);
124 if ((old->start + old->count) >= ext->start) {
128 old->start, old->start + old->count
    [all...]
  /external/libevent/
evmap.c 72 allocated, and old numbers get used. For these platforms, we
272 short res = 0, old = 0; local
294 old |= EV_READ;
296 old |= EV_WRITE;
298 old |= EV_CLOSED;
331 old, (ev->ev_events & EV_ET) | res, extra) == -1)
353 short res = 0, old = 0; local
372 old |= EV_READ;
374 old |= EV_WRITE;
376 old |= EV_CLOSED
    [all...]
epoll.c 113 short old, short events, void *p);
115 short old, short events, void *p);
151 /* Initialize the kernel queue using the old interface. (The
251 "Old events were %d; " \
376 short old, short events, void *p)
380 ch.old_events = old;
397 short old, short events, void *p)
401 ch.old_events = old;
  /external/python/cpython2/Modules/
gcmodule.c 497 * CAUTION: An instance of an old-style class has to be checked for a
595 * weakrefs with callbacks may be moved into the `old` generation. Objects
596 * moved into `old` have gc_refs set to GC_REACHABLE; the objects remaining in
601 handle_weakrefs(PyGC_Head *unreachable, PyGC_Head *old)
733 gc_list_move(gc, old);
773 * merged into the old list regardless.
776 handle_finalizers(PyGC_Head *finalizers, PyGC_Head *old)
794 gc_list_merge(finalizers, old);
802 delete_garbage(PyGC_Head *collectable, PyGC_Head *old)
823 gc_list_move(gc, old);
875 PyGC_Head *old; \/* next older generation *\/ local
    [all...]
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestPathHeader.java 366 PathHeader old = null; local
371 if (old == null) {
374 } else if (p.getSectionId() == old.getSectionId()
375 && p.getPageId() == old.getPageId()
376 && p.getHeader().equals(old.getHeader())) {
384 old = p;
632 String old = headerToPath.get(p); local
633 if (old == null) {
635 } else if (!old.equals(path)) {
639 pathHeaderFactory.fromPath(old, failuresOld)
882 PathHeader old = uniqueness.get(visible); local
1192 PathHeader old = goodHeaders.put(ph, ph); local
    [all...]
  /external/cldr/tools/scripts/
cldrres.mk 15 ## 3. from icu/source/data type: 'make cldr-clean-old' to get rid of the non-CLDR files
63 cldr-clean-old: cldr-clean-lists
74 #ifneq ($(patsubst %cldr-clean-old,,$(MAKECMDGOALS)),)
  /external/mesa3d/src/glx/
indirect_glx.c 134 indirect_bind_context(struct glx_context *gc, struct glx_context *old,
141 if (old != &dummyContext && !old->isDirect && old->psc->dpy == dpy) {
142 tag = old->currentContextTag;
143 old->currentContextTag = 0;
  /external/python/cpython3/Objects/clinic/
bytearrayobject.c.h 123 "replace($self, old, new, count=-1, /)\n"
126 "Return a copy with all occurrences of substring old replaced by new.\n"
139 bytearray_replace_impl(PyByteArrayObject *self, Py_buffer *old,
146 Py_buffer old = {NULL, NULL}; local
151 &old, &new, &count)) {
154 return_value = bytearray_replace_impl(self, &old, &new, count);
157 /* Cleanup for old */
158 if (old.obj) {
159 PyBuffer_Release(&old);
  /external/syzkaller/vendor/google.golang.org/appengine/internal/
api_common.go 110 old := os.Getenv(v.key)
112 v.value = old
114 return func() { // Restore old environment after the test completes.
  /external/compiler-rt/lib/tsan/rtl/
tsan_rtl.cc 564 Shadow cur, Shadow old) {
566 thr->racy_state[1] = old.raw();
575 static inline bool HappensBefore(Shadow old, ThreadState *thr) {
576 return thr->clock.get(old.TidWithIgnore()) >= old.epoch();
601 Shadow old(0);
632 HandleRace(thr, shadow_mem, cur, old);
661 Shadow old(LoadShadow(&s[i]));
662 if (Shadow::Addr0AndSizeAreEqual(cur, old) &&
663 old.TidWithIgnore() == cur.TidWithIgnore() &
    [all...]
  /external/ipsec-tools/src/racoon/
grabmyaddr.c 339 struct myaddrs *p, *q, *old; local
354 old = lcconf->myaddrs;
417 q = find_myaddr(old, p);
433 clear_myaddr(&old);
442 struct myaddrs *p, *q, *old;
486 old = lcconf->myaddrs;
542 q = find_myaddr(old, p);
560 clear_myaddr(&old);
800 dupmyaddr(struct myaddrs *old)
812 memcpy (new, old, sizeof (*new))
    [all...]
  /external/libevent/WIN32-Code/
tree.h 513 struct type *child, *parent, *old = elm; \
537 if (RB_PARENT(elm, field) == old) \
539 (elm)->field = (old)->field; \
540 if (RB_PARENT(old, field)) { \
541 if (RB_LEFT(RB_PARENT(old, field), field) == old)\
542 RB_LEFT(RB_PARENT(old, field), field) = elm;\
544 RB_RIGHT(RB_PARENT(old, field), field) = elm;\
545 RB_AUGMENT(RB_PARENT(old, field)); \
548 RB_PARENT(RB_LEFT(old, field), field) = elm;
    [all...]
  /external/openssh/openbsd-compat/
sys-tree.h 530 struct type *child, *parent, *old = elm; \
554 if (RB_PARENT(elm, field) == old) \
556 (elm)->field = (old)->field; \
557 if (RB_PARENT(old, field)) { \
558 if (RB_LEFT(RB_PARENT(old, field), field) == old)\
559 RB_LEFT(RB_PARENT(old, field), field) = elm;\
561 RB_RIGHT(RB_PARENT(old, field), field) = elm;\
562 RB_AUGMENT(RB_PARENT(old, field)); \
565 RB_PARENT(RB_LEFT(old, field), field) = elm;
    [all...]
  /external/tensorflow/tensorflow/python/ops/distributions/
bijector_impl.py 105 def _merge_dicts(self, old=None, new=None):
107 old = dict() if old is None else old
110 val = old.get(k, None)
114 k, old[k], v))
115 old[k] = v
116 return old
118 def _merge(self, old, new):
120 if old is None
    [all...]
  /bionic/tests/
locale_test.cpp 114 locale_t old = uselocale(n); local
115 EXPECT_TRUE(old == original);
  /cts/tests/tests/util/src/android/util/cts/
TimeUtilsTest.java 85 String[] old = new String[] { local
89 for (String name : old) {
  /external/antlr/runtime/ObjC/Framework/
BaseTreeAdaptor.h 83 * old=^(nil a b c), new=r yields ^(r a b c)
84 * old=^(a b c), new=r yields ^(r ^(a b c))
89 * old=^(nil a b c), new=^(nil r) yields ^(r a b c)
90 * old=^(a b c), new=^(nil r) yields ^(r ^(a b c))
94 * old=null, new=r yields r
95 * old=null, new=^(nil r) yields ^(nil r)
106 - (id<BaseTree>)becomeRoot:(id<BaseTree>)aNewRoot old:(id<BaseTree>)oldRoot;
111 - (id<BaseTree>)becomeRootfromToken:(id<Token>)aNewRoot old:(id<BaseTree>)oldRoot;
  /external/clang/test/CodeGen/
big-atomic-ops.c 274 struct foo old; local
275 __atomic_exchange(&f, &bigThing, &old, 5);
  /external/cldr/tools/java/org/unicode/cldr/test/
CheckLogicalGroupings.java 138 PathHeader old = draftStatuses.get(draftStatus); local
139 if (old == null) { // take first or path itself

Completed in 4884 milliseconds

<<11121314151617181920>>