/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 | 94 double new_time = real_accumulated_time * GetTimeUnitMultiplier(time_unit); local 95 if (iterations != 0) new_time /= static_cast<double>(iterations); 96 return new_time; 100 double new_time = cpu_accumulated_time * GetTimeUnitMultiplier(time_unit); local 101 if (iterations != 0) new_time /= static_cast<double>(iterations); 102 return new_time;
|
/external/libcxx/utils/google-benchmark/src/ |
reporter.cc | 94 double new_time = real_accumulated_time * GetTimeUnitMultiplier(time_unit); local 95 if (iterations != 0) new_time /= static_cast<double>(iterations); 96 return new_time; 100 double new_time = cpu_accumulated_time * GetTimeUnitMultiplier(time_unit); local 101 if (iterations != 0) new_time /= static_cast<double>(iterations); 102 return new_time;
|
/external/libcxx/test/std/input.output/filesystems/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); 443 file_time_type new_time; 463 last_write_time(TC.p, TC.new_time, ec); 470 if (TimeIsRepresentableByFilesystem(TC.new_time)) { 472 TEST_CHECK(CompareTime(got_time, TC.new_time)); 487 const file_time_type new_time = Clock::now() + Hours(3); 493 last_write_time(sym, new_time, ec); 499 TEST_CHECK(got_time == new_time); 501 TEST_CHECK(CompareTime(got_time, new_time)); 504 TEST_CHECK(CompareTime(LastWriteTime(file), new_time)); [all...] |
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
local_path_info_unittest.py | 18 new_time = time0 + (days * 24 * 60 * 60) 19 os.utime(path, (new_time, new_time))
|
/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 -
|
/external/autotest/client/site_tests/video_YouTubePage/ |
video_YouTubePage.py | 95 def seek_video(self, new_time): 98 @param new_time: Time to seek to. 101 self.tab.ExecuteJavaScript('window.__seek(%f);' % 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...] |
/external/python/cpython3/Modules/ |
_datetimemodule.c | 1001 #define new_time(hh, mm, ss, us, tzinfo, fold) \ macro [all...] |
/external/libcxx/src/filesystem/ |
operations.cpp | 1016 void __last_write_time(const path& p, file_time_type new_time, error_code* ec) { 1035 if (!fs_time::convert_to_timespec(tbuf[1], new_time)) [all...] |