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:abs_ts
(Results
1 - 3
of
3
) sorted by relevance
/third_party/musl/porting/linux/user/src/internal/
H
A
D
pthread_impl.h
247
static inline void __absolute_timespec_from_timespec(struct timespec *
abs_ts
,
in __absolute_timespec_from_timespec()
argument
250
if (
abs_ts
== NULL || ts == NULL) {
in __absolute_timespec_from_timespec()
253
clock_gettime(clock,
abs_ts
);
in __absolute_timespec_from_timespec()
254
abs_ts
->tv_sec += ts->tv_sec;
in __absolute_timespec_from_timespec()
255
abs_ts
->tv_nsec += ts->tv_nsec;
in __absolute_timespec_from_timespec()
256
if (
abs_ts
->tv_nsec >= NS_PER_S) {
in __absolute_timespec_from_timespec()
257
abs_ts
->tv_nsec -= NS_PER_S;
in __absolute_timespec_from_timespec()
258
abs_ts
->tv_sec++;
in __absolute_timespec_from_timespec()
/third_party/musl/src/internal/
H
A
D
pthread_impl.h
244
static inline void __absolute_timespec_from_timespec(struct timespec *
abs_ts
,
in __absolute_timespec_from_timespec()
argument
247
if (
abs_ts
== NULL || ts == NULL) {
in __absolute_timespec_from_timespec()
250
clock_gettime(clock,
abs_ts
);
in __absolute_timespec_from_timespec()
251
abs_ts
->tv_sec += ts->tv_sec;
in __absolute_timespec_from_timespec()
252
abs_ts
->tv_nsec += ts->tv_nsec;
in __absolute_timespec_from_timespec()
253
if (
abs_ts
->tv_nsec >= NS_PER_S) {
in __absolute_timespec_from_timespec()
254
abs_ts
->tv_nsec -= NS_PER_S;
in __absolute_timespec_from_timespec()
255
abs_ts
->tv_sec++;
in __absolute_timespec_from_timespec()
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H
A
D
lp_fence.c
133
struct timespec ts,
abs_ts
;
in lp_fence_timedwait()
local
138
bool ts_overflow = timespec_add_nsec(&
abs_ts
, &ts, timeout);
in lp_fence_timedwait()
149
ret = cnd_timedwait(&f->signalled, &f->mutex, &
abs_ts
);
in lp_fence_timedwait()
Completed in 2 milliseconds