HomeSort by relevance Sort by last modified time
    Searched refs:TDest (Results 1 - 2 of 2) sorted by null

  /external/dng_sdk/source/
dng_safe_arithmetic.h 190 // type TDest. If the value in 'src' cannot be converted to the type TDest
193 // Note: Though this function is typically used where TDest is a narrower type
194 // than TSrc, it is designed to work also if TDest is wider than from TSrc or
200 template <class TSrc, class TDest>
201 static void ConvertUnsigned(TSrc src, TDest *dest) {
204 std::numeric_limits<TDest>::is_integer &&
205 !std::numeric_limits<TDest>::is_signed,
206 "TSrc and TDest must be unsigned integer types");
208 const TDest converted = static_cast<TDest>(src)
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceTargetLoweringMIPS32.cpp     [all...]

Completed in 84 milliseconds