OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nsecs
(Results
1 - 25
of
42
) sorted by null
1
2
/system/extras/memory_replay/
Thread.h
40
void AddTimeNsecs(uint64_t
nsecs
) { total_time_nsecs_ +=
nsecs
; }
/toolchain/binutils/binutils-2.25/bfd/
sco5-core.c
107
int coffset_siz, val,
nsecs
, cheadoffs;
local
186
|| (bfd_bread ((void *) &
nsecs
, (bfd_size_type) sizeof
nsecs
, abfd)
187
!= sizeof
nsecs
)
203
nsecs
--; /* We've seen CORES_OFFSETS already */
204
for (;
nsecs
;
nsecs
--)
223
nsecs
++; /* MAGIC not in section cnt!*/
versados.c
459
int
nsecs
= 0;
local
520
nsecs
++;
525
abfd->symcount +=
nsecs
;
560
/* Set this to
nsecs
- since we've already planted the section
562
VDATA (abfd)->nsecsyms =
nsecs
;
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/manage/
task.py
107
nsecs
= 5
110
boto.log.info('
nsecs
=%s, timeout=%s' % (
nsecs
, current_timeout))
111
if
nsecs
>= current_timeout:
117
nsecs
+= 5
/toolchain/binutils/binutils-2.25/gas/config/
te-vms.c
254
long long gmtoff, secs,
nsecs
;
local
286
nsecs
= buff.st_mtim.tv_nsec;
288
nsecs
= 0;
295
+ (
nsecs
/ 1000 * 10) + VMS_EPOCH_OFFSET;
/system/extras/memtrack/
memtrack.cpp
346
unsigned long long
nsecs
;
local
351
nsecs
= (unsigned long long)t.tv_sec*NS_PER_SEC + t.tv_nsec;
357
nsecs
= ((unsigned long long)t.tv_sec*NS_PER_SEC + t.tv_nsec) -
nsecs
;
358
printf("Scan Time %0.4f\n", ((double)
nsecs
)/NS_PER_SEC);
/cts/tests/tests/media/src/android/media/cts/
InputSurface.java
211
public void setPresentationTime(long
nsecs
) {
212
EGLExt.eglPresentationTimeANDROID(mEGLDisplay, mEGLSurface,
nsecs
);
/cts/tests/tests/opengl/src/android/opengl/cts/
FramebufferTest.java
417
public void setPresentationTime(EGLSurface eglSurface, long
nsecs
) {
418
EGLExt.eglPresentationTimeANDROID(mEGLDisplay, eglSurface,
nsecs
);
569
* @param
nsecs
Timestamp, in nanoseconds.
571
public void setPresentationTime(long
nsecs
) {
572
mEglCore.setPresentationTime(mEGLSurface,
nsecs
);