HomeSort by relevance Sort by last modified time
    Searched defs:res (Results 1 - 25 of 3673) 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;
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/epid-sdk/ext/ipp/sources/ippcp/
pcpbnarithcmp.c 85 int res; local
87 res = cpCmp_BNU(BN_NUMBER(pA), BN_SIZE(pA), BN_NUMBER(pB), BN_SIZE(pB));
89 res = -res;
92 res = (ippBigNumPOS==BN_SIGN(pA))? 1 :-1;
94 *pResult = (1==res)? IPP_IS_GT : (-1==res)? IPP_IS_LT : IPP_IS_EQ;
  /external/flatbuffers/.travis/
check-sources.sh.py 35 res = check_encoding(sys.argv[1], sys.argv[2], sys.argv[3]) variable
36 sys.exit(0 if res == 0 else -1)
  /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/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;
huge_negative_hea_oob.cc 9 int res = x[-argc * 4000]; // BOOOM local
12 return res;
inline.cc 15 int res = f(x + 2); local
16 if (res)
invalid-free.cc 15 int res = x[argc]; local
22 return res;
log-path_test.cc 41 int res = x[argc * 10]; // BOOOM local
43 return res;

Completed in 2600 milliseconds

1 2 3 4 5 6 7 8 91011>>