Searched refs:res (Results 1 – 5 of 5) sorted by relevance
/debug/ |
A D | realpath_chk.c | 45 char *res = __realpath (buf, NULL); in __realpath_chk() 46 if (res != NULL) in __realpath_chk() 48 size_t actlen = strlen (res) + 1; in __realpath_chk() 52 memcpy (resolved, res, actlen); in __realpath_chk() 53 free (res); in __realpath_chk() 54 res = resolved; in __realpath_chk() 57 return res; in __realpath_chk()
|
A D | getwd_chk.c | 26 char *res = __getcwd (buf, buflen); in __getwd_chk() local 27 if (res == NULL && errno == ERANGE) in __getwd_chk() 29 return res; in __getwd_chk()
|
A D | tst-realpath-chk.c | 30 char *res = realpath (".", buf); in do_test() local 31 TEST_VERIFY (res == buf); in do_test()
|
A D | test-strcpy_chk.c | 82 char *res; in do_one_test() local 91 res = CALL (impl, dst, src, dlen); in do_one_test() 100 res = CALL (impl, dst, src, dlen); in do_one_test() 102 if (res != STRCPY_RESULT (dst, len)) in do_one_test() 105 res, STRCPY_RESULT (dst, len)); in do_one_test() 150 unsigned char *res; in do_random_tests() local 219 res = (unsigned char *) in do_random_tests() 230 res = (unsigned char *) in do_random_tests() 232 if (res != STRCPY_RESULT (p2 + align2, len)) in do_random_tests() 236 n, impl->name, align1, align2, len, res, in do_random_tests()
|
A D | tst-chk1.c | 1655 int res = getdomainname (domainnamelarge, sizeof (domainnamelarge)); in do_test() local 1656 asm volatile ("" : : "r" (res)); in do_test() 1660 res = getdomainname (smallbuf, sizeof (domainnamelarge)); in do_test() 1661 asm volatile ("" : : "r" (res)); in do_test()
|
Completed in 9 milliseconds