Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:MSEC_PER_SEC
(Results
1 - 11
of
11
) sorted by relevance
/third_party/ltp/testcases/kernel/syscalls/epoll_pwait/
H
A
D
epoll_pwait_var.h
13
#define
MSEC_PER_SEC
(1000L)
macro
27
ts.tv_sec = timeout /
MSEC_PER_SEC
;
in do_epoll_pwait()
28
ts.tv_nsec = NSEC_PER_MSEC * (timeout %
MSEC_PER_SEC
);
in do_epoll_pwait()
/third_party/FreeBSD/sys/sys/
H
A
D
callout.h
44
#ifndef
MSEC_PER_SEC
45
#define
MSEC_PER_SEC
1000L
macro
/third_party/NuttX/fs/vfs/
H
A
D
fs_poll.c
46
#ifndef
MSEC_PER_SEC
47
#define
MSEC_PER_SEC
1000L
macro
459
millisecs_last = (curr_ticks - start_ticks) *
MSEC_PER_SEC
/ LOSCFG_BASE_CORE_TICK_PER_SECOND;
in poll()
470
wait_time.tv_sec = millisecs_left /
MSEC_PER_SEC
;
in poll()
471
wait_time.tv_nsec = (millisecs_left -
MSEC_PER_SEC
* wait_time.tv_sec) * NSEC_PER_MSEC;
in poll()
/third_party/FreeBSD/sys/kern/
H
A
D
kern_condvar.c
44
abstime.tv_sec = tw_ms /
MSEC_PER_SEC
;
in cv_timedwait()
45
abstime.tv_nsec = (tw_ms%
MSEC_PER_SEC
) * NSEC_PER_MSEC;
in cv_timedwait()
/third_party/eudev/src/shared/
H
A
D
time-util.h
39
#define
MSEC_PER_SEC
1000ULL
macro
/third_party/eudev/src/udev/
H
A
D
udev-event.c
508
timeout = ((timeout_usec - age_usec) / USEC_PER_MSEC) +
MSEC_PER_SEC
;
in spawn_read()
599
timeout_warn = ((timeout_warn_usec - age_usec) / USEC_PER_MSEC) +
MSEC_PER_SEC
;
in spawn_wait()
601
timeout = ((timeout_usec - timeout_warn_usec - age_usec) / USEC_PER_MSEC) +
MSEC_PER_SEC
;
in spawn_wait()
H
A
D
udevadm-settle.c
156
if (poll(pfd, 1,
MSEC_PER_SEC
) > 0 && pfd[0].revents & POLLIN)
in adm_settle()
H
A
D
udev-ctrl.c
293
r = poll(pfd, 1, timeout *
MSEC_PER_SEC
);
in ctrl_send()
H
A
D
udevd.c
1393
timeout = 30 *
MSEC_PER_SEC
;
in main()
1399
timeout = 3 *
MSEC_PER_SEC
;
in main()
/third_party/mesa3d/src/gallium/drivers/iris/
H
A
D
iris_fence.c
358
#define USEC_PER_SEC (1000 *
MSEC_PER_SEC
)
359
#define
MSEC_PER_SEC
(1000)
macro
/third_party/mesa3d/src/gallium/drivers/crocus/
H
A
D
crocus_fence.c
293
#define USEC_PER_SEC (1000 *
MSEC_PER_SEC
)
294
#define
MSEC_PER_SEC
(1000)
macro
Completed in 9 milliseconds