Searched refs:tv (Results 1 - 5 of 5) sorted by relevance

/ndk/sources/host-tools/sed-4.2.1/lib/
H A Dgettimeofday.c106 rpl_gettimeofday (struct timeval *restrict tv, void *restrict tz) argument
116 int result = gettimeofday (tv, tz);
130 tv->tv_sec = timebuf.time;
131 tv->tv_usec = timebuf.millitm * 1000;
139 tv->tv_sec = time (NULL);
140 tv->tv_usec = 0;
H A Dtempname.c91 struct timeval tv; \
92 __gettimeofday (&tv, NULL); \
93 value = ((uint64_t) tv.tv_usec << 16) ^ tv.tv_sec; \
242 struct timeval tv; local
243 __gettimeofday (&tv, NULL);
244 random_time_bits = ((uint64_t) tv.tv_usec << 16) ^ tv.tv_sec;
/ndk/tests/device/test-gnustl-full/unit/
H A Dequal_test.cpp105 vector<Test> tv; local
110 tv.push_back(i);
113 it = upper_bound(tv.begin(), tv.end(), 5);
114 CPPUNIT_ASSERT( it != tv.end() );
117 it = lower_bound(tv.begin(), tv.end(), 5);
118 CPPUNIT_ASSERT( it != tv.end() );
121 p = equal_range(tv.begin(), tv
[all...]
/ndk/tests/device/test-stlport/unit/
H A Dequal_test.cpp105 vector<Test> tv; local
110 tv.push_back(i);
113 it = upper_bound(tv.begin(), tv.end(), 5);
114 CPPUNIT_ASSERT( it != tv.end() );
117 it = lower_bound(tv.begin(), tv.end(), 5);
118 CPPUNIT_ASSERT( it != tv.end() );
121 p = equal_range(tv.begin(), tv
[all...]
/ndk/sources/host-tools/sed-4.2.1/
H A Dconfigure16654 struct timeval tv;
16657 gettimeofday (&tv, NULL);

Completed in 98 milliseconds