HomeSort by relevance Sort by last modified time
    Searched refs:res (Results 1 - 25 of 9831) 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
builtins-sparc.c 7 volatile int res; local
8 res = __builtin_eh_return_data_regno(0); // CHECK: store volatile i32 24
9 res = __builtin_eh_return_data_regno(1); // CHECK: store volatile i32 25
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...]
  /system/nfc/halimpl/bcm2079x/adaptation/
Mutex.cpp 42 int res = pthread_mutex_init(&mMutex, NULL); local
43 if (res != 0) {
44 ALOGE("Mutex::Mutex: fail init; error=0x%X", res);
58 int res = pthread_mutex_destroy(&mMutex); local
59 if (res != 0) {
60 ALOGE("Mutex::~Mutex: fail destroy; error=0x%X", res);
74 int res = pthread_mutex_lock(&mMutex); local
75 if (res != 0) {
76 ALOGE("Mutex::lock: fail lock; error=0x%X", res);
90 int res = pthread_mutex_unlock(&mMutex) local
106 int res = pthread_mutex_trylock(&mMutex); local
    [all...]
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
putchar.c 41 int res; local
43 res = c;
45 res = EOF;
47 return res;
  /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...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/clock_getres/
1-1.c 8 * Test that clock_getres() returns the resolution of clock_id in res.
19 struct timespec res; local
21 /* Initialize res to a number much larger than the resolution
24 res.tv_sec = LARGENUM;
25 res.tv_nsec = LARGENUM;
26 if (clock_getres(CLOCK_REALTIME, &res) == 0) {
27 if (res.tv_sec != LARGENUM) { //assume initialized
30 (int)res.tv_sec, (int)res.tv_nsec);
35 printf("clock_getres() success, but res not filled\n")
    [all...]
  /art/test/706-checker-scheduler/src/
Main.java 44 int res = 0; local
47 res += array[i];
48 res += array[i + 1];
50 return res;
66 int res = 0; local
70 res = res / i; // div-zero check barrier.
73 res += tmp;
74 return res;
  /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 41 int res = pthread_mutex_init (&mMutex, NULL); local
42 if (res != 0)
44 ALOGE("Mutex::Mutex: fail init; error=0x%X", res);
60 int res = pthread_mutex_destroy (&mMutex); local
61 if (res != 0)
63 ALOGE("Mutex::~Mutex: fail destroy; error=0x%X", res);
79 int res = pthread_mutex_lock (&mMutex); local
80 if (res != 0)
82 ALOGE("Mutex::lock: fail lock; error=0x%X", res);
98 int res = pthread_mutex_unlock (&mMutex) local
117 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;

Completed in 905 milliseconds

1 2 3 4 5 6 7 8 91011>>