/misc/ |
A D | tst-dirname.c | 32 retval = strcmp (cp, result); in test() 35 input, result, cp); in test() 42 int result = 0; in do_test() local 47 result |= test ("usr", "."); in do_test() 48 result |= test ("/", "/"); in do_test() 49 result |= test (".", "."); in do_test() 50 result |= test ("..", "."); in do_test() 54 result |= test ("/usr", "/"); in do_test() 55 result |= test ("a//", "."); in do_test() 61 result |= test ("//", "//"); in do_test() [all …]
|
A D | lsearch.c | 27 void *result; in lsearch() local 30 result = lfind (key, base, nmemb, size, compar); in lsearch() 31 if (result == NULL) in lsearch() 34 result = memcpy (base + (*nmemb) * size, key, size); in lsearch() 38 return result; in lsearch() 46 const void *result = base; in lfind() local 49 while (cnt < *nmemb && (*compar) (key, result) != 0) in lfind() 51 result += size; in lfind() 55 return cnt < *nmemb ? (void *) result : NULL; in lfind()
|
A D | allocate_once.c | 28 void *result = allocate (closure); in __libc_allocate_once_slow() local 29 if (result == NULL) in __libc_allocate_once_slow() 38 if (atomic_compare_exchange_weak_release (place, &expected, result)) in __libc_allocate_once_slow() 39 return result; in __libc_allocate_once_slow() 51 free (result); in __libc_allocate_once_slow() 53 deallocate (closure, result); in __libc_allocate_once_slow() 57 return result; in __libc_allocate_once_slow()
|
A D | getauxval.c | 24 __getauxval2 (unsigned long int type, unsigned long int *result) in __getauxval2() argument 32 *result = GLRO(dl_hwcap); in __getauxval2() 37 *result = GLRO(dl_hwcap2); in __getauxval2() 45 *result = p->a_un.a_val; in __getauxval2() 57 unsigned long int result; in libc_hidden_def() local 59 if (__getauxval2 (type, &result)) in libc_hidden_def() 60 return result; in libc_hidden_def()
|
A D | tst-mntent.c | 9 int result = 0; in do_test() local 26 result = 1; in do_test() 33 result = 1; in do_test() 49 result = 1; in do_test() 55 result = 1; in do_test() 72 result = 1; in do_test() 76 return result; in do_test()
|
A D | tst-select.c | 94 struct support_capture_subprocess result; in do_test() local 95 result = support_capture_subprocess (do_test_child, &args); in do_test() 96 support_capture_subprocess_check (&result, "tst-select-child", 0, in do_test() 104 struct support_capture_subprocess result; in do_test() local 105 result = support_capture_subprocess (do_test_child, &args); in do_test() 113 struct support_capture_subprocess result; in do_test() local 114 result = support_capture_subprocess (do_test_child, &args); in do_test() 115 support_capture_subprocess_check (&result, "tst-select-child", 0, in do_test() 124 struct support_capture_subprocess result; in do_test() local 125 result = support_capture_subprocess (do_test_child_alarm, &args); in do_test() [all …]
|
A D | hsearch.c | 28 ENTRY *result; in hsearch() local 30 (void) __hsearch_r (item, action, &result, &htab); in hsearch() 32 return result; in hsearch()
|
A D | tst-mntent-blank-passno.c | 29 int result = 0; in do_test() local 46 result = 1; in do_test() 49 return result; in do_test()
|
A D | tst-mntent2.c | 9 int result = 0; in do_test() local 23 result = 1; \ in do_test() 40 return result; in do_test()
|
A D | tst-ldbl-error.c | 81 struct support_capture_subprocess result; in do_one_test() local 86 result = support_capture_subprocess (callback, NULL); in do_one_test() 93 message = strstr (result.err.buffer, needle); in do_one_test()
|
A D | mntent_r.c | 44 FILE *result = fopen (file, newmode); in __setmntent() local 46 if (result != NULL) in __setmntent() 48 __fsetlocking (result, FSETLOCKING_BYCALLER); in __setmntent() 50 return result; in __setmntent() 187 struct mntent *result; in __getmntent_r() local 199 result = mp; in __getmntent_r() 205 result = NULL; in __getmntent_r() 210 return result; in __getmntent_r()
|
A D | atomic_wide_counter.c | 67 uint64_t result = ((uint64_t) h << 31) | l; in __atomic_wide_counter_fetch_add_relaxed() local 84 return result; in __atomic_wide_counter_fetch_add_relaxed()
|
A D | tst-efgcvt-template.c | 56 char result[30]; member 154 || strcmp (p, tests[no].result) != 0) in test() 156 tests[no].result, tests[no].decpt, in test() 178 || strcmp (buf, tests[no].result) != 0) in test_r() 180 tests[no].result, tests[no].decpt, 0, in test_r()
|