/aosp12/hardware/qcom/camera/msm8998/QCamera2/HAL/ |
H A D | QCameraStateMachine.cpp | 363 result.result_type = QCAMERA_API_RESULT_TYPE_DEF; in procEvtPreviewStoppedState() 378 result.result_type = QCAMERA_API_RESULT_TYPE_DEF; in procEvtPreviewStoppedState() 392 result.result_type = QCAMERA_API_RESULT_TYPE_DEF; in procEvtPreviewStoppedState() 406 result.result_type = QCAMERA_API_RESULT_TYPE_DEF; in procEvtPreviewStoppedState() 432 result.result_type = QCAMERA_API_RESULT_TYPE_DEF; in procEvtPreviewStoppedState() 441 result.result_type = QCAMERA_API_RESULT_TYPE_DEF; in procEvtPreviewStoppedState() 450 result.result_type = QCAMERA_API_RESULT_TYPE_DEF; in procEvtPreviewStoppedState() 488 result.result_type = QCAMERA_API_RESULT_TYPE_DEF; in procEvtPreviewStoppedState() 506 result.result_type = QCAMERA_API_RESULT_TYPE_DEF; in procEvtPreviewStoppedState() 538 result.result_type = QCAMERA_API_RESULT_TYPE_DEF; in procEvtPreviewStoppedState() [all …]
|
H A D | QCameraStateMachine.h | 116 qcamera_api_result_type_t result_type; // result type member
|
/aosp12/system/core/toolbox/ |
H A D | getprop.cpp | 38 void PrintAllProperties(ResultType result_type) { in PrintAllProperties() argument 55 if (result_type != ResultType::Value) { in PrintAllProperties() 60 if (result_type == ResultType::Context) { in PrintAllProperties() 74 switch (result_type) { in PrintProperty() 94 auto result_type = ResultType::Value; in getprop_main() local 119 if (result_type != ResultType::Value) { in getprop_main() 123 result_type = ResultType::Type; in getprop_main() 126 if (result_type != ResultType::Value) { in getprop_main() 130 result_type = ResultType::Context; in getprop_main() 140 if (result_type != ResultType::Value) { in getprop_main() [all …]
|
/aosp12/art/compiler/optimizing/ |
H A D | data_type.h | 217 static bool IsZeroExtension(Type input_type, Type result_type) { in IsZeroExtension() argument 218 return IsIntOrLongType(result_type) && in IsZeroExtension() 220 Size(result_type) > Size(input_type); in IsZeroExtension() 262 DCHECK_NE(DataType::Type::kVoid, result_type); in IsTypeConversionImplicit() 266 DCHECK_NE(DataType::Type::kBool, result_type); in IsTypeConversionImplicit() 271 return result_type == input_type || in IsTypeConversionImplicit() 272 (result_type != Type::kInt64 && in IsTypeConversionImplicit() 274 IsIntegralType(result_type) && in IsTypeConversionImplicit() 280 if (IsIntegralType(result_type) && result_type != Type::kInt64) { in IsTypeConversionImplicit() 283 return value >= MinValueOfIntegralType(result_type) && in IsTypeConversionImplicit() [all …]
|
H A D | nodes_x86.h | 71 HX86FPNeg(DataType::Type result_type, in HX86FPNeg() argument 75 : HExpression(kX86FPNeg, result_type, SideEffects::None(), dex_pc) { in HX86FPNeg() 76 DCHECK(DataType::IsFloatingPointType(result_type)); in HX86FPNeg() 133 HX86AndNot(DataType::Type result_type, 137 : HBinaryOperation(kX86AndNot, result_type, left, right, SideEffects::None(), dex_pc) { 171 HX86MaskOrResetLeastSetBit(DataType::Type result_type, InstructionKind op, 173 : HUnaryOperation(kX86MaskOrResetLeastSetBit, result_type, input, dex_pc), 175 DCHECK_EQ(result_type, DataType::Kind(input->GetType()));
|
H A D | nodes_shared.cc | 45 DataType::Type result_type = instruction->AsTypeConversion()->GetResultType(); in GetOpInfoFromInstruction() local 47 int result_size = DataType::Size(result_type); in GetOpInfoFromInstruction() 50 if (result_type == DataType::Type::kInt32 && input_type == DataType::Type::kInt64) { in GetOpInfoFromInstruction() 57 } else if (result_type == DataType::Type::kUint8 || in GetOpInfoFromInstruction() 60 } else if (result_type == DataType::Type::kUint16 || in GetOpInfoFromInstruction()
|
H A D | data_type_test.cc | 92 DataType::Type result_type = kIntegralResultTypes[result_index]; in TEST() local 94 DataType::IsTypeConversionImplicit(input_type, result_type)) in TEST() 95 << input_type << " " << result_type; in TEST() 102 for (DataType::Type result_type : kIntegralResultTypes) { in TEST() local 103 EXPECT_FALSE(DataType::IsTypeConversionImplicit(DataType::Type::kFloat32, result_type)); in TEST() 104 EXPECT_FALSE(DataType::IsTypeConversionImplicit(DataType::Type::kFloat64, result_type)); in TEST()
|
H A D | instruction_simplifier_shared.h | 29 DataType::Type result_type = conversion->GetResultType(); in CanFitInShifterOperand() local 32 return DataType::IsIntegralType(result_type) && DataType::IsIntegralType(input_type) && in CanFitInShifterOperand() 33 (result_type != input_type); in CanFitInShifterOperand()
|
H A D | graph_checker.cc | 1044 DataType::Type result_type = instruction->GetType(); in VisitNeg() local 1045 if (result_type != DataType::Kind(input_type)) { in VisitNeg() 1049 DataType::PrettyDescriptor(result_type), in VisitNeg() 1058 DataType::Type result_type = op->GetType(); in VisitBinaryOperation() local 1080 if (result_type != DataType::Type::kInt32) { in VisitBinaryOperation() 1088 if (result_type != DataType::Kind(lhs_type)) { in VisitBinaryOperation() 1096 if (DataType::Kind(result_type) != DataType::Kind(lhs_type)) { in VisitBinaryOperation() 1103 if (DataType::Kind(result_type) != DataType::Kind(rhs_type)) { in VisitBinaryOperation() 1137 DataType::Type result_type = instruction->GetResultType(); in VisitTypeConversion() local 1140 if (result_type == DataType::Type::kBool) { in VisitTypeConversion() [all …]
|
H A D | instruction_simplifier.cc | 1175 << input_type << "," << result_type; in IsTypeConversionLossless() 1181 return DataType::Size(result_type) > DataType::Size(input_type) && in IsTypeConversionLossless() 1182 result_type != DataType::Type::kUint16 && in IsTypeConversionLossless() 1211 DataType::Type result_type = type_conversion->GetResultType(); in IsTypeConversionForStoringIntoNoWiderFieldOnly() local 1213 !DataType::IsIntegralType(result_type) || in IsTypeConversionForStoringIntoNoWiderFieldOnly() 1215 result_type == DataType::Type::kInt64) { in IsTypeConversionForStoringIntoNoWiderFieldOnly() 1220 if (DataType::Size(input_type) >= DataType::Size(result_type)) { in IsTypeConversionForStoringIntoNoWiderFieldOnly() 1259 DataType::Type result_type = instruction->GetResultType(); in VisitTypeConversion() local 1283 DataType::IsIntegralType(result_type) && in VisitTypeConversion() 1284 DataType::Size(result_type) <= DataType::Size(input_type); in VisitTypeConversion() [all …]
|
H A D | instruction_simplifier_arm.cc | 283 DataType::Type result_type = instruction->GetResultType(); in VisitTypeConversion() local 286 if (input_type == result_type) { in VisitTypeConversion() 291 if (DataType::IsIntegralType(result_type) && DataType::IsIntegralType(input_type)) { in VisitTypeConversion()
|
H A D | instruction_simplifier_arm64.cc | 254 DataType::Type result_type = instruction->GetResultType(); in VisitTypeConversion() local 257 if (input_type == result_type) { in VisitTypeConversion() 262 if (DataType::IsIntegralType(result_type) && DataType::IsIntegralType(input_type)) { in VisitTypeConversion()
|
H A D | nodes.h | 5266 HAdd(DataType::Type result_type, 5302 HSub(DataType::Type result_type, 5336 HMul(DataType::Type result_type, 5372 HDiv(DataType::Type result_type, 5420 HRem(DataType::Type result_type, 5468 HMin(DataType::Type result_type, 5503 HMax(DataType::Type result_type, 5605 HShl(DataType::Type result_type, 5651 HShr(DataType::Type result_type, 5745 HAnd(DataType::Type result_type, [all …]
|
H A D | nodes_shared.h | 67 HBitwiseNegatedRight(DataType::Type result_type, 73 result_type,
|
/aosp12/hardware/qcom/sm7250/media/libplatformconfig/ |
H A D | PlatformConfig.cpp | 116 result.result_type = Result::NOT_FOUND; in getConfigStoreBool() 121 if (result.result_type != Result::SUCCESS) { in getConfigStoreBool() 123 result.result_type); in getConfigStoreBool()
|
/aosp12/system/iorap/src/inode2filename/ |
H A D | inode.h | 130 using result_type = size_t; 131 result_type operator()(argument_type const& s) const noexcept { 134 result_type const h1 = std::hash<size_t>{}(s.inode);
|
/aosp12/system/bt/service/common/bluetooth/ |
H A D | scan_settings.cc | 28 ResultType result_type, in ScanSettings() argument 34 result_type_(result_type), in ScanSettings()
|
H A D | scan_settings.h | 117 ResultType result_type, base::TimeDelta report_delay_ms, 130 ResultType result_type() const { return result_type_; } in result_type() function
|
/aosp12/hardware/qcom/sm8150/media/libplatformconfig/ |
H A D | PlatformConfig.cpp | 120 if (result.result_type != Result::SUCCESS) { in getConfigStoreBool() 122 result.result_type); in getConfigStoreBool()
|
/aosp12/system/chre/apps/wifi_offload/test/include/ |
H A D | random_generator.h | 55 std::random_device::result_type initial_seed_;
|
/aosp12/system/media/audio_utils/benchmarks/ |
H A D | intrinsic_benchmark.cpp | 44 constexpr std::minstd_rand::result_type SEED = 42; // arbitrary choice. in BM_Intrinsic()
|
H A D | biquad_filter_benchmark.cpp | 48 constexpr std::minstd_rand::result_type SEED = 42; // arbitrary choice. in BM_BiquadFilter1D()
|
/aosp12/art/runtime/entrypoints/ |
H A D | entrypoint_utils.cc | 117 ObjPtr<mirror::Class> result_type = interface_method->ResolveReturnType(); in InvokeProxyInvocationHandler() local 120 if (!UnboxPrimitiveForResult(result_ref, result_type, &result_unboxed)) { in InvokeProxyInvocationHandler()
|
/aosp12/art/libartbase/base/ |
H A D | utils.h | 104 typedef uint32_t result_type; typedef
|
/aosp12/system/bt/gd/l2cap/classic/ |
H A D | facade.proto | 93 SendL2capPacketResultType result_type = 1;
|