/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | validate_logicals.cpp | 198 const uint32_t left_type = _.GetOperandTypeId(inst, 3); in LogicalsPass() local 220 if (result_type != left_type || result_type != right_type) in LogicalsPass() 244 const uint32_t left_type = _.GetOperandTypeId(inst, 2); in LogicalsPass() local 247 if (!left_type || in LogicalsPass() 248 (!_.IsIntScalarType(left_type) && !_.IsIntVectorType(left_type))) in LogicalsPass() 253 if (_.GetDimension(result_type) != _.GetDimension(left_type)) in LogicalsPass() 269 if (_.GetBitWidth(left_type) != _.GetBitWidth(right_type)) in LogicalsPass()
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | validate_logicals.cpp | 198 const uint32_t left_type = _.GetOperandTypeId(inst, 3); in LogicalsPass() local 220 if (result_type != left_type || result_type != right_type) in LogicalsPass() 244 const uint32_t left_type = _.GetOperandTypeId(inst, 2); in LogicalsPass() local 247 if (!left_type || in LogicalsPass() 248 (!_.IsIntScalarType(left_type) && !_.IsIntVectorType(left_type))) in LogicalsPass() 253 if (_.GetDimension(result_type) != _.GetDimension(left_type)) in LogicalsPass() 269 if (_.GetBitWidth(left_type) != _.GetBitWidth(right_type)) in LogicalsPass()
|
/external/angle/third_party/spirv-tools/src/source/val/ |
D | validate_logicals.cpp | 198 const uint32_t left_type = _.GetOperandTypeId(inst, 3); in LogicalsPass() local 220 if (result_type != left_type || result_type != right_type) in LogicalsPass() 244 const uint32_t left_type = _.GetOperandTypeId(inst, 2); in LogicalsPass() local 247 if (!left_type || in LogicalsPass() 248 (!_.IsIntScalarType(left_type) && !_.IsIntVectorType(left_type))) in LogicalsPass() 253 if (_.GetDimension(result_type) != _.GetDimension(left_type)) in LogicalsPass() 269 if (_.GetBitWidth(left_type) != _.GetBitWidth(right_type)) in LogicalsPass()
|
/external/v8/src/compiler/ |
D | type-narrowing-reducer.cc | 28 Type left_type = NodeProperties::GetType(node->InputAt(0)); in Reduce() local 30 if (left_type.Is(Type::PlainNumber()) && in Reduce() 32 if (left_type.Max() < right_type.Min()) { in Reduce() 34 } else if (left_type.Min() >= right_type.Max()) { in Reduce()
|
D | js-typed-lowering.cc | 150 if (!left_type().Is(Type::Receiver())) { in CheckInputsToReceiver() 165 if (!left_type().Is(Type::ReceiverOrNullOrUndefined())) { in CheckInputsToReceiverOrNullOrUndefined() 189 if (!left_type().Is(Type::Symbol())) { in CheckInputsToSymbol() 204 if (!left_type().Is(Type::String())) { in CheckInputsToString() 224 if (!left_type().Is(Type::UniqueName())) { in CheckInputsToInternalizedString() 240 DCHECK(left_type().Is(Type::PlainPrimitive())); in ConvertInputsToNumber() 358 bool LeftInputIs(Type t) { return left_type().Is(t); } in LeftInputIs() 367 return left_type().Maybe(t) && right_type().Maybe(t); in BothInputsMaybe() 371 return !left_type().Maybe(t) || !right_type().Maybe(t); in OneInputCannotBe() 375 return !left_type().Maybe(t) && !right_type().Maybe(t); in NeitherInputCanBe() [all …]
|
D | typed-optimization.cc | 521 Type left_type = NodeProperties::GetType(left); in ReduceStringComparison() local 523 if (!left_type.Is(type_cache_->kUint16)) { in ReduceStringComparison()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_pred_common.h | 75 const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS; in get_pred_context_switchable_interp() local 80 if (left_type == above_type) in get_pred_context_switchable_interp() 81 return left_type; in get_pred_context_switchable_interp() 82 else if (left_type == SWITCHABLE_FILTERS) in get_pred_context_switchable_interp() 85 return left_type; in get_pred_context_switchable_interp()
|
/external/libaom/libaom/av1/common/ |
D | pred_common.c | 41 int left_type = SWITCHABLE_FILTERS; in av1_get_pred_context_switchable_interp() local 45 left_type = get_ref_filter_type(xd->mi[-1], xd, dir, ref_frame); in av1_get_pred_context_switchable_interp() 51 if (left_type == above_type) { in av1_get_pred_context_switchable_interp() 52 filter_type_ctx += left_type; in av1_get_pred_context_switchable_interp() 53 } else if (left_type == SWITCHABLE_FILTERS) { in av1_get_pred_context_switchable_interp() 57 assert(left_type != SWITCHABLE_FILTERS); in av1_get_pred_context_switchable_interp() 58 filter_type_ctx += left_type; in av1_get_pred_context_switchable_interp()
|
/external/libgav1/libgav1/src/tile/bitstream/ |
D | mode_info.cc | 1209 int left_type = kNumExplicitInterpolationFilters; in GetInterpolationFilterCdf() local 1213 left_type = block.bp_left->interpolation_filter[direction]; in GetInterpolationFilterCdf() 1216 if (left_type == top_type) { in GetInterpolationFilterCdf() 1217 context += left_type; in GetInterpolationFilterCdf() 1218 } else if (left_type == kNumExplicitInterpolationFilters) { in GetInterpolationFilterCdf() 1221 context += left_type; in GetInterpolationFilterCdf()
|
/external/v8/src/compiler/backend/ia32/ |
D | instruction-selector-ia32.cc | 1384 MachineType left_type = MachineTypeForNarrow(left, right); in TryNarrowOpcodeSize() local 1386 if (left_type == right_type) { in TryNarrowOpcodeSize() 1387 switch (left_type.representation()) { in TryNarrowOpcodeSize() 1392 if (left_type.semantic() == MachineSemantic::kUint32) { in TryNarrowOpcodeSize() 1395 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic()); in TryNarrowOpcodeSize() 1404 if (left_type.semantic() == MachineSemantic::kUint32) { in TryNarrowOpcodeSize() 1407 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic()); in TryNarrowOpcodeSize()
|
/external/v8/src/compiler/backend/x64/ |
D | instruction-selector-x64.cc | 1937 MachineType left_type = MachineTypeForNarrow(left, right); in TryNarrowOpcodeSize() local 1939 if (left_type == right_type) { in TryNarrowOpcodeSize() 1940 switch (left_type.representation()) { in TryNarrowOpcodeSize() 1945 if (left_type.semantic() == MachineSemantic::kUint32) { in TryNarrowOpcodeSize() 1948 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic()); in TryNarrowOpcodeSize() 1957 if (left_type.semantic() == MachineSemantic::kUint32) { in TryNarrowOpcodeSize() 1960 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic()); in TryNarrowOpcodeSize()
|
/external/deqp/external/openglcts/modules/gl/ |
D | gl4cCopyImageTests.cpp | 133 …static bool unpackAndComaprePixels(glw::GLenum left_format, glw::GLenum left_type, glw::GLenum lef… 2472 bool Utils::unpackAndComaprePixels(GLenum left_format, GLenum left_type, GLenum left_internal_forma… in unpackAndComaprePixels() argument 2485 unpackPixel(left_format, left_type, left_pixel, left_red, left_green, left_blue, left_alpha); in unpackAndComaprePixels()
|
/external/v8/src/codegen/ |
D | code-stub-assembler.cc | 11286 TNode<Uint16T> left_type = LoadMapInstanceType(left_map); in Equal() local 11289 GotoIf(IsStringInstanceType(left_type), &if_left_string); in Equal() 11290 GotoIf(IsSymbolInstanceType(left_type), &if_left_symbol); in Equal() 11291 GotoIf(IsHeapNumberInstanceType(left_type), &if_left_number); in Equal() 11292 GotoIf(IsOddballInstanceType(left_type), &if_left_oddball); in Equal() 11293 Branch(IsBigIntInstanceType(left_type), &if_left_bigint, in Equal() 11302 SmiOr(CollectFeedbackForString(left_type), in Equal() 11312 GotoIf(Word32NotEqual(left_type, right_type), &if_right_not_number); in Equal() 11506 CSA_ASSERT(this, IsJSReceiverInstanceType(left_type)); in Equal()
|