Home
last modified time | relevance | path

Searched refs:is_representable (Results 1 – 5 of 5) sorted by relevance

/external/libcxx/test/libcxx/input.output/filesystems/
Dconvert_file_time.sh.cpp79 using Base::is_representable;
89 static_assert(is_representable(TimeSpecT{max_time_t, 0}), ""); in test_timespec()
90 static_assert(is_representable(TimeSpecT{max_time_t, 999999999}), ""); in test_timespec()
91 static_assert(is_representable(TimeSpecT{max_time_t, 1000000000}), ""); in test_timespec()
92 static_assert(is_representable(TimeSpecT{max_time_t, max_nsec}), ""); in test_timespec()
94 static_assert(is_representable(TimeSpecT{min_time_t, 0}), ""); in test_timespec()
95 static_assert(is_representable(TimeSpecT{min_time_t, 999999999}), ""); in test_timespec()
96 static_assert(is_representable(TimeSpecT{min_time_t, 1000000000}), ""); in test_timespec()
97 static_assert(is_representable(TimeSpecT{min_time_t, min_nsec_timespec}), in test_timespec()
105 static_assert(!Base::is_representable(FileTimeT::max()), ""); in test_file_time_type()
[all …]
/external/libcxx/src/filesystem/
Dfilesystem_common.h318 static _LIBCPP_CONSTEXPR_AFTER_CXX11 bool is_representable(TimeSpecT tm) {
329 static _LIBCPP_CONSTEXPR_AFTER_CXX11 bool is_representable(FileTimeT tm) {
375 if (!is_representable(tp))
Doperations.cpp998 if (!fs_time::is_representable(ts)) in __extract_last_write_time()
/external/v8/src/arm64/
Dmacro-assembler-arm64.cc1026 Label* is_not_representable, Label* is_representable) { in Abs() argument
1036 if ((is_not_representable != nullptr) && (is_representable != nullptr)) { in Abs()
1038 B(is_representable); in Abs()
1041 } else if (is_representable != nullptr) { in Abs()
1042 B(is_representable, vc); in Abs()
Dmacro-assembler-arm64.h1174 Label* is_representable = nullptr);