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:NANOSEC
(Results
1 - 6
of
6
) sorted by relevance
/third_party/node/deps/uv/src/unix/
H
A
D
posix-hrtime.c
28
#undef
NANOSEC
macro
29
#define
NANOSEC
((uint64_t) 1e9)
macro
34
return (((uint64_t) ts.tv_sec) *
NANOSEC
+ ts.tv_nsec);
in uv__hrtime()
H
A
D
thread.c
44
#undef
NANOSEC
macro
45
#define
NANOSEC
((uint64_t) 1e9)
macro
813
ts.tv_sec = timeout /
NANOSEC
;
in uv_cond_timedwait()
814
ts.tv_nsec = timeout %
NANOSEC
;
in uv_cond_timedwait()
820
timeout += tv.tv_sec *
NANOSEC
+ tv.tv_usec * 1e3;
in uv_cond_timedwait()
824
ts.tv_sec = timeout /
NANOSEC
;
in uv_cond_timedwait()
825
ts.tv_nsec = timeout %
NANOSEC
;
in uv_cond_timedwait()
/third_party/libuv/test/
H
A
D
test-hrtime.c
29
#ifndef
NANOSEC
30
# define
NANOSEC
((uint64_t) 1e9)
macro
48
ASSERT_UINT64_GT(diff, (uint64_t) 25 *
NANOSEC
/ MILLISEC);
in TEST_IMPL()
H
A
D
benchmark-pound.c
28
#undef
NANOSEC
macro
29
#define
NANOSEC
((uint64_t) 1e9)
macro
300
secs = (double)(end_time - start_time) /
NANOSEC
;
in pound_it()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/sem_timedwait/
H
A
D
6-2.c
29
#define
NANOSEC
1000000000
macro
42
ts.tv_nsec =
NANOSEC
;
in main()
/third_party/libuv/src/unix/
H
A
D
thread.c
55
#undef
NANOSEC
macro
56
#define
NANOSEC
((uint64_t) 1e9)
macro
828
ts.tv_sec = timeout /
NANOSEC
;
in uv_cond_timedwait()
829
ts.tv_nsec = timeout %
NANOSEC
;
in uv_cond_timedwait()
835
timeout += tv.tv_sec *
NANOSEC
+ tv.tv_usec * 1e3;
in uv_cond_timedwait()
839
ts.tv_sec = timeout /
NANOSEC
;
in uv_cond_timedwait()
840
ts.tv_nsec = timeout %
NANOSEC
;
in uv_cond_timedwait()
Completed in 4 milliseconds