HomeSort by relevance Sort by last modified time
    Searched refs:old (Results 126 - 150 of 2625) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/
threads_scenarii.c 145 int old; local
191 pthread_attr_getdetachstate(&scenarii[i].ta, &old);
196 if (old != PTHREAD_CREATE_JOINABLE) {
263 pthread_attr_getschedpolicy(&scenarii[i].ta, &old);
270 sp.sched_priority = sched_get_priority_max(old);
272 sp.sched_priority = sched_get_priority_min(old);
288 ret = pthread_attr_getscope(&scenarii[i].ta, &old);
295 if (old == PTHREAD_SCOPE_PROCESS)
296 old = PTHREAD_SCOPE_SYSTEM;
298 old = PTHREAD_SCOPE_PROCESS
    [all...]
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_exit/
threads_scenarii.c 145 int old; local
191 pthread_attr_getdetachstate(&scenarii[i].ta, &old);
196 if (old != PTHREAD_CREATE_JOINABLE) {
263 pthread_attr_getschedpolicy(&scenarii[i].ta, &old);
270 sp.sched_priority = sched_get_priority_max(old);
272 sp.sched_priority = sched_get_priority_min(old);
288 ret = pthread_attr_getscope(&scenarii[i].ta, &old);
295 if (old == PTHREAD_SCOPE_PROCESS)
296 old = PTHREAD_SCOPE_SYSTEM;
298 old = PTHREAD_SCOPE_PROCESS
    [all...]
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/
threads_scenarii.c 212 int old; local
258 pthread_attr_getdetachstate(&scenarii[i].ta, &old);
263 if (old != PTHREAD_CREATE_JOINABLE) {
330 pthread_attr_getschedpolicy(&scenarii[i].ta, &old);
337 sp.sched_priority = sched_get_priority_max(old);
339 sp.sched_priority = sched_get_priority_min(old);
355 ret = pthread_attr_getscope(&scenarii[i].ta, &old);
362 if (old == PTHREAD_SCOPE_PROCESS)
363 old = PTHREAD_SCOPE_SYSTEM;
365 old = PTHREAD_SCOPE_PROCESS
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
rs6000-core.c 49 system include files. Punt the old one and get us a new name for the
103 /* Union of old and new core dump structures. */
112 #ifndef BFD64 /* Use old only if gdb is 32-bit. */
113 struct core_dump old; /* Old AIX 4.2- core dump, still used on member in union:__anon4094
118 /* Union of old and new vm_info structures. */
129 struct vm_info old; member in union:__anon4095
134 /* Return whether CoreHdr C is in new or old format. */
138 # define CORE_NEW(c) (!(c).old.c_entries)
259 /* Magic end-of-stack addresses for old core dumps. This is _very_ fragile
    [all...]
  /external/blktrace/btt/
list.h 217 * 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,
226 new->next = old->next;
228 new->prev = old->prev;
232 static inline void list_replace_init(struct list_head *old,
235 list_replace(old, new);
236 INIT_LIST_HEAD(old);
  /external/compiler-rt/test/tsan/
real_deadlock_detector_stress_test.cc 61 int old = __atomic_load_n(&m->state, __ATOMIC_RELAXED); local
62 if (old == kStateLocked) {
66 int newv = old + 1;
67 if (old == kStateNotInited)
69 if (cas(&m->state, old, newv)) {
70 if (old == kStateNotInited) {
  /external/conscrypt/common/src/main/java/org/conscrypt/
ExternalSession.java 182 Object old = values.put(name, value); local
186 if (old instanceof SSLSessionBindingListener) {
187 ((SSLSessionBindingListener) old).valueUnbound(new SSLSessionBindingEvent(this, name));
197 Object old = values.remove(name); local
198 if (old instanceof SSLSessionBindingListener) {
199 SSLSessionBindingListener listener = (SSLSessionBindingListener) old;
  /external/e2fsprogs/lib/ext2fs/
alloc_stats.c 97 void (**old)(ext2_filsys fs,
103 if (old)
104 *old = fs->block_alloc_stats;
155 void (**old)(ext2_filsys fs, blk64_t blk,
160 if (old)
161 *old = fs->block_alloc_stats_range;
  /external/protobuf/src/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 49 // Always return the old value of "*ptr"
77 Atomic32 temp, old; local
81 "ll %1, %4\n" // old = *ptr
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
91 return old;
209 Atomic64 temp, old; local
213 "lld %1, %4\n" // old = *ptr
219 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
223 return old;
  /prebuilts/go/darwin-x86/src/runtime/internal/atomic/
stubs.go 10 func Cas(ptr *uint32, old, new uint32) bool
13 func Casp1(ptr *unsafe.Pointer, old, new unsafe.Pointer) bool
16 func Casuintptr(ptr *uintptr, old, new uintptr) bool
  /prebuilts/go/linux-x86/src/runtime/internal/atomic/
stubs.go 10 func Cas(ptr *uint32, old, new uint32) bool
13 func Casp1(ptr *unsafe.Pointer, old, new unsafe.Pointer) bool
16 func Casuintptr(ptr *uintptr, old, new uintptr) bool
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 49 // Always return the old value of "*ptr"
77 Atomic32 temp, old; local
81 "ll %1, %4\n" // old = *ptr
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
91 return old;
209 Atomic64 temp, old; local
213 "lld %1, %4\n" // old = *ptr
219 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
223 return old;
  /external/deqp/scripts/
caselist_diff.py 166 def diffCaseLists (old, new):
170 oldSet = set(old)
179 for case in old:
187 print "%s [old caselist] [new caselist]" % sys.argv[0]
  /external/libxml2/python/tests/
thread2.py 27 old = libxml2.lineNumbersDefault(0)
28 libxml2.lineNumbersDefault(old)
29 return old
  /external/mesa3d/src/mesa/main/
shaderobj.c 67 /* Unreference the old shader */
68 struct gl_shader *old = *ptr; local
70 assert(old->RefCount > 0);
72 if (p_atomic_dec_zero(&old->RefCount)) {
73 if (old->Name != 0)
74 _mesa_HashRemove(ctx->Shared->ShaderObjects, old->Name);
75 _mesa_delete_shader(ctx, old);
240 /* Unreference the old shader program */
241 struct gl_shader_program *old = *ptr; local
243 assert(old->RefCount > 0)
    [all...]
  /external/python/cpython2/Mac/Tools/
fixapplepython23.py 53 for old, new in CHANGES:
58 i = findline(lines, old)
61 print 'fixapplepython23: missing line:', old
  /external/syslinux/gpxe/src/util/
diffsize.pl 3 # [somebody@somewhere ~/gpxe/src]$ ./util/diffsize.pl [<old rev> [<new rev>]]
4 # by default <old rev> is HEAD and <new rev> is the working tree
78 # Skip files named with dash, due to old Makefile bug
81 $Sizes{$name} = {old => 0, new => 0} unless exists $Sizes{$name};
89 save_sizes('old', $oldrev);
95 my $diff = $Sizes{$_}{new} - $Sizes{$_}{old};
97 printf "%12s %+d\n", substr($_, 0, 12), $Sizes{$_}{new} - $Sizes{$_}{old};
  /external/webrtc/webrtc/system_wrappers/source/
tick_util.cc 95 DWORD old = InterlockedExchange(last_time_get_time_ptr, now); local
96 if (now < old) {
97 // If now is earlier than old, there may have been a race between
101 if (old > 0xf0000000 && now < 0x0fffffff) {
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 49 // Always return the old value of "*ptr"
77 Atomic32 temp, old; local
81 "ll %1, %2\n" // old = *ptr
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
91 return old;
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 49 // Always return the old value of "*ptr"
77 Atomic32 temp, old; local
81 "ll %1, %2\n" // old = *ptr
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
91 return old;
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 49 // Always return the old value of "*ptr"
77 Atomic32 temp, old; local
81 "ll %1, %2\n" // old = *ptr
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
91 return old;
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 49 // Always return the old value of "*ptr"
77 Atomic32 temp, old; local
81 "ll %1, %2\n" // old = *ptr
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
91 return old;
  /art/test/654-checker-periodic/src/
Main.java 99 float old = lF; local
101 l2 = old;
118 float old = lF; local
120 l2 = old;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_dictcomps.py 4 >>> k = "old value"
8 'old value'
  /device/linaro/bootloader/edk2/StdLib/Include/Ipf/machine/
pcb.h 71 int swapctx(struct pcb *old, struct pcb *new);

Completed in 1107 milliseconds

1 2 3 4 56 7 8 91011>>