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:tsc_end
(Results
1 - 5
of
5
) sorted by relevance
/third_party/ltp/testcases/realtime/func/async_handler/
H
A
D
async_handler_tsc.c
100
unsigned long long tsc_start,
tsc_end
;
in tsc_period_ps()
local
105
rdtscll(
tsc_end
);
in tsc_period_ps()
108
return (1000 * (ns_end - ns_start)) / tsc_minus(tsc_start,
tsc_end
);
in tsc_period_ps()
/third_party/ltp/testcases/realtime/func/measurement/
H
A
D
rdtsc-latency.c
88
unsigned long long tsc_start,
tsc_end
;
in tsc_period_ps()
local
93
rdtscll(
tsc_end
);
in tsc_period_ps()
97
tsc_end
);
in tsc_period_ps()
/third_party/alsa-lib/test/
H
A
D
mixtest.c
72
unsigned long long tsc_begin,
tsc_end
;
in detect_cpu_clock()
local
82
rdtscll(
tsc_end
);
in detect_cpu_clock()
85
return (
tsc_end
- tsc_begin) / (tm_end.tv_sec - tm_begin.tv_sec + (tm_end.tv_nsec - tm_begin.tv_nsec) / 1e9);
in detect_cpu_clock()
/third_party/ltp/testcases/realtime/lib/
H
A
D
librttest.c
509
unsigned long long
tsc_end
)
in tsc_minus()
512
if (tsc_start <=
tsc_end
)
in tsc_minus()
513
delta =
tsc_end
- tsc_start;
in tsc_minus()
515
delta = ULL_MAX - (
tsc_end
- tsc_start) + 1;
in tsc_minus()
508
tsc_minus(unsigned long long tsc_start, unsigned long long
tsc_end
)
tsc_minus()
argument
/third_party/ltp/testcases/realtime/include/
H
A
D
librttest.h
307
unsigned long long tsc_minus(unsigned long long tsc_start, unsigned long long
tsc_end
);
Completed in 4 milliseconds