Home
last modified time | relevance | path

Searched refs:second (Results 1 – 15 of 15) sorted by relevance

/system/extras/tests/lib/testUtil/
DtestUtil.c103 const struct timespec *second) in tsDelta() argument
108 assert(second != NULL); in tsDelta()
110 assert(second->tv_nsec >= 0 && second->tv_nsec < nSecsPerSec); in tsDelta()
111 rv.tv_sec = second->tv_sec - first->tv_sec; in tsDelta()
112 if (second->tv_nsec >= first->tv_nsec) { in tsDelta()
113 rv.tv_nsec = second->tv_nsec - first->tv_nsec; in tsDelta()
115 rv.tv_nsec = (second->tv_nsec + nSecsPerSec) - first->tv_nsec; in tsDelta()
126 const struct timeval *second) in tvDelta() argument
131 assert(second != NULL); in tvDelta()
133 assert(second->tv_usec >= 0 && second->tv_usec < uSecsPerSec); in tvDelta()
[all …]
/system/extras/memtrack/
Dmemtrack.cpp172 it->second.pids.clear(); in scan()
211 if (it->second.pids.size() > all_[it->first].max_num_pids) { in scan()
212 all_[it->first].max_num_pids = it->second.pids.size(); in scan()
215 all_[it->first].pids = it->second.pids; in scan()
217 if (it->second.pss_kb > all_[it->first].max_pss_kb) { in scan()
218 all_[it->first].max_pss_kb = it->second.pss_kb; in scan()
222 it->second.pss_kb < all_[it->first].min_pss_kb) { in scan()
223 all_[it->first].min_pss_kb = it->second.pss_kb; in scan()
226 all_[it->first].last_pss_kb = it->second.pss_kb; in scan()
228 computeAvg(&all_[it->first].avg_pss_kb, it->second.pss_kb, in scan()
[all …]
/system/extras/tests/bionic/libc/bionic/
Dlib_relocs.c6 struct foo { int first, second; }; member
9 int* FooPtr[] = { &Foo.first, &Foo.second };
/system/extras/tests/include/
DtestUtil.h33 const struct timespec *second);
35 const struct timeval *second);
/system/extras/tests/sdcard/
Dstopwatch.cpp136 long second = mData[i * 2].mTime.tv_sec - mStart.tv_sec; in sprint() local
139 … SNPRINTF_OR_RETURN(*str, *size, "%f %f\n", double(second) + double(nano) / 1.0e9, mDeltas[i]); in sprint()
172 long second = mData[i + 1].mTime.tv_sec - mData[i].mTime.tv_sec; in processSamples() local
175 mDeltas[i / 2] = double(second) + double(nano) / 1.0e9; in processSamples()
/system/core/fastboot/
Dbootimg.c42 void *second, unsigned second_size, unsigned second_offset, in mkbootimg() argument
85 second, second_size); in mkbootimg()
Dfastboot.c66 void *second, unsigned second_size, unsigned second_offset,
/system/media/camera/docs/
Dmetadata_helpers.py543 second = first # for when we have only 1 element in iterable
547 second = next(it)
550 first = second
553 yield (second, True)
/system/core/fastbootd/
Dbootimg.h92 void *second, unsigned second_size,
/system/core/include/log/
Dlog.h515 #define __android_second(dummy, second, ...) second argument
/system/core/libnl_2/
DREADME28 * After this header a second header *can* be used specific to the netlink
/system/core/sh/
Dnodetypes54 ch2 nodeptr # the second child
DTOUR253 substitution. The second (ifsbreakup) performs word splitting
/system/core/init/
Dreadme.txt20 Actions and Services have unique names. If a second Action or Service
/system/core/adb/
Dprotocol.txt34 unsigned arg1; /* second argument */