HomeSort by relevance Sort by last modified time
    Searched refs:res (Results 1 - 25 of 11581) 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...]
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
putchar.c 17 int res; local
19 res = c;
21 res = EOF;
23 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.27/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/curl/tests/libtest/
lib1521.c 126 CURLcode res = CURLE_OK; local
133 res = CURLE_OUT_OF_MEMORY;
137 res = curl_easy_setopt(curl, CURLOPT_WRITEDATA, &object);
138 if(UNEX(res)) {
139 err("WRITEDATA", res, __LINE__); goto test_cleanup; }
140 res = curl_easy_setopt(curl, CURLOPT_WRITEDATA, NULL);
141 if(UNEX(res)) {
142 err("WRITEDATA", res, __LINE__); goto test_cleanup; }
143 res = curl_easy_setopt(curl, CURLOPT_URL, "string");
144 if(UNEX(res)) {
    [all...]
lib1532.c 32 int res = CURLE_OK; local
40 res = curl_easy_perform(curl);
41 if(res) {
43 __FILE__, __LINE__, res, curl_easy_strerror(res));
47 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode);
48 if(res) {
50 __FILE__, __LINE__, res, curl_easy_strerror(res));
56 res = CURLE_HTTP_RETURNED_ERROR
    [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...]
  /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 43 int res = pthread_mutex_init(&mMutex, NULL); local
44 if (res != 0) {
45 LOG(ERROR) << StringPrintf("Mutex::Mutex: fail init; error=0x%X", res);
59 int res = pthread_mutex_destroy(&mMutex); local
60 if (res != 0) {
61 LOG(ERROR) << StringPrintf("Mutex::~Mutex: fail destroy; error=0x%X", res);
75 int res = pthread_mutex_lock(&mMutex); local
76 if (res != 0) {
77 LOG(ERROR) << StringPrintf("Mutex::lock: fail lock; error=0x%X", res);
91 int res = pthread_mutex_unlock(&mMutex) local
107 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;

Completed in 1361 milliseconds

1 2 3 4 5 6 7 8 91011>>