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

1 2 3 4 5 6 7 8 91011>>

  /external/linux-tools-perf/util/
hweight.c 18 unsigned int res = w - ((w >> 1) & 0x55555555); local
19 res = (res & 0x33333333) + ((res >> 2) & 0x33333333);
20 res = (res + (res >> 4)) & 0x0F0F0F0F;
21 res = res + (res >> 8)
    [all...]
  /external/valgrind/main/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/main/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/valgrind/main/memcheck/tests/x86/
fprem.c 9 double res; local
17 : : "r"(&res)
19 return res;
24 double res; local
32 : : "r"(&res)
34 return res;
39 double res; local
45 : : "r"(&res)
47 return res;
  /external/clang/test/CodeGen/
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/elfutils/libebl/
eblosabiname.c 66 const char *res = ebl != NULL ? ebl->osabi_name (osabi, buf, len) : NULL; local
68 if (res == NULL)
71 res = "UNIX - System V";
73 res = "HP/UX";
75 res = "NetBSD";
77 res = "Linux";
79 res = "Solaris";
81 res = "AIX";
83 res = "Irix";
85 res = "FreeBSD"
    [all...]
eblreloctypename.c 66 const char *res; local
68 res = ebl != NULL ? ebl->reloc_type_name (reloc, buf, len) : NULL;
69 if (res == NULL)
71 res = "???";
73 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/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-96526-003.js 53 var res = "";
61 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
66 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
71 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
76 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
81 res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm"
86 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
91 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
96 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm"
101 res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm
    [all...]
  /external/speex/libspeex/
fixed_arm4.h 40 int res; local
46 : "=&r"(res), "=&r" (dummy)
48 return(res);
53 int res; local
59 : "=&r"(res), "=&r" (dummy)
61 return(res);
67 int res=0; local
139 : "=r" (dead1), "=r" (dead2), "=r" (res),
141 : "0" (a), "1" (b), "2" (res)
144 return res;
    [all...]
fixed_arm5e.h 40 int res; local
42 : "=&r"(res)
44 return(res);
49 int res; local
51 : "=&r"(res)
53 return(res);
58 int res; local
60 : "=&r"(res)
62 return(res);
67 int res; local
76 int res; local
85 int res; local
95 int res=0; local
    [all...]
  /external/dropbear/libtommath/
bn_mp_addmod.c 22 int res; local
25 if ((res = mp_init (&t)) != MP_OKAY) {
26 return res;
29 if ((res = mp_add (a, b, &t)) != MP_OKAY) {
31 return res;
33 res = mp_mod (&t, c, d);
35 return res;
bn_mp_mulmod.c 21 int res; local
24 if ((res = mp_init (&t)) != MP_OKAY) {
25 return res;
28 if ((res = mp_mul (a, b, &t)) != MP_OKAY) {
30 return res;
32 res = mp_mod (&t, c, d);
34 return res;
bn_mp_sqrmod.c 22 int res; local
25 if ((res = mp_init (&t)) != MP_OKAY) {
26 return res;
29 if ((res = mp_sqr (a, &t)) != MP_OKAY) {
31 return res;
33 res = mp_mod (&t, b, c);
35 return res;
bn_mp_submod.c 22 int res; local
26 if ((res = mp_init (&t)) != MP_OKAY) {
27 return res;
30 if ((res = mp_sub (a, b, &t)) != MP_OKAY) {
32 return res;
34 res = mp_mod (&t, c, d);
36 return res;
bn_mp_get_int.c 22 unsigned long res; local
32 res = DIGIT(a,i);
35 res = (res << DIGIT_BIT) | DIGIT(a,i);
39 return res & 0xFFFFFFFFUL;
bn_mp_init_copy.c 21 int res; local
23 if ((res = mp_init (a)) != MP_OKAY) {
24 return res;
bn_mp_to_signed_bin.c 21 int res; local
23 if ((res = mp_to_unsigned_bin (a, b + 1)) != MP_OKAY) {
24 return res;
  /external/dropbear/libtomcrypt/testprof/
test_driver.c 3 void run_cmd(int res, int line, char *file, char *cmd)
5 if (res != CRYPT_OK) {
6 fprintf(stderr, "%s (%d)\n%s:%d:%s\n", error_to_string(res), res, file, line, cmd);
7 if (res != CRYPT_NOP) {

Completed in 476 milliseconds

1 2 3 4 5 6 7 8 91011>>