Searched refs:t (Results 1 – 6 of 6) sorted by relevance
/stdlib/ |
A D | tst-rand48-2.c | 9 time_t t = time (NULL); in do_test() local 16 srand48 ((long int) t); in do_test() 24 srand48_r ((long int) t, &data); in do_test() 32 buf[2] = (t & 0xffff0000) >> 16; buf[1] = (t & 0xffff); buf[0] = 0x330e; in do_test() 40 buf[2] = (t & 0xffff0000) >> 16; buf[1] = (t & 0xffff); buf[0] = 0x330e; in do_test() 48 srand48 ((long int) t); in do_test() 64 buf[2] = (t & 0xffff0000) >> 16; buf[1] = (t & 0xffff); buf[0] = 0x330e; in do_test() 72 buf[2] = (t & 0xffff0000) >> 16; buf[1] = (t & 0xffff); buf[0] = 0x330e; in do_test() 80 srand48 ((long int) t); in do_test() 96 buf[2] = (t & 0xffff0000) >> 16; buf[1] = (t & 0xffff); buf[0] = 0x330e; in do_test() [all …]
|
A D | msort.c | 34 char *t; member 55 char *tmp = p->t; in msort_with_tmp() 159 memcpy (b, p->t, (n - n2) * s); in msort_with_tmp() 176 p.t = __alloca (size); in __qsort_r() 230 p.t = tmp; in __qsort_r() 242 void **tp = (void **) (p.t + n * sizeof (void *)); in __qsort_r() 243 void **t = tp; in __qsort_r() local 246 while ((void *) t < tmp_storage) in __qsort_r() 248 *t++ = ip; in __qsort_r() 253 msort_with_tmp (&p, p.t + n * sizeof (void *), n); in __qsort_r()
|
A D | tst-tls-atexit.c | 90 pthread_t t; in spawn_thread() local 94 if ((ret = pthread_create (&t, NULL, reg_dtor_and_close, h)) != 0) in spawn_thread() 100 if ((ret = pthread_join (t, &thr_ret)) != 0) in spawn_thread()
|
A D | tst-strfrom.h | 56 struct test_input t; member 67 struct test_input t; member 83 rc = FTOSTR (sbuf, stest[i].size, stest[i].fmt, stest[i].t.FSUF); \ 94 rc = FTOSTR (buf, tests[i].size, tests[i].fmt, tests[i].t.FSUF); \ 105 rc = FTOSTR (buf, 50, htest[i].fmt, htest[i].t.FSUF); \
|
A D | gen-fpioconst.c | 93 const char *t = (i >= 10 ? "\t" : "\t\t"); in main() local 96 i, i, t, exp_p); in main() 99 i, i, t, exp_p, exp_m); in main()
|
A D | longlong.h | 45 #define __ll_lowpart(t) ((UWtype) (t) & (__ll_B - 1)) argument 46 #define __ll_highpart(t) ((UWtype) (t) >> (W_TYPE_SIZE / 2)) argument
|
Completed in 12 milliseconds