HomeSort by relevance Sort by last modified time
    Searched refs:new_time (Results 1 - 25 of 28) sorted by null

1 2

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
reporter.cc 57 double new_time = real_accumulated_time * GetTimeUnitMultiplier(time_unit); local
58 if (iterations != 0) new_time /= static_cast<double>(iterations);
59 return new_time;
63 double new_time = cpu_accumulated_time * GetTimeUnitMultiplier(time_unit); local
64 if (iterations != 0) new_time /= static_cast<double>(iterations);
65 return new_time;
  /external/ltp/testcases/kernel/syscalls/stime/
stime01.c 88 time_t new_time; variable
121 new_time = real_time_tv.tv_sec + INCR_TIME;
127 * new_time.
129 if (stime(&new_time) < 0) {
130 tst_resm(TFAIL | TERRNO, "stime(%ld) failed", new_time);
144 switch (pres_time_tv.tv_sec - new_time) {
150 "to %ld", new_time);
156 new_time, pres_time_tv.tv_sec);
stime02.c 84 time_t new_time; /* system's new time */ variable
106 * to the specified new_time as non-root user.
108 TEST(stime(&new_time));
159 new_time = curr_time + INCR_TIME;
  /external/toolchain-utils/mem_tests/
clean_data.py 25 new_time = int(line.split(',')[0]) variable
26 dictionary[new_time] = line
  /external/google-benchmark/src/
reporter.cc 70 double new_time = real_accumulated_time * GetTimeUnitMultiplier(time_unit); local
71 if (iterations != 0) new_time /= static_cast<double>(iterations);
72 return new_time;
76 double new_time = cpu_accumulated_time * GetTimeUnitMultiplier(time_unit); local
77 if (iterations != 0) new_time /= static_cast<double>(iterations);
78 return new_time;
  /external/libcxx/utils/google-benchmark/src/
reporter.cc 70 double new_time = real_accumulated_time * GetTimeUnitMultiplier(time_unit); local
71 if (iterations != 0) new_time /= static_cast<double>(iterations);
72 return new_time;
76 double new_time = cpu_accumulated_time * GetTimeUnitMultiplier(time_unit); local
77 if (iterations != 0) new_time /= static_cast<double>(iterations);
78 return new_time;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/fs.op.funcs/fs.op.last_write_time/
last_write_time.pass.cpp 16 // void last_write_time(const path& p, file_time_type new_time);
241 file_time_type new_time;
259 last_write_time(TC.p, TC.new_time, ec);
264 if (TimeIsRepresentableByFilesystem(TC.new_time)) {
266 if (TC.new_time < epoch_time) {
267 TEST_CHECK(got_time <= TC.new_time);
268 TEST_CHECK(got_time > TC.new_time - Sec(1));
270 TEST_CHECK(got_time <= TC.new_time + Sec(1));
271 TEST_CHECK(got_time >= TC.new_time - Sec(1));
290 const file_time_type new_time = Clock::now() + Hours(3)
    [all...]
  /external/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.last_write_time/
last_write_time.pass.cpp 16 // void last_write_time(const path& p, file_time_type new_time);
269 file_time_type new_time;
287 last_write_time(TC.p, TC.new_time, ec);
292 if (TimeIsRepresentableByFilesystem(TC.new_time)) {
294 if (TC.new_time < epoch_time) {
295 TEST_CHECK(got_time <= TC.new_time);
296 TEST_CHECK(got_time > TC.new_time - Sec(1));
298 TEST_CHECK(got_time <= TC.new_time + Sec(1));
299 TEST_CHECK(got_time >= TC.new_time - Sec(1));
318 const file_time_type new_time = Clock::now() + Hours(3)
    [all...]
  /external/llvm/include/llvm/Support/
TimeValue.h 106 explicit TimeValue( double new_time )
108 SecondsType integer_part = static_cast<SecondsType>( new_time );
110 nanos_ = static_cast<NanoSecondsType>( (new_time -
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
TimeValue.h 94 explicit TimeValue( double new_time )
96 SecondsType integer_part = static_cast<SecondsType>( new_time );
98 nanos_ = static_cast<NanoSecondsType>( (new_time -
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
TimeValue.h 106 explicit TimeValue( double new_time )
108 SecondsType integer_part = static_cast<SecondsType>( new_time );
110 nanos_ = static_cast<NanoSecondsType>( (new_time -
  /system/extras/tests/sdcard/
plot_sdcard.py 71 new_time = []
78 new_time.append(t)
82 self.time = new_time
  /hardware/qcom/wlan/qcwcn/wcnss-service/
wcnss_service.c 278 struct utimbuf new_time; local
313 new_time.actime = st_src.st_atime;
314 new_time.modtime = st_src.st_mtime;
316 rc = utime(WLAN_INI_FILE_DEST, &new_time);
  /external/autotest/client/site_tests/video_YouTubePage/
video_YouTubePage.py 89 def seek_video(self, new_time):
92 @param new_time: Time to seek to.
95 self.tab.ExecuteJavaScript('window.__seek(%f);' % new_time)
  /system/update_engine/
payload_state.h 307 void SetBackoffExpiryTime(const base::Time& new_time);
payload_state.cc     [all...]
  /external/fonttools/Lib/fontTools/
merge.py 873 new_time = time.time()
874 print("Took %0.3fs to %s" %(new_time - self.last_time,
876 self.last_time = new_time
  /external/libcxx/src/experimental/filesystem/
operations.cpp 584 void __last_write_time(const path& p, file_time_type new_time,
605 &tbuf[1].tv_sec, &tbuf[1].tv_usec, new_time);
621 &tbuf[1].tv_sec, &tbuf[1].tv_nsec, new_time);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/experimental/filesystem/
operations.cpp 546 void __last_write_time(const path& p, file_time_type new_time,
569 &tbuf[1].tv_sec, &tbuf[1].tv_usec, new_time);
585 &tbuf[1].tv_sec, &tbuf[1].tv_nsec, new_time);
  /external/autotest/client/cros/power/
power_status.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
datetimemodule.c 721 #define new_time(hh, mm, ss, us, tzinfo) \ macro
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
datetimemodule.c 721 #define new_time(hh, mm, ss, us, tzinfo) \ macro
    [all...]
  /external/python/cpython2/Modules/
datetimemodule.c 721 #define new_time(hh, mm, ss, us, tzinfo) \ macro
    [all...]
  /external/perf_data_converter/src/quipper/
perf_parser_test.cc 46 uint64_t new_time = GetTimeFromPerfEvent(events.Get(i)); local
47 CHECK_LE(prev_time, new_time);
48 prev_time = new_time;
    [all...]
  /system/tpm/trunks/
mock_tpm.h     [all...]

Completed in 339 milliseconds

1 2