Searched defs:second (Results 1 - 4 of 4) sorted by relevance

/system/extras/tests/bionic/libc/bionic/
H A Dlib_relocs.c6 struct foo { int first, second; }; member in struct:foo
9 int* FooPtr[] = { &Foo.first, &Foo.second };
/system/core/fastboot/
H A Dbootimg.c42 void *second, unsigned second_size,
82 second, second_size);
40 mkbootimg(void *kernel, unsigned kernel_size, void *ramdisk, unsigned ramdisk_size, void *second, unsigned second_size, unsigned page_size, unsigned base, unsigned *bootimg_size) argument
/system/extras/tests/sdcard/
H A Dstopwatch.cpp136 long second = mData[i * 2].mTime.tv_sec - mStart.tv_sec; local
139 SNPRINTF_OR_RETURN(*str, *size, "%f %f\n", double(second) + double(nano) / 1.0e9, mDeltas[i]);
172 long second = mData[i + 1].mTime.tv_sec - mData[i].mTime.tv_sec; local
175 mDeltas[i / 2] = double(second) + double(nano) / 1.0e9;
/system/extras/tests/lib/testUtil/
H A DtestUtil.c101 // second, is later than the time pointed to by first.
103 const struct timespec *second)
108 assert(second != NULL);
110 assert(second->tv_nsec >= 0 && second->tv_nsec < nSecsPerSec);
111 rv.tv_sec = second->tv_sec - first->tv_sec;
112 if (second->tv_nsec >= first->tv_nsec) {
113 rv.tv_nsec = second->tv_nsec - first->tv_nsec;
115 rv.tv_nsec = (second->tv_nsec + nSecsPerSec) - first->tv_nsec;
124 // second, i
102 tsDelta(const struct timespec *first, const struct timespec *second) argument
125 tvDelta(const struct timeval *first, const struct timeval *second) argument
[all...]

Completed in 2203 milliseconds