HomeSort by relevance Sort by last modified time
    Searched refs:res (Results 1 - 25 of 8548) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/fio/lib/
hweight.c 5 unsigned int res = w - ((w >> 1) & 0x55); local
7 res = (res & 0x33) + ((res >> 2) & 0x33);
8 return (res + (res >> 4)) & 0x0F;
13 unsigned int res = w - ((w >> 1) & 0x55555555); local
15 res = (res & 0x33333333) + ((res >> 2) & 0x33333333)
    [all...]
  /external/clang/test/CodeGen/
builtins-ppc.c 6 volatile int res; local
7 res = __builtin_eh_return_data_regno(0); // CHECK: store volatile i32 3
8 res = __builtin_eh_return_data_regno(1); // CHECK: store volatile i32 4
indirect-goto.c 5 int res = 1; local
8 L5: res *= 11;
9 L4: res *= 7;
10 L3: res *= 5;
11 L2: res *= 3;
12 L1: res *= 2;
13 return res;
18 int res = 1; local
21 L5: res *= 11;
22 L4: res *= 7
    [all...]
  /external/valgrind/none/tests/amd64/
looper.stdout.exp 0 res = 969
2 res = 969
3 res = 0
4 res = 969
5 res = 0
looper.c 5 long long int res = 0; variable
22 "\tmovq %rax, res\n"
42 "\tmovq %rax, res\n"
66 "\tmovq %rax, res\n"
73 res = 0; arg = 10; loop_plain(); printf("res = %lld\n", res);
75 res = 0; arg = 10; loop_ne(); printf("res = %lld\n", res);
    [all...]
clc.c 8 ULong res; local
15 : "=r"(res)
19 return res;
24 ULong res; local
31 : "=r"(res)
35 return res;
40 ULong res; local
48 : "=r"(res)
52 return res;
  /external/valgrind/none/tests/x86/
looper.stdout.exp 0 res = 969
2 res = 969
3 res = 0
4 res = 969
5 res = 0
movx.c 6 int res; local
12 : "=r"(res) : : "eax"
14 return res;
19 int res; local
25 : "=r"(res) : : "eax"
27 return res;
32 int res; local
38 : "=r"(res) : : "eax"
40 return res;
45 int res; local
58 int res; local
71 int res; local
84 int res; local
97 int res; local
110 int res; local
123 int res; local
136 int res; local
149 int res; local
    [all...]
looper.c 5 int res = 0; variable
21 "\tmovl %eax, " VG_SYM(res) "\n"
40 "\tmovl %eax, " VG_SYM(res) "\n"
63 "\tmovl %eax, " VG_SYM(res) "\n"
70 res = 0; arg = 10; loop_plain(); printf("res = %d\n", res);
72 res = 0; arg = 10; loop_ne(); printf("res = %d\n", res);
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/adaptation/
Mutex.cpp 43 int res = pthread_mutex_init (&mMutex, NULL); local
44 if (res != 0)
46 ALOGE ("Mutex::Mutex: fail init; error=0x%X", res);
62 int res = pthread_mutex_destroy (&mMutex); local
63 if (res != 0)
65 ALOGE ("Mutex::~Mutex: fail destroy; error=0x%X", res);
81 int res = pthread_mutex_lock (&mMutex); local
82 if (res != 0)
84 ALOGE ("Mutex::lock: fail lock; error=0x%X", res);
100 int res = pthread_mutex_unlock (&mMutex) local
119 int res = pthread_mutex_trylock (&mMutex); local
    [all...]
  /external/valgrind/memcheck/tests/x86/
fprem.c 9 double res = 0.0; local
17 : : "r"(&res)
19 return res;
24 double res = 0.0; local
32 : : "r"(&res)
34 return res;
39 double res = 0.0; local
45 : : "r"(&res)
47 return res;
  /external/compiler-rt/test/sanitizer_common/TestCases/
pthread_mutexattr_get.cc 8 int res = pthread_mutexattr_init(&ma); local
9 assert(res == 0);
10 res = pthread_mutexattr_setpshared(&ma, 1);
11 assert(res == 0);
13 res = pthread_mutexattr_getpshared(&ma, &pshared);
14 assert(res == 0);
16 res = pthread_mutexattr_destroy(&ma);
17 assert(res == 0);
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-ifunc/
prog.c 10 int res = -1; local
12 res += library_func1 ();
13 res += library_func2 ();
15 switch (res)
23 res = -1;
33 res = 0;
42 printf ("ifunc function not evaluated at run-time, res = %x\n", res);
45 return res;
  /external/deqp/external/vulkancts/framework/vulkan/
vkTypeUtil.inl 7 VkAllocationCallbacks res;
8 res.pUserData = pUserData;
9 res.pfnAllocation = pfnAllocation;
10 res.pfnReallocation = pfnReallocation;
11 res.pfnFree = pfnFree;
12 res.pfnInternalAllocation = pfnInternalAllocation;
13 res.pfnInternalFree = pfnInternalFree;
14 return res;
19 VkExtent3D res;
20 res.width = width
    [all...]
  /frameworks/av/camera/camera2/
SubmitInfo.cpp 26 status_t res; local
29 res = parcel->writeInt32(mRequestId);
30 if (res != OK) return res;
32 res = parcel->writeInt64(mLastFrameNumber);
33 return res;
37 status_t res; local
40 res = parcel->readInt32(&mRequestId);
41 if (res != OK) return res;
    [all...]
  /external/elfutils/libebl/
eblosabiname.c 41 const char *res = ebl != NULL ? ebl->osabi_name (osabi, buf, len) : NULL; local
43 if (res == NULL)
46 res = "UNIX - System V";
48 res = "HP/UX";
50 res = "NetBSD";
52 res = "Linux";
54 res = "Solaris";
56 res = "AIX";
58 res = "Irix";
60 res = "FreeBSD"
    [all...]
  /packages/apps/Nfc/nci/jni/
Mutex.cpp 40 int res = pthread_mutex_init (&mMutex, NULL); local
41 if (res != 0)
43 ALOGE ("Mutex::Mutex: fail init; error=0x%X", res);
59 int res = pthread_mutex_destroy (&mMutex); local
60 if (res != 0)
62 ALOGE ("Mutex::~Mutex: fail destroy; error=0x%X", res);
78 int res = pthread_mutex_lock (&mMutex); local
79 if (res != 0)
81 ALOGE ("Mutex::lock: fail lock; error=0x%X", res);
97 int res = pthread_mutex_unlock (&mMutex) local
116 int res = pthread_mutex_trylock (&mMutex); local
    [all...]
  /external/clang/test/Analysis/
test-include.c 12 int res = DIVXY(1,0); // expected-warning{{Division by zero}} local
14 return res;
18 int res = DIVYX(0,1); // expected-warning{{Division by zero}} local
20 return res;
  /external/compiler-rt/test/asan/TestCases/
partial_right.cc 9 int res = x[2]; // BOOOM local
12 return res;
  /frameworks/base/core/java/android/content/res/
CompatibilityInfo.aidl 17 package android.content.res;
Configuration.aidl 18 package android.content.res;
ObbInfo.aidl 17 package android.content.res;
  /external/compiler-rt/test/msan/
pthread_getattr_np_deadlock.cc 10 int res = pthread_getattr_np(pthread_self(), &attr); local
11 assert(!res);
17 int res = pthread_create(&t, 0, ThreadFn, 0); local
18 assert(!res);
19 res = pthread_join(t, 0);
20 assert(!res);
sem_getvalue.cc 9 int res = sem_init(&sem, 0, 42); local
10 assert(res == 0);
13 res = sem_getvalue(&sem, &v);
14 assert(res == 0);
18 res = sem_destroy(&sem);
19 assert(res == 0);
  /external/chromium-trace/catapult/third_party/Paste/tests/
test_urlparser.py 23 res = app.get('/')
24 assert 'index1' in res
25 assert res.header('content-type') == 'text/plain'
26 res = app.get('/index')
27 assert 'index1' in res
28 assert res.header('content-type') == 'text/plain'
29 res = app.get('/index.txt')
30 assert 'index1' in res
31 assert res.header('content-type') == 'text/plain'
32 res = app.get('/test2.html'
    [all...]

Completed in 4350 milliseconds

1 2 3 4 5 6 7 8 91011>>