Home
last modified time | relevance | path

Searched refs:RepresentationType (Results 1 – 2 of 2) sorted by relevance

/external/ruy/ruy/
Dtime.h37 template <typename RepresentationType>
38 Duration DurationFromSeconds(RepresentationType representation) { in DurationFromSeconds()
40 std::chrono::duration<RepresentationType>(representation)); in DurationFromSeconds()
43 template <typename RepresentationType>
44 Duration DurationFromMilliseconds(RepresentationType representation) { in DurationFromMilliseconds()
46 std::chrono::duration<RepresentationType, std::milli>(representation)); in DurationFromMilliseconds()
49 template <typename RepresentationType>
50 Duration DurationFromNanoseconds(RepresentationType representation) { in DurationFromNanoseconds()
52 std::chrono::duration<RepresentationType, std::nano>(representation)); in DurationFromNanoseconds()
/external/llvm-project/clang/lib/AST/
DExprConstant.cpp7086 QualType RepresentationType = Ty->getDecl()->getIntegerType(); in visit() local
7087 assert(!RepresentationType.isNull() && in visit()
7090 RepresentationType.getCanonicalType()->castAs<BuiltinType>(); in visit()