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:tv_end
(Results
1 - 3
of
3
) sorted by relevance
/third_party/ltp/testcases/realtime/func/measurement/
H
A
D
rdtsc-latency.c
75
unsigned long long tv_minus(struct timeval *tv_start, struct timeval *
tv_end
)
in tv_minus()
argument
78
nsecs = (
tv_end
->tv_sec - tv_start->tv_sec) * 1000000000ULL;
in tv_minus()
79
nsecs += (
tv_end
->tv_usec - tv_start->tv_usec) * 1000;
in tv_minus()
87
struct timeval
tv_end
;
in tsc_period_ps()
local
94
gettimeofday(&
tv_end
, NULL);
in tsc_period_ps()
96
return (1000 * tv_minus(&tv_start, &
tv_end
)) / tsc_minus(tsc_start,
in tsc_period_ps()
/third_party/ltp/testcases/kernel/device-drivers/cpufreq/
H
A
D
cpufreq_boost.c
145
struct timespec tv_start,
tv_end
;
in load_cpu()
local
157
clock_gettime(CLOCK_MONOTONIC_RAW, &
tv_end
);
in load_cpu()
159
total_time_ms = (
tv_end
.tv_sec - tv_start.tv_sec) * 1000 +
in load_cpu()
160
(
tv_end
.tv_nsec - tv_start.tv_nsec) / 1000000;
in load_cpu()
/third_party/backends/backend/
H
A
D
tamarack.c
561
struct timeval tv_start,
tv_end
;
in read_data()
local
577
gettimeofday (&
tv_end
,NULL);
in read_data()
578
dt =
tv_end
.tv_usec - tv_start.tv_usec +
in read_data()
579
(
tv_end
.tv_sec - tv_start.tv_sec) * 1000000;
in read_data()
Completed in 3 milliseconds