HomeSort by relevance Sort by last modified time
    Searched refs:Limits (Results 1 - 25 of 34) sorted by null

1 2

  /external/deqp/framework/common/
tcuFloatFormat.cpp 31 #include <limits>
273 typedef std::numeric_limits<T> Limits;
275 DE_ASSERT(Limits::radix == 2);
277 return FloatFormat(Limits::min_exponent - 1, // These have a built-in offset of one
278 Limits::max_exponent - 1,
279 Limits::digits - 1, // don't count the hidden bit
280 Limits::has_denorm != std::denorm_absent,
281 Limits::has_infinity ? YES : NO,
282 Limits::has_quiet_NaN ? YES : NO,
283 ((Limits::has_denorm == std::denorm_present) ? YES
    [all...]
  /external/v8/src/compiler/
types.h 300 struct Limits {
303 Limits(double min, double max) : min(min), max(max) {}
304 explicit Limits(const RangeType* range)
307 static Limits Empty() { return Limits(1, 0); }
308 static Limits Intersect(Limits lhs, Limits rhs);
309 static Limits Union(Limits lhs, Limits rhs)
    [all...]
types.cc 20 bool RangeType::Limits::IsEmpty() { return this->min > this->max; }
22 RangeType::Limits RangeType::Limits::Intersect(Limits lhs, Limits rhs) {
24 Limits result(lhs);
30 RangeType::Limits RangeType::Limits::Union(Limits lhs, Limits rhs)
    [all...]
  /external/libcxx/test/libcxx/type_traits/
convert_to_integral.pass.cpp 20 #include <limits>
37 typedef std::numeric_limits<From> Limits;
38 const From max = Limits::max();
39 const From min = Limits::min();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
CodeViewRecordIO.cpp 23 Limits.push_back(Limit);
28 assert(!Limits.empty() && "Not in a record!");
29 Limits.pop_back();
42 assert(!Limits.empty() && "Not in a record!");
49 Optional<uint32_t> Min = Limits.front().bytesRemaining(Offset);
50 for (auto X : makeArrayRef(Limits).drop_front()) {
  /external/grpc-grpc/third_party/nanopb/tests/backwards_compatibility/
alltypes_legacy.c 53 PB_FIELD( 1, INT32 , REQUIRED, STATIC , FIRST, Limits, int32_min, int32_min, &Limits_int32_min_default),
54 PB_FIELD( 2, INT32 , REQUIRED, STATIC , OTHER, Limits, int32_max, int32_min, &Limits_int32_max_default),
55 PB_FIELD( 3, UINT32 , REQUIRED, STATIC , OTHER, Limits, uint32_min, int32_max, &Limits_uint32_min_default),
56 PB_FIELD( 4, UINT32 , REQUIRED, STATIC , OTHER, Limits, uint32_max, uint32_min, &Limits_uint32_max_default),
57 PB_FIELD( 5, INT64 , REQUIRED, STATIC , OTHER, Limits, int64_min, uint32_max, &Limits_int64_min_default),
58 PB_FIELD( 6, INT64 , REQUIRED, STATIC , OTHER, Limits, int64_max, int64_min, &Limits_int64_max_default),
59 PB_FIELD( 7, UINT64 , REQUIRED, STATIC , OTHER, Limits, uint64_min, int64_max, &Limits_uint64_min_default),
60 PB_FIELD( 8, UINT64 , REQUIRED, STATIC , OTHER, Limits, uint64_max, uint64_min, &Limits_uint64_max_default),
61 PB_FIELD( 9, ENUM , REQUIRED, STATIC , OTHER, Limits, enum_min, uint64_max, &Limits_enum_min_default),
62 PB_FIELD( 10, ENUM , REQUIRED, STATIC , OTHER, Limits, enum_max, enum_min, &Limits_enum_max_default)
    [all...]
alltypes_legacy.h 45 } Limits;
  /external/nanopb-c/tests/backwards_compatibility/
alltypes_legacy.c 53 PB_FIELD( 1, INT32 , REQUIRED, STATIC , FIRST, Limits, int32_min, int32_min, &Limits_int32_min_default),
54 PB_FIELD( 2, INT32 , REQUIRED, STATIC , OTHER, Limits, int32_max, int32_min, &Limits_int32_max_default),
55 PB_FIELD( 3, UINT32 , REQUIRED, STATIC , OTHER, Limits, uint32_min, int32_max, &Limits_uint32_min_default),
56 PB_FIELD( 4, UINT32 , REQUIRED, STATIC , OTHER, Limits, uint32_max, uint32_min, &Limits_uint32_max_default),
57 PB_FIELD( 5, INT64 , REQUIRED, STATIC , OTHER, Limits, int64_min, uint32_max, &Limits_int64_min_default),
58 PB_FIELD( 6, INT64 , REQUIRED, STATIC , OTHER, Limits, int64_max, int64_min, &Limits_int64_max_default),
59 PB_FIELD( 7, UINT64 , REQUIRED, STATIC , OTHER, Limits, uint64_min, int64_max, &Limits_uint64_min_default),
60 PB_FIELD( 8, UINT64 , REQUIRED, STATIC , OTHER, Limits, uint64_max, uint64_min, &Limits_uint64_max_default),
61 PB_FIELD( 9, ENUM , REQUIRED, STATIC , OTHER, Limits, enum_min, uint64_max, &Limits_enum_min_default),
62 PB_FIELD( 10, ENUM , REQUIRED, STATIC , OTHER, Limits, enum_max, enum_min, &Limits_enum_max_default)
    [all...]
alltypes_legacy.h 45 } Limits;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
wasm2yaml.cpp 38 T.TableLimits.Flags = Table.Limits.Flags;
39 T.TableLimits.Initial = Table.Limits.Initial;
40 T.TableLimits.Maximum = Table.Limits.Maximum;
44 static WasmYAML::Limits make_limits(const wasm::WasmLimits &Limits) {
45 WasmYAML::Limits L;
46 L.Flags = Limits.Flags;
47 L.Initial = Limits.Initial;
48 L.Maximum = Limits.Maximum;
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_lowering_nvc0.h 68 struct Limits
70 Limits() { }
71 Limits(int min, int max) : min(min), max(max) { }
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
WasmYAML.h 47 struct Limits {
55 Limits TableLimits;
85 Limits Memory;
252 std::vector<Limits> Memories;
330 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::Limits)
398 template <> struct MappingTraits<WasmYAML::Limits> {
399 static void mapping(IO &IO, WasmYAML::Limits &Limits);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
WasmYAML.cpp 247 IO.mapRequired("Limits", Table.TableLimits);
285 void MappingTraits<WasmYAML::Limits>::mapping(IO &IO,
286 WasmYAML::Limits &Limits) {
287 if (!IO.outputting() || Limits.Flags)
288 IO.mapOptional("Flags", Limits.Flags);
289 IO.mapRequired("Initial", Limits.Initial);
290 if (!IO.outputting() || Limits.Flags & wasm::WASM_LIMITS_FLAG_HAS_MAX)
291 IO.mapOptional("Maximum", Limits.Maximum);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
CodeViewRecordIO.h 162 SmallVector<RecordLimit, 2> Limits;
  /external/grpc-grpc/third_party/nanopb/tests/alltypes_pointer/
encode_alltypes_pointer.c 90 /* Values for the Limits message. */
101 Limits req_limits = {&int32_min, &int32_max,
  /external/nanopb-c/tests/alltypes_pointer/
encode_alltypes_pointer.c 93 /* Values for the Limits message. */
104 Limits req_limits = {&int32_min, &int32_max,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/BinaryFormat/
Wasm.h 56 WasmLimits Limits;
  /external/webrtc/webrtc/modules/
module_common_types_unittest.cc 125 TEST(SequenceNumberUnwrapper, Limits) {
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
yaml2wasm.cpp 81 static int writeLimits(const WasmYAML::Limits &Lim, raw_ostream &OS) {
349 for (const WasmYAML::Limits &Mem : Section.Memories) {
  /external/deqp/external/openglcts/modules/gl/
gl3cTransformFeedbackTests.cpp 63 addChild(new TransformFeedback::Limits(m_context));
799 is SEPARATE_ATTRIBS and <count> is exceeds limits; */
811 " was SEPARATE_ATTRIBS and <count> was exceeds limits."
846 "<bufferMode> was SEPARATE_ATTRIBS and <count> exceeded limits."
887 limits of MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS and <param> is one of the
904 "limits of MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS and <param> was "
917 "limits of MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS and <param> was "
930 "limits of MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS and <param> was "
938 limits of MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS and <param> is
953 "limits of MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS and <param> was
    [all...]
gl3cTransformFeedbackTests.hpp 142 * is SEPARATE_ATTRIBS and <count> is exceeds limits;
146 * limits of MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS and <param> is one of the
152 * limits of MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS and <param> is
185 * <index> exceeds limits of MAX_VERTEX_STREAMS;
188 * limits of MAX_VERTEX_STREAMS;
192 * exceeds limits of MAX_VERTEX_STREAMS;
250 * - number of components specified to capture exceeds limits
277 /** Limits
279 * Verifies that limits reported by API are as expected.
292 class Limits : public deqp::TestCas
    [all...]
  /external/llvm/include/llvm/Support/
ScaledNumber.h 28 #include <limits>
782 typedef std::numeric_limits<IntT> Limits;
785 if (*this >= Limits::max())
786 return Limits::max();
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
ScaledNumber.h 28 #include <limits>
782 typedef std::numeric_limits<IntT> Limits;
785 if (*this >= Limits::max())
786 return Limits::max();
  /external/grpc-grpc/third_party/nanopb/tests/alltypes_callback/
decode_alltypes_callback.c 157 Limits decoded = {0};
  /external/nanopb-c/tests/alltypes_proto3_callback/
decode_alltypes_callback.c 164 Limits decoded = {0};

Completed in 483 milliseconds

1 2