Searched refs:FixedPoint (Results 1 - 3 of 3) sorted by relevance
/external/gemmlowp/fixedpoint/ |
H A D | fixedpoint.h | 36 // abstractions, namely the FixedPoint class and its arithmetic 339 // Part 2: the FixedPoint class. 341 // A FixedPoint object represents a fixed-point value stored in the underlying 344 // case a FixedPoint object represents a corresponding SIMD vector of fixed 369 class FixedPoint { class in namespace:gemmlowp 382 typedef FixedPoint<ScalarRawType, kIntegerBits> ScalarFixedPointType; 400 static FixedPoint FromRaw(RawType x) { 401 FixedPoint retval; 406 static FixedPoint FromScalarRaw(ScalarRawType x) { 407 FixedPoint retva [all...] |
/external/gemmlowp/test/ |
H A D | test_fixedpoint.cc | 71 // as higher-level FixedPoint objects. The motivation for this design is 1) to 73 // class FixedPoint, and 2) to allow directly testing low-level functions 76 // wrapping raw values in FixedPoint objects. 141 using F = FixedPoint<std::int32_t, 0>; 148 using F = FixedPoint<tRawType, 0>; 162 using F = FixedPoint<std::int32_t, tIntegerBits>; 163 using F0 = FixedPoint<std::int32_t, 0>; 170 using F = FixedPoint<tRawType, tIntegerBits>; 182 using F = FixedPoint<std::int32_t, 0>; 189 using F = FixedPoint<tRawTyp [all...] |
/external/gemmlowp/internal/ |
H A D | output.h | 239 inverse_amplitude_normalized = FixedPoint<DataType, 0>::FromDouble( 249 FixedPoint<DataType, 0>::FromDouble(amplitude_normalized_double); 255 typedef FixedPoint<DataType, 3> F3; 256 typedef FixedPoint<DataType, 0> F0; 292 FixedPoint<DataType, 0> inverse_amplitude_normalized; 294 FixedPoint<DataType, 0> amplitude_normalized;
|
Completed in 199 milliseconds