/external/compiler-rt/test/asan/TestCases/Posix/ |
glob.cc | 22 int res = glob(pattern.c_str(), 0, 0, &globbuf); local 25 assert(res == 0);
|
wait.cc | 17 int res; local 19 res = wait(status); 21 res = waitpid(pid, status, WNOHANG); 29 return res == -1 ? 1 : 0;
|
/external/compiler-rt/test/asan/TestCases/ |
global-overflow.cc | 14 int res = YYY[argc * 10]; // BOOOM local 19 res += XXX[argc] + ZZZ[argc]; 20 return res;
|
/external/compiler-rt/test/msan/Linux/ |
mincore.cc | 10 int res; local 16 res = mincore(addr, 10 * PS, vec); 17 assert(res == 0); 21 res = mincore(addr, 10 * PS + 42, vec); 22 assert(res == 0); 26 res = mincore(addr, 10 * PS - 1, vec); 27 assert(res == 0); 31 res = mincore(addr, 1, vec); 32 assert(res == 0);
|
/external/compiler-rt/test/msan/ |
getaddrinfo-positive.cc | 16 int res = getaddrinfo("localhost", NULL, NULL, &ai); local 18 res = getaddrinfo("localhost", NULL, &hint, &ai);
|
getaddrinfo.cc | 22 int res = getaddrinfo("not-in-etc-hosts", NULL, NULL, &ai); local
|
inline.cc | 18 int res = f(p); local
|
ioctl_custom.cc | 25 int res = ioctl(fd, SIOCGIFCONF, (void *)&ifc); local 29 assert(res == 0);
|
pthread_getattr_np_deadlock.cc | 10 int res = pthread_getattr_np(pthread_self(), &attr); local 11 assert(!res); 17 int res = pthread_create(&t, 0, ThreadFn, 0); local 18 assert(!res); 19 res = pthread_join(t, 0); 20 assert(!res);
|
sigwait.cc | 20 int res = sigwait(&s, &sig); local 21 assert(!res);
|
sigwaitinfo.cc | 20 int res = sigwaitinfo(&s, &info); local 21 assert(!res);
|
strerror_r-non-gnu.c | 14 int res = strerror_r(EINVAL, buf, sizeof(buf)); local 15 assert(!res);
|
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/ |
getpwnam_r_invalid_user.cc | 16 int res = getpwnam_r("no-such-user", &pwd, buf, sizeof(buf), &pwdres); local 17 assert(res == 0 || res == ENOENT);
|
/external/curl/tests/libtest/ |
lib1528.c | 30 CURLcode res = CURLE_FAILED_INIT; local 62 res = curl_easy_perform(curl); 71 return (int)res;
|
lib539.c | 28 CURLcode res; local 51 res = curl_easy_perform(curl); 81 res = curl_easy_perform(curl); 90 return (int)res;
|
lib544.c | 43 CURLcode res=CURLE_OK; local 82 res = curl_easy_perform(curl); 90 return (int)res;
|
lib558.c | 30 CURLcode res = CURLE_OK; local 51 return (int)res;
|
lib566.c | 28 CURLcode res; local 47 res = curl_easy_perform(curl); 49 if(!res) { 51 res = curl_easy_getinfo(curl, CURLINFO_CONTENT_LENGTH_DOWNLOAD, 65 return (int)res;
|
lib583.c | 38 int res = 0; local 68 res = (int) curl_multi_remove_handle(multiHandle, curl); 69 if(res) 71 "with code %d\n", res); 83 return res;
|
/external/eigen/blas/f2c/ |
complexdots.c | 24 complex res; local 33 cdotcw_(n, &cx[1], incx, &cy[1], incy, &res); 34 return res; 40 complex res; local 49 cdotuw_(n, &cx[1], incx, &cy[1], incy, &res); 50 return res; 56 doublecomplex res; local 65 zdotcw_(n, &cx[1], incx, &cy[1], incy, &res); 66 return res; 72 doublecomplex res; local [all...] |
/external/elfutils/libdw/ |
dwarf_decl_line.c | 55 int res = INTUSE(dwarf_formudata) (INTUSE(dwarf_attr_integrate) local 58 if (res == 0) 63 res = -1; 69 return res;
|
dwarf_getsrcfiles.c | 50 int res = -1; local 61 res = INTUSE(dwarf_getsrclines) (cudie, &lines, &nlines); 65 res = 0; 67 if (likely (res == 0)) 77 return res;
|
/external/elfutils/libebl/ |
eblsectiontypename.c | 41 const char *res = ebl->section_type_name (section, buf, len); local 43 if (res == NULL) 70 res = knowntypes[section]; 85 res = sunwtypes[section - SHT_LOSUNW]; 92 res = "CHECKSUM"; 95 res = "GNU_LIBLIST"; 98 res = "GNU_HASH"; 101 res = "GNU_ATTRIBUTES"; 117 res = buf; 122 return res; [all...] |
/external/llvm/lib/Fuzzer/test/ |
StrcmpTest.cpp | 15 int res = strcmp(Buff, Str); local 16 return res == 0;
|
/external/netcat/ |
atomicio.c | 45 ssize_t res; local 51 res = (f) (fd, s + pos, n - pos); 52 switch (res) { 65 pos += (size_t)res;
|