/external/kernel-headers/original/linux/ |
uinput.h | 58 struct ff_effect *old; member in struct:uinput_request::__anon22975::__anon22976 84 struct ff_effect old; member in struct:uinput_ff_upload
|
list.h | 194 * list_replace - replace old entry by new one 195 * @old : the element to be replaced 197 * Note: if 'old' was empty, it will be overwritten. 199 static inline void list_replace(struct list_head *old, 202 new->next = old->next; 204 new->prev = old->prev; 208 static inline void list_replace_init(struct list_head *old, 211 list_replace(old, new); 212 INIT_LIST_HEAD(old); 216 * list_replace_rcu - replace old entry by new on [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
log.py | 60 # return the old threshold for use from tests 61 old = _global_log.threshold 63 return old
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
log.py | 60 # return the old threshold for use from tests 61 old = _global_log.threshold 63 return old
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
atomicops-internals-arm-v6plus.h | 85 Atomic32 tmp, old; local 92 : "=&r" (tmp), "=&r" (old) 95 return old; 211 Atomic64 old; local 218 : "=&r" (store_failed), "=&r" (old) 221 return old;
|
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
atomicops-internals-arm-v6plus.h | 84 Atomic32 tmp, old; local 91 : "=&r" (tmp), "=&r" (old) 94 return old; 210 Atomic64 old; local 217 : "=&r" (store_failed), "=&r" (old) 220 return old;
|
/external/icu4c/samples/ucnv/ |
flagcb.c | 49 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/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
LogTest.java | 126 PrintStream old = ShadowLog.stream; local 135 ShadowLog.stream = old; 141 PrintStream old = ShadowLog.stream; local 150 ShadowLog.stream = old; 155 PrintStream old = ShadowLog.stream; local 163 ShadowLog.stream = old;
|
/libcore/crypto/src/main/java/org/conscrypt/ |
OpenSSLSessionImpl.java | 409 Object old = values.put(name, value); local 414 if (old instanceof SSLSessionBindingListener) { 415 ((SSLSessionBindingListener) old) 435 Object old = values.remove(name); local 436 if (old instanceof SSLSessionBindingListener) { 437 SSLSessionBindingListener listener = (SSLSessionBindingListener) old;
|
SSLSessionImpl.java | 202 Object old = values.put(name, value); local 206 if (old instanceof SSLSessionBindingListener) { 207 ((SSLSessionBindingListener) old).valueUnbound(new SSLSessionBindingEvent(this, name)); 216 Object old = values.remove(name); local 217 if (old instanceof SSLSessionBindingListener) { 218 SSLSessionBindingListener listener = (SSLSessionBindingListener) old;
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
HprofData.java | 352 ThreadEvent old = threadIdToThreadEvent.put(event.threadId, event); local 355 if (old != null) { 368 if (old != null && old.type == ThreadEventType.END) { 388 int[] old = stackTraces.put(stackTrace, countCell); local 389 if (old != null) {
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/ |
iatomic.h | 239 #define ia64_cmpxchg(sem,ptr,old,new,size) \ 244 _o_ = (unsigned int) (long) (old); \ 248 (__typeof__(old)) _r_; \ 254 int old, new; local 259 old = atomic_read(v); 260 new = old + i; 261 } while (ia64_cmpxchg("acq", v, old, old + i, sizeof(atomic_t)) != old); 268 int old, new local [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/ |
iatomic.h | 239 #define ia64_cmpxchg(sem,ptr,old,new,size) \ 244 _o_ = (unsigned int) (long) (old); \ 248 (__typeof__(old)) _r_; \ 254 int old, new; local 259 old = atomic_read(v); 260 new = old + i; 261 } while (ia64_cmpxchg("acq", v, old, old + i, sizeof(atomic_t)) != old); 268 int old, new local [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/ |
iatomic.h | 239 #define ia64_cmpxchg(sem,ptr,old,new,size) \ 244 _o_ = (unsigned int) (long) (old); \ 248 (__typeof__(old)) _r_; \ 254 int old, new; local 259 old = atomic_read(v); 260 new = old + i; 261 } while (ia64_cmpxchg("acq", v, old, old + i, sizeof(atomic_t)) != old); 268 int old, new local [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
shared.c | 408 /* unref old state */ 409 struct gl_shared_state *old = *ptr; local 412 _glthread_LOCK_MUTEX(old->Mutex); 413 assert(old->RefCount >= 1); 414 old->RefCount--; 415 delete = (old->RefCount == 0); 416 _glthread_UNLOCK_MUTEX(old->Mutex); 419 free_shared_state(ctx, old);
|
/external/linux-tools-perf/util/ |
help.c | 263 static void add_cmd_list(struct cmdnames *cmds, struct cmdnames *old) 267 ALLOC_GROW(cmds->names, cmds->cnt + old->cnt, cmds->alloc); 269 for (i = 0; i < old->cnt; i++) 270 cmds->names[cmds->cnt++] = old->names[i]; 271 free(old->names); 272 old->cnt = 0; 273 old->names = NULL;
|
/external/mesa3d/src/mesa/main/ |
shared.c | 408 /* unref old state */ 409 struct gl_shared_state *old = *ptr; local 412 _glthread_LOCK_MUTEX(old->Mutex); 413 assert(old->RefCount >= 1); 414 old->RefCount--; 415 delete = (old->RefCount == 0); 416 _glthread_UNLOCK_MUTEX(old->Mutex); 419 free_shared_state(ctx, old);
|
/ndk/sources/host-tools/make-3.81/ |
vpath.c | 62 register struct vpath *old, *nexto; 66 for (old = vpaths; old != 0; old = nexto) 68 nexto = old->next; 69 old->next = new; 70 new = old; 102 and restore the old list of vpaths. */ 134 and restore the old list of vpaths. */ 61 register struct vpath *old, *nexto; local
|
/external/ipsec-tools/src/racoon/ |
grabmyaddr.c | 335 struct myaddrs *p, *q, *old; local 350 old = lcconf->myaddrs; 413 q = find_myaddr(old, p); 424 clear_myaddr(&old); 433 struct myaddrs *p, *q, *old; 473 old = lcconf->myaddrs; 529 q = find_myaddr(old, p); 542 clear_myaddr(&old); 779 dupmyaddr(struct myaddrs *old) 791 memcpy (new, old, sizeof (*new)) [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
ExpandedNameTable.java | 257 for (HashEntry old = oldTable[i]; old != null; ) 259 HashEntry e = old; 260 old = old.next;
|
/external/bsdiff/ |
bspatch.c | 67 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);
|
/external/chromium_org/third_party/freetype/src/cache/ |
ftccmap.c | 312 FT_CharMap old, cmap = NULL; local 315 old = face->charmap; 318 if ( old != cmap && !no_cmap_change ) 323 if ( old != cmap && !no_cmap_change ) 324 FT_Set_Charmap( face, old );
|
/external/chromium_org/third_party/skia/src/animator/ |
SkDisplayApply.cpp | 348 int old = displayList.findGroup(drawable, &parentList, &parentGroup, &thisGroup, &grandList); local 349 if (old < 0) 352 if ((*parentList)[old] != this || restore) { 355 parentGroup->markCopySize(old); 361 old = -1; 365 SkASSERT(old < parentList->count()); 366 if ((*parentList)[old]->isApply()) { 367 SkApply* apply = (SkApply*) (*parentList)[old]; 374 parentGroup->markCopySize(old); 375 SkDrawable** newApplyLocation = &(*parentList)[old]; 433 int old = maker.fDisplayList.findGroup(scope, &pList, &pGroup, &found, &gList); local [all...] |
/external/freetype/src/cache/ |
ftccmap.c | 312 FT_CharMap old, cmap = NULL; local 315 old = face->charmap; 318 if ( old != cmap && !no_cmap_change ) 323 if ( old != cmap && !no_cmap_change ) 324 FT_Set_Charmap( face, old );
|
/external/skia/src/animator/ |
SkDisplayApply.cpp | 348 int old = displayList.findGroup(drawable, &parentList, &parentGroup, &thisGroup, &grandList); local 349 if (old < 0) 352 if ((*parentList)[old] != this || restore) { 355 parentGroup->markCopySize(old); 361 old = -1; 365 SkASSERT(old < parentList->count()); 366 if ((*parentList)[old]->isApply()) { 367 SkApply* apply = (SkApply*) (*parentList)[old]; 374 parentGroup->markCopySize(old); 375 SkDrawable** newApplyLocation = &(*parentList)[old]; 433 int old = maker.fDisplayList.findGroup(scope, &pList, &pGroup, &found, &gList); local [all...] |