Searched refs:old (Results 26 - 50 of 636) sorted by relevance

1234567891011>>

/external/libcxx/utils/libcxx/sym_check/
H A Ddiff.py31 def added_symbols(old, new):
32 return _symbol_difference(new, old)
35 def removed_symbols(old, new):
36 return _symbol_difference(old, new)
39 def changed_symbols(old, new):
41 for old_sym in old:
45 if (new_sym is not None and not new_sym in old
51 def diff(old, new):
52 added = added_symbols(old, new)
53 removed = removed_symbols(old, ne
[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))
H A Dgcmalloc.h93 #define racoon_realloc(old, sz) GC_debug_realloc(old, sz, GC_EXTRAS)
117 #define racoon_realloc(old, sz) realloc((old), (sz))
/external/e2fsprogs/lib/ext2fs/
H A Dbrel_ma.c30 static errcode_t bma_put(ext2_brel brel, blk64_t old,
32 static errcode_t bma_get(ext2_brel brel, blk64_t old,
35 static errcode_t bma_next(ext2_brel brel, blk64_t *old,
37 static errcode_t bma_move(ext2_brel brel, blk64_t old, blk64_t new);
38 static errcode_t bma_delete(ext2_brel brel, blk64_t old);
105 static errcode_t bma_put(ext2_brel brel, blk64_t old, argument
111 if (old > ma->max_block)
113 ma->entries[(unsigned)old] = *ent;
117 static errcode_t bma_get(ext2_brel brel, blk64_t old, argument
123 if (old > m
137 bma_next(ext2_brel brel, blk64_t *old, struct ext2_block_relocate_entry *ent) argument
154 bma_move(ext2_brel brel, blk64_t old, blk64_t new) argument
168 bma_delete(ext2_brel brel, blk64_t old) argument
[all...]
H A Direl_ma.c27 static errcode_t ima_put(ext2_irel irel, ext2_ino_t old,
29 static errcode_t ima_get(ext2_irel irel, ext2_ino_t old,
31 static errcode_t ima_get_by_orig(ext2_irel irel, ext2_ino_t orig, ext2_ino_t *old,
34 static errcode_t ima_next(ext2_irel irel, ext2_ino_t *old,
40 static errcode_t ima_move(ext2_irel irel, ext2_ino_t old, ext2_ino_t new);
41 static errcode_t ima_delete(ext2_irel irel, ext2_ino_t old);
140 static errcode_t ima_put(ext2_irel irel, ext2_ino_t old,
149 if (old > ma->max_inode)
156 if (ma->entries[(unsigned) old].new == 0)
157 ent->orig = old;
[all...]
/external/toybox/lib/
H A Dllist.c29 void *old = list; local
36 if (old == list) break;
119 struct num_cache *old = get_num_cache(*cache, num); local
121 if (old) return old;
123 old = xzalloc(sizeof(struct num_cache)+len);
124 old->next = *cache;
125 old->num = num;
126 memcpy(old->data, data, len);
127 *cache = old;
[all...]
/external/valgrind/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));
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_fence.h79 struct lp_fence *old = *ptr; local
81 if (pipe_reference(&old->reference, &f->reference)) {
82 lp_fence_destroy(old);
/external/syslinux/com32/libupload/
H A Dserial.c77 /* Save old register settings */
78 sif->old.lcr = inb(port + LCR);
79 sif->old.mcr = inb(port + MCR);
80 sif->old.iir = inb(port + IIR);
84 sif->old.dll = inb(port + DLL);
85 sif->old.dlm = inb(port + DLM);
95 sif->old.ier = inb(port + IER);
156 outb(sif->old.dll, port + DLL);
157 outb(sif->old.dlm, port + DLM);
159 outb(sif->old
[all...]
/external/autotest/site_utils/
H A Des_reindex.py11 usage: es_reindex.py [-h] [--host HOST] [--port PORT] [--old OLD]
18 --old OLD Name of the old index.
39 parser.add_argument('--old', type=str, dest='old',
40 help='Name of the old index.')
51 result = autotest_es.execute_query(index=options.old, host=options.host,
53 print 'Total number of records in index %s: %d' % (options.old,
57 (options.old, options.new, options.host, options.port))
60 helpers.reindex(client, options.old, option
[all...]
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.deprecated/
H A Dp1.cpp9 [[deprecated]] int old = 42; // expected-note {{'old' has been explicitly marked deprecated here}} variable
10 int use = old; // expected-warning {{'old' is deprecated}}
/external/dnsmasq/contrib/wrt/
H A Dlease_update.sh15 # if $1 is add del or old, this is a dnsmasq-called lease-change
24 # $1 is action (add, del, old)
45 if [ ${1} = old ] || [ ${1} = add ] ; then
/external/jemalloc/test/unit/
H A Dprof_active.c11 bool old; local
14 sz = sizeof(old);
15 assert_d_eq(mallctl(name, (void *)&old, &sz, NULL, 0), 0,
17 assert_b_eq(old, expected, "%s():%d: Unexpected %s value", func, line,
25 bool old; local
28 sz = sizeof(old);
29 assert_d_eq(mallctl(name, (void *)&old, &sz, (void *)&val_new,
33 assert_b_eq(old, old_expected, "%s():%d: Unexpected %s value", func,
/external/libevent/
H A Dchangelist-internal.h95 int event_changelist_add(struct event_base *base, evutil_socket_t fd, short old, short events,
98 int event_changelist_del(struct event_base *base, evutil_socket_t fd, short old, short events,
/external/libmicrohttpd/src/microhttpd/
H A Dmemorypool.h86 * @param old the existing block
91 * bytes (old continues to be valid for old_size)
95 void *old,
/external/mesa3d/src/gallium/winsys/i915/drm/
H A Di915_drm_fence.c40 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/e2fsprogs/tests/progs/
H A Dtest_rel.c93 static void display_brel_entry(blk_t old, argument
96 printf("Old= %u, New= %u, Owner= %u:%u\n", old, ent->new,
103 static void display_irel_entry(ext2_ino_t old, argument
111 printf("Old= %lu, New= %lu, Original=%lu, Max_refs=%u\n", old,
116 retval = ext2fs_irel_start_iter_ref(irel, old);
178 blk_t old, new, offset=0, owner=0; local
187 if (parse_block(argv[0], "old block", argv[1], &old))
206 retval = ext2fs_brel_put(brel, old, &ent);
308 blk_t old, ne local
385 ext2_ino_t old, new, max_refs; local
421 ext2_ino_t old; local
447 ext2_ino_t orig, old; local
487 ext2_ino_t old; local
617 ext2_ino_t old, new; local
[all...]
/external/valgrind/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
176 UWord old, success; local
303 UWord old = *w; local
[all...]
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DSSLNullSession.java160 Object old = values.put(name, value);
164 if (old instanceof SSLSessionBindingListener) {
165 ((SSLSessionBindingListener) old).valueUnbound(new SSLSessionBindingEvent(this, name));
175 Object old = values.remove(name);
176 if (old instanceof SSLSessionBindingListener) {
177 SSLSessionBindingListener listener = (SSLSessionBindingListener) old;
/external/opencv/cvaux/src/
H A Dcvclique.cpp281 int* old = All[k];
307 int p = old[i]; //current point
314 if ( !connected[p][old[j]] )
352 int i, p = old[s[k]];
353 old[s[k]] = old[ne[k]];
354 int sel = old[ne[k]] = p;
360 if (connected[sel][old[i]])
362 new_[newne] = old[i];
375 if (connected[sel][old[
[all...]
/external/vboot_reference/tests/futility/
H A Dtest_sign_fw_main.sh17 # try the old way
18 ${FUTILITY} vbutil_firmware --vblock ${TMP}.vblock.old \
27 ${FUTILITY} vbutil_firmware --verify ${TMP}.vblock.old \
42 cmp ${TMP}.vblock.old ${TMP}.vblock.new
/external/mesa3d/src/mesa/main/
H A Dshaderobj.c65 /* Unreference the old shader */
67 struct gl_shader *old = *ptr; local
69 ASSERT(old->RefCount > 0);
70 old->RefCount--;
72 (void*) old, old->Name, old->RefCount);*/
73 deleteFlag = (old->RefCount == 0);
76 if (old->Name != 0)
77 _mesa_HashRemove(ctx->Shared->ShaderObjects, old
207 struct gl_shader_program *old = *ptr; local
[all...]
/external/fio/lib/
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/boringssl/src/util/bot/go/
H A Denv.py33 old = os.environ.copy() variable
38 if old.get(key) != value:
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_sampler_view.h92 struct svga_sampler_view *old = *ptr; local
96 svga_destroy_sampler_view_priv(old);

Completed in 953 milliseconds

1234567891011>>