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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
putchar.c 17 int res; local
19 res = c;
21 res = EOF;
23 return res;
  /external/clang/test/CodeGen/
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
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/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/libxml2/python/tests/
xpathns.py 11 res="" variable
13 res = res + n.serialize() variable
16 if res != expect:
18 print(res)
19 del res
  /external/pdfium/core/fpdfapi/font/
cpdf_tounicodemap_unittest.cpp 24 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/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
  /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/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/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 19 int res = x[argc]; local
32 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;
heap-overflow.cc 15 int res = x[argc * 10]; // BOOOM local
23 return res;

Completed in 525 milliseconds

1 2 3 4 5 6 7 8 91011>>