Searched defs:res (Results 1 - 25 of 1351) sorted by relevance

1234567891011>>

/external/clang/test/CodeGen/
H A Dbuiltins-ppc.c6 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
/external/elfutils/libebl/
H A Debldynamictagcheck.c64 bool res = ebl != NULL ? ebl->dynamic_tag_check (tag) : false; local
66 if (!res
74 res = true;
76 return res;
H A Deblobjecttypename.c66 const char *res; local
68 res = ebl != NULL ? ebl->object_type_name (object, buf, len) : NULL;
69 if (res == NULL)
80 res = buf;
83 return res;
H A Deblosabiname.c66 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
[all...]
H A Deblreloctypename.c66 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;
H A Deblcorenotetypename.c66 const char *res = ebl->core_note_type_name (type, buf, len); local
68 if (res == NULL)
94 res = knowntypes[type];
98 #define KNOWNSTYPE(name) case NT_##name: res = #name; break
109 res = buf;
113 return res;
H A Deblobjnotetypename.c67 const char *res = ebl->object_note_type_name (type, buf, len); local
69 if (res == NULL)
82 res = knowntypes[type];
87 res = buf;
91 return res;
H A Deblsectionname.c69 const char *res = ebl != NULL ? ebl->section_name (section, xsection, local
72 if (res == NULL)
75 res = "UNDEF";
77 res = "ABS";
79 res = "COMMON";
81 res = "BEFORE";
83 res = "AFTER";
90 res = scnnames[idx];
94 res = buf;
112 res
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-227.js29 var res = re.exec("!"); variable
30 assertEquals(null, res, "Throwing away high bits on ASCII string");
32 res = re.exec("!x");
33 assertEquals(["x"], res, "Throwing away high bits on ASCII string");
/external/valgrind/main/memcheck/tests/darwin/
H A Dscalar_fork.c5 int res; local
H A Dscalar_vfork.c5 int res; local
/external/valgrind/main/memcheck/tests/x86-linux/
H A Dscalar_fork.c5 int res __attribute__((unused)); local
H A Dscalar_vfork.c5 int res __attribute__((unused)); local
/external/compiler-rt/lib/asan/lit_tests/
H A Dmemcmp_strict_test.cc11 int res = memcmp(kFoo, kFubar, strlen(kFubar)); local
12 printf("res: %d\n", res);
13 // CHECK-nonstrict: {{res: -1}}
/external/dropbear/
H A Datomicio.c43 ssize_t res; local
47 res = (f) (fd, s + pos, n - pos);
48 switch (res) {
57 return (res);
59 pos += res;
/external/dropbear/libtommath/
H A Dbn_mp_2expt.c26 int res; local
32 if ((res = mp_grow (a, b / DIGIT_BIT + 1)) != MP_OKAY) {
33 return res;
H A Dbn_mp_abs.c25 int res; local
29 if ((res = mp_copy (a, b)) != MP_OKAY) {
30 return res;
H A Dbn_mp_get_int.c22 unsigned long res; local
32 res = DIGIT(a,i);
35 res = (res << DIGIT_BIT) | DIGIT(a,i);
39 return res & 0xFFFFFFFFUL;
H A Dbn_mp_init_copy.c21 int res; local
23 if ((res = mp_init (a)) != MP_OKAY) {
24 return res;
H A Dbn_mp_neg.c21 int res; local
23 if ((res = mp_copy (a, b)) != MP_OKAY) {
24 return res;
H A Dbn_mp_reduce_setup.c23 int res; local
25 if ((res = mp_2expt (a, b->used * 2 * DIGIT_BIT)) != MP_OKAY) {
26 return res;
H A Dbn_mp_sqr.c22 int res; local
27 res = mp_toom_sqr(a, b);
33 res = mp_karatsuba_sqr (a, b);
42 res = fast_s_mp_sqr (a, b);
46 res = s_mp_sqr (a, b);
48 res = MP_VAL;
52 return res;
H A Dbn_mp_to_signed_bin.c21 int res; local
23 if ((res = mp_to_unsigned_bin (a, b + 1)) != MP_OKAY) {
24 return res;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_cvs/searchcvs/www/projectName/includes/
H A Ddb.php9 $res = mysql_query($sql) or die("$sql\n" . mysql_error()); variable
10 return $res;
/external/elfutils/lib/
H A Dxstrndup.c40 char *res; local
42 *((char *) mempcpy ((res = xmalloc (len + 1)), string, len)) = '\0';
43 return res;

Completed in 598 milliseconds

1234567891011>>