HomeSort by: relevance | last modified time | path
    Searched defs:ts32 (Results 1 - 17 of 17) sorted by relevancy

  /src/sys/compat/netbsd32/
netbsd32_compat_60.c 59 struct netbsd32_timespec ts32; local
65 error = copyin(SCARG_P32(uap, ts), &ts32, sizeof ts32);
68 netbsd32_to_timespec(&ts32, &ts);
netbsd32_futex.c 62 struct netbsd32_timespec ts32; local
70 error = copyin(SCARG_P32(uap, timeout), &ts32, sizeof(ts32));
73 netbsd32_to_timespec(&ts32, &ts);
netbsd32_select.c 97 struct netbsd32_timespec ts32; local
102 error = copyin(SCARG_P32(uap, ts), &ts32, sizeof(ts32));
105 netbsd32_to_timespec(&ts32, &ats);
130 struct netbsd32_timespec ts32; local
135 error = copyin(SCARG_P32(uap, ts), &ts32, sizeof(ts32));
138 netbsd32_to_timespec(&ts32, &ats);
netbsd32_event.c 52 struct netbsd32_timespec ts32; local
57 error = copyin(src, &ts32, sizeof(ts32));
60 netbsd32_to_timespec(&ts32, (struct timespec *)dest);
netbsd32_epoll.c 109 struct netbsd32_timespec ts32; local
111 error = copyin(SCARG_P32(uap, timeout), &ts32, sizeof(ts32));
115 netbsd32_to_timespec(&ts32, &ts);
netbsd32_lwp.c 177 struct netbsd32_timespec ts32; local
184 error = copyin(SCARG_P32(uap, ts), &ts32, sizeof ts32);
187 netbsd32_to_timespec(&ts32, &ts);
199 netbsd32_from_timespec(&ts, &ts32);
200 (void)copyout(&ts32, SCARG_P32(uap, ts), sizeof(ts32));
netbsd32_mqueue.c 271 struct netbsd32_timespec ts32; local
276 error = copyin(SCARG_P32(uap, abs_timeout), &ts32,
277 sizeof(ts32));
280 netbsd32_to_timespec(&ts32, &ts);
302 struct netbsd32_timespec ts32; local
308 error = copyin(SCARG_P32(uap, abs_timeout), &ts32,
309 sizeof(ts32));
312 netbsd32_to_timespec(&ts32, &ts);
341 struct netbsd32_timespec50 ts32; local
346 error = copyin(SCARG_P32(uap, abs_timeout), &ts32,
373 struct netbsd32_timespec50 ts32; local
    [all...]
netbsd32_sem.c 171 struct netbsd32_timespec ts32; local
178 error = copyin(SCARG_P32(uap, abstime), &ts32, sizeof(ts32));
181 netbsd32_to_timespec(&ts32, &ts);
netbsd32_ipc.c 218 struct netbsd32_timespec ts32; local
247 error = copyin(utimeout, &ts32, sizeof(ts32));
250 error, utimeout, &ts32, sizeof(ts32)));
253 netbsd32_to_timespec(&ts32, &timeout);
netbsd32_socket.c 275 struct netbsd32_timespec ts32; local
282 if ((error = copyin(SCARG_P32(uap, timeout), &ts32,
283 sizeof(ts32))) != 0)
286 netbsd32_to_timespec(&ts32, &ts);
netbsd32_signal.c 585 struct netbsd32_timespec ts32; local
588 error = copyin(src, &ts32, sizeof(ts32));
592 netbsd32_to_timespec(&ts32, ts);
600 struct netbsd32_timespec ts32; local
602 netbsd32_from_timespec(ts, &ts32);
604 return copyout(&ts32, dst, sizeof(ts32));
netbsd32_time.c 307 struct netbsd32_timespec ts32; local
313 netbsd32_from_timespec(&ats, &ts32);
314 return copyout(&ts32, SCARG_P32(uap, tp), sizeof(ts32));
324 struct netbsd32_timespec ts32; local
328 if ((error = copyin(SCARG_P32(uap, tp), &ts32, sizeof(ts32))) != 0)
331 netbsd32_to_timespec(&ts32, &ats);
342 struct netbsd32_timespec ts32; local
351 netbsd32_from_timespec(&ts, &ts32);
365 struct netbsd32_timespec ts32; local
393 struct netbsd32_timespec ts32; local
    [all...]
netbsd32_compat_50.c 327 struct netbsd32_timespec50 ts32; local
333 netbsd32_from_timespec50(&ats, &ts32);
334 return copyout(&ts32, SCARG_P32(uap, tp), sizeof(ts32));
345 struct netbsd32_timespec50 ts32; local
349 if ((error = copyin(SCARG_P32(uap, tp), &ts32, sizeof(ts32))) != 0)
352 netbsd32_to_timespec50(&ts32, &ats);
364 struct netbsd32_timespec50 ts32; local
373 netbsd32_from_timespec50(&ts, &ts32);
446 struct netbsd32_timespec50 ts32; local
480 struct netbsd32_timespec50 ts32; local
495 struct netbsd32_timespec50 ts32; local
559 struct netbsd32_timespec50 ts32; local
585 struct netbsd32_timespec50 ts32; local
634 struct netbsd32_timespec50 ts32; local
667 struct netbsd32_timespec50 ts32; local
    [all...]
netbsd32_fs.c 358 struct netbsd32_timespec ts32[2]; local
365 error = copyin(tptr, ts32, sizeof(ts32));
368 netbsd32_to_timespec(&ts32[0], &ts[0]);
369 netbsd32_to_timespec(&ts32[1], &ts[1]);
  /src/crypto/external/apache2/openssl/dist/engines/
e_afalg.c 163 struct __timespec32 ts32; local
165 ts32.tv_sec = (__kernel_long_t)timeout->tv_sec;
166 ts32.tv_nsec = (__kernel_long_t)timeout->tv_nsec;
168 return syscall(__NR_io_getevents, ctx, min, max, events, &ts32);
  /src/crypto/external/bsd/openssl/dist/engines/
e_afalg.c 163 struct __timespec32 ts32; local
165 ts32.tv_sec = (__kernel_long_t) timeout->tv_sec;
166 ts32.tv_nsec = (__kernel_long_t) timeout->tv_nsec;
168 return syscall(__NR_io_getevents, ctx, min, max, events, &ts32);
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
MachO.h 1730 x86_thread_state32_t ts32; member in union:llvm::MachO::x86_thread_state_t::__anon3812
1848 arm_thread_state32_t ts32; member in union:llvm::MachO::arm_thread_state_t::__anon3815
1870 swapStruct(x.uts.ts32);
1973 ppc_thread_state32_t ts32; member in union:llvm::MachO::ppc_thread_state_t::__anon3816
1995 swapStruct(x.uts.ts32);

Completed in 26 milliseconds