Searched defs:second (Results 1 - 5 of 5) 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, unsigned second_offset,
85 second, second_size);
40 mkbootimg(void *kernel, unsigned kernel_size, unsigned kernel_offset, void *ramdisk, unsigned ramdisk_size, unsigned ramdisk_offset, void *second, unsigned second_size, unsigned second_offset, unsigned page_size, unsigned base, unsigned tags_offset, 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/memtrack/
H A Dmemtrack.cpp172 it->second.pids.clear();
211 if (it->second.pids.size() > all_[it->first].max_num_pids) {
212 all_[it->first].max_num_pids = it->second.pids.size();
215 all_[it->first].pids = it->second.pids;
217 if (it->second.pss_kb > all_[it->first].max_pss_kb) {
218 all_[it->first].max_pss_kb = it->second.pss_kb;
222 it->second.pss_kb < all_[it->first].min_pss_kb) {
223 all_[it->first].min_pss_kb = it->second.pss_kb;
226 all_[it->first].last_pss_kb = it->second.pss_kb;
228 computeAvg(&all_[it->first].avg_pss_kb, it->second
234 comparePss(const process_info_t *first, const process_info_t *second) argument
[all...]
/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 1706 milliseconds