/external/tensorflow/tensorflow/compiler/mlir/lite/quantization/ |
D | device_target.cc | 36 constexpr unsigned kSigned = quant::QuantizationFlags::Signed; variable 41 i8_min_ = QuantizedType::getDefaultMinimumForInteger(kSigned, k8Bits); in DeviceTarget() 42 i8_max_ = QuantizedType::getDefaultMaximumForInteger(kSigned, k8Bits); in DeviceTarget() 44 i32_min_ = QuantizedType::getDefaultMinimumForInteger(kSigned, k32Bits); in DeviceTarget() 45 i32_max_ = QuantizedType::getDefaultMaximumForInteger(kSigned, k32Bits); in DeviceTarget() 47 qi8_ = AnyQuantizedType::get(kSigned, i8_, f32_, i8_min_, i8_max_); in DeviceTarget() 48 qi8n_ = AnyQuantizedType::get(kSigned, i8_, f32_, i8_min_ + 1, i8_max_); in DeviceTarget() 49 qi32_ = AnyQuantizedType::get(kSigned, i32_, f32_, i32_min_, i32_max_); in DeviceTarget()
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | comparison_util.cc | 64 {"SIGNED", Comparison::Type::kSigned}, in StringToComparisonType() 80 case Comparison::Type::kSigned: in ComparisonTypeToString() 98 return Type::kSigned; in DefaultComparisonType() 129 case Type::kSigned: in Inverse()
|
D | comparison_util.h | 33 kSigned, enumerator 63 inline bool IsSigned() const { return type_ == Type::kSigned; } in IsSigned()
|
/external/skia/src/sksl/ |
D | SkSLBuiltinTypes.cpp | 99 "int", "i", Type::NumberKind::kSigned, /*priority=*/7, /*highPrecision=*/true)) in BuiltinTypes() 108 , fShort(MakeScalarType("short", "s", Type::NumberKind::kSigned, /*priority=*/4)) in BuiltinTypes()
|
/external/vixl/src/aarch64/ |
D | cpu-aarch64.cc | 40 const IDRegister::Field AA64PFR0::kFP(16, Field::kSigned); 41 const IDRegister::Field AA64PFR0::kAdvSIMD(20, Field::kSigned); 200 case Field::kSigned: in Get()
|
D | cpu-aarch64.h | 57 enum Type { kUnsigned, kSigned }; enumerator
|
/external/skqp/tools/bookmaker/ |
D | bookmaker.h | 83 kSigned, enumerator
|
D | includeParser.cpp | 43 { "signed", KeyWord::kSigned, KeyProperty::kNumber },
|
/external/swiftshader/third_party/SPIRV-Tools/test/val/ |
D | val_id_test.cpp | 789 enum Signed { kSigned, kUnsigned }; enumerator 816 ss << " %t = OpTypeInt " << width << (isSigned == kSigned ? " 1" : " 0"); in MakeArrayLength() 866 Val(CompileSuccessfully(MakeArrayLength("1", kSigned, width)))); in TEST_P() 870 Val(CompileSuccessfully(MakeArrayLength("2", kSigned, width)))); in TEST_P() 874 Val(CompileSuccessfully(MakeArrayLength("55", kSigned, width)))); in TEST_P() 880 Val(CompileSuccessfully(MakeArrayLength("0x7" + fpad, kSigned, width)))) in TEST_P() 881 << MakeArrayLength("0x7" + fpad, kSigned, width); in TEST_P() 887 Val(CompileSuccessfully(MakeArrayLength("0", kSigned, width)), in TEST_P() 899 Val(CompileSuccessfully(MakeArrayLength("-1", kSigned, width)), in TEST_P() 903 Val(CompileSuccessfully(MakeArrayLength("-2", kSigned, width)), in TEST_P() [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/val/ |
D | val_id_test.cpp | 789 enum Signed { kSigned, kUnsigned }; enumerator 816 ss << " %t = OpTypeInt " << width << (isSigned == kSigned ? " 1" : " 0"); in MakeArrayLength() 866 Val(CompileSuccessfully(MakeArrayLength("1", kSigned, width)))); in TEST_P() 870 Val(CompileSuccessfully(MakeArrayLength("2", kSigned, width)))); in TEST_P() 874 Val(CompileSuccessfully(MakeArrayLength("55", kSigned, width)))); in TEST_P() 880 Val(CompileSuccessfully(MakeArrayLength("0x7" + fpad, kSigned, width)))) in TEST_P() 881 << MakeArrayLength("0x7" + fpad, kSigned, width); in TEST_P() 887 Val(CompileSuccessfully(MakeArrayLength("0", kSigned, width)), in TEST_P() 899 Val(CompileSuccessfully(MakeArrayLength("-1", kSigned, width)), in TEST_P() 903 Val(CompileSuccessfully(MakeArrayLength("-2", kSigned, width)), in TEST_P() [all …]
|
/external/deqp-deps/SPIRV-Tools/test/val/ |
D | val_id_test.cpp | 789 enum Signed { kSigned, kUnsigned }; enumerator 816 ss << " %t = OpTypeInt " << width << (isSigned == kSigned ? " 1" : " 0"); in MakeArrayLength() 866 Val(CompileSuccessfully(MakeArrayLength("1", kSigned, width)))); in TEST_P() 870 Val(CompileSuccessfully(MakeArrayLength("2", kSigned, width)))); in TEST_P() 874 Val(CompileSuccessfully(MakeArrayLength("55", kSigned, width)))); in TEST_P() 880 Val(CompileSuccessfully(MakeArrayLength("0x7" + fpad, kSigned, width)))) in TEST_P() 881 << MakeArrayLength("0x7" + fpad, kSigned, width); in TEST_P() 887 Val(CompileSuccessfully(MakeArrayLength("0", kSigned, width)), in TEST_P() 899 Val(CompileSuccessfully(MakeArrayLength("-1", kSigned, width)), in TEST_P() 903 Val(CompileSuccessfully(MakeArrayLength("-2", kSigned, width)), in TEST_P() [all …]
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | comparison_expander.cc | 127 Comparison::Type::kSigned)); in ExpandInstruction()
|
/external/skia/src/sksl/ir/ |
D | SkSLType.h | 98 kSigned, enumerator 201 return fNumberKind == NumberKind::kSigned; in isSigned()
|
/external/llvm-project/llvm/tools/llvm-exegesis/lib/ |
D | BenchmarkResult.cpp | 252 static constexpr const bool kSigned = false; member 258 << RV.Value.toString(kRadix, kSigned); in output()
|
/external/skia/src/sksl/codegen/ |
D | SkSLVMCodeGenerator.cpp | 664 if (srcKind == Type::NumberKind::kSigned) { in writeTypeConversion() 680 case Type::NumberKind::kSigned: in writeTypeConversion() 698 if (srcKind == Type::NumberKind::kSigned) { in writeTypeConversion() 1281 case Type::NumberKind::kSigned: in writePrefixExpression() 1294 case Type::NumberKind::kSigned: in writePrefixExpression() 1323 case Type::NumberKind::kSigned: in writePostfixExpression()
|
/external/skia/tools/viewer/ |
D | ParticlesSlide.cpp | 368 case NumberKind::kSigned: dataType = ImGuiDataType_S32; break; in draw()
|
/external/tensorflow/tensorflow/compiler/xla/client/ |
D | xla_builder_test.cc | 1321 EXPECT_EQ(Comparison::Type::kSigned, in TEST_F()
|
/external/tensorflow/tensorflow/compiler/mlir/xla/transforms/ |
D | mhlo_to_lhlo_with_xla.cc | 1000 case xla::Comparison::Type::kSigned: in EmitCompareOp()
|
/external/libabigail/tests/data/test-read-dwarf/ |
D | test19-pr19023-libtcmalloc_and_profiler.so.abi | 8370 <enumerator name='kSigned' value='1'/> 14714 <enumerator name='kSigned' value='1'/>
|
/external/libabigail/tests/data/test-annotate/ |
D | test19-pr19023-libtcmalloc_and_profiler.so.abi | 13710 <enumerator name='kSigned' value='1'/> 23726 <enumerator name='kSigned' value='1'/>
|