/external/elfutils/libebl/ |
ebldynamictagcheck.c | 41 bool res = ebl != NULL ? ebl->dynamic_tag_check (tag) : false; local 43 if (!res 51 res = true; 53 return res;
|
eblobjecttypename.c | 41 const char *res; local 43 res = ebl != NULL ? ebl->object_type_name (object, buf, len) : NULL; 44 if (res == NULL) 55 res = buf; 58 return res;
|
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...] |
eblreloctypename.c | 41 const char *res; local 43 res = ebl != NULL ? ebl->reloc_type_name (reloc, buf, len) : NULL; 44 if (res == NULL) 46 res = "<INVALID RELOC>"; 48 return res;
|
/external/pdfium/core/src/fpdfapi/fpdf_font/ |
fpdf_font_unittest.cpp | 24 CFX_WideString res = L"\xc2ab"; local 25 EXPECT_EQ(res, CPDF_ToUnicodeMap::StringToWideString("<c2ab")); 26 EXPECT_EQ(res, CPDF_ToUnicodeMap::StringToWideString("<c2abab")); 27 EXPECT_EQ(res, CPDF_ToUnicodeMap::StringToWideString("<c2ab 1234")); 29 res += L"\xfaab"; 30 EXPECT_EQ(res, CPDF_ToUnicodeMap::StringToWideString("<c2abFaAb"));
|
/external/v8/test/mjsunit/regress/ |
regress-227.js | 29 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/memcheck/tests/darwin/ |
scalar_fork.c | 5 int res; local
|
scalar_vfork.c | 5 int res; local
|
/external/valgrind/memcheck/tests/x86-linux/ |
scalar_fork.c | 5 int res __attribute__((unused)); local
|
scalar_vfork.c | 5 int res __attribute__((unused)); local
|
/prebuilts/go/darwin-x86/misc/cgo/testcarchive/ |
main.c | 12 int32_t res; local 24 res = FromPkg(); 25 if (res != 1024) { 26 fprintf(stderr, "ERROR: FromPkg()=%d, want 1024\n", res);
|
/prebuilts/go/linux-x86/misc/cgo/testcarchive/ |
main.c | 12 int32_t res; local 24 res = FromPkg(); 25 if (res != 1024) { 26 fprintf(stderr, "ERROR: FromPkg()=%d, want 1024\n", res);
|
/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/autotest/client/tests/aio_dio_bugs/src/ |
aio-free-ring-with-bogus-nr-pages.c | 41 long res; local 56 res = io_setup(10000, &ctx); 57 if (res != -ENOMEM) { 59 basename(argv[0]), res);
|
/external/bison/src/ |
named-ref.c | 28 named_ref *res = xmalloc (sizeof *res); local 30 res->id = id; 31 res->loc = loc; 33 return res;
|
/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
|
lifetime-debuginfo-2.c | 14 int res; local 18 res = r + b; 22 res = r + a; 26 return res;
|
/external/compiler-rt/test/asan/TestCases/Darwin/ |
atos-symbolizer-dyld-root-path.cc | 14 int res = x[argc]; local 26 return res;
|
atos-symbolizer.cc | 11 int res = x[argc]; local 23 return res;
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
asprintf.cc | 13 int res = asprintf(&p, "%d", argc); local 14 fprintf(stderr, "x%d %sx\n", res, p);
|
ioctl.cc | 17 int res = ioctl(fd, FIONBIO, &nonblock + 1); local 21 assert(res == 0);
|
strerror_r_test.cc | 11 char *res = (char *)strerror_r(300, buf, sizeof(buf)); local 12 printf("%p\n", res);
|
/external/compiler-rt/test/asan/TestCases/ |
double-free.cc | 15 int res = x[argc]; local 26 return res;
|
halt_on_error-1.c | 20 volatile int res = x[ten]; local 23 x[ten] = res + 3; 26 res = x[ten];
|
heap-overflow-large.cc | 18 unsigned res = x[index]; local 22 return (res % 10) + 1;
|