Lines Matching refs:tm
60 }, tm = tm_in; in main() local
98 assert(syscall(__NR_pselect6, fds[1] + 1, NULL, set[1], NULL, &tm.ts, NULL) == 3); in main()
104 fds[1], (long long) tm.ts.tv_sec, in main()
105 zero_extend_signed_to_ull(tm.ts.tv_nsec)); in main()
123 tm.ts.tv_sec = 0; in main()
124 tm.ts.tv_nsec = 123; in main()
125 assert(pselect(FD_SETSIZE + 1, set[0], set[1], NULL, &tm.ts, &mask) == 0); in main()
133 tm.ts.tv_sec = 0xdeadbeefU; in main()
134 tm.ts.tv_nsec = 0xfacefeedU; in main()
135 assert(pselect(0, NULL, NULL, NULL, &tm.ts, NULL) == -1); in main()
138 (long long) tm.ts.tv_sec, in main()
139 zero_extend_signed_to_ull(tm.ts.tv_nsec), in main()
142 tm.ts.tv_sec = (time_t) 0xcafef00ddeadbeefLL; in main()
143 tm.ts.tv_nsec = (long) 0xbadc0dedfacefeedLL; in main()
144 assert(pselect(0, NULL, NULL, NULL, &tm.ts, NULL) == -1); in main()
147 (long long) tm.ts.tv_sec, in main()
148 zero_extend_signed_to_ull(tm.ts.tv_nsec), in main()
154 tm.ts.tv_sec = 0; in main()
155 tm.ts.tv_nsec = 222222222; in main()
156 assert(pselect(0, NULL, NULL, NULL, &tm.ts, &mask) == -1); in main()