OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NSECS_PER_SEC
(Results
1 - 6
of
6
) sorted by null
/external/linux-tools-perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
Util.pm
30
my $
NSECS_PER_SEC
= 1000000000;
36
return $secs * $
NSECS_PER_SEC
+ $nsecs;
42
return $nsecs / $
NSECS_PER_SEC
;
48
return $nsecs % $
NSECS_PER_SEC
;
/external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
Util.py
17
NSECS_PER_SEC
= 1000000000
23
return secs *
NSECS_PER_SEC
+ nsecs
26
return nsecs /
NSECS_PER_SEC
29
return nsecs %
NSECS_PER_SEC
/external/linux-tools-perf/util/scripting-engines/
trace-event-perl.c
278
s = nsecs /
NSECS_PER_SEC
;
279
ns = nsecs - s *
NSECS_PER_SEC
;
trace-event-python.c
249
s = nsecs /
NSECS_PER_SEC
;
250
ns = nsecs - s *
NSECS_PER_SEC
;
/external/linux-tools-perf/util/
trace-event.h
29
#define
NSECS_PER_SEC
1000000000ULL
/external/linux-tools-perf/
builtin-script.c
255
secs = nsecs /
NSECS_PER_SEC
;
256
nsecs -= secs *
NSECS_PER_SEC
;
Completed in 1773 milliseconds