/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/ |
D | vp9_pred_common.c | 29 const int left_type = left_mbmi != NULL && is_inter_block(left_mbmi) ? in vp9_get_pred_context_switchable_interp() local 35 if (left_type == above_type) in vp9_get_pred_context_switchable_interp() 36 return left_type; in vp9_get_pred_context_switchable_interp() 37 else if (left_type == SWITCHABLE_FILTERS && above_type != SWITCHABLE_FILTERS) in vp9_get_pred_context_switchable_interp() 39 else if (left_type != SWITCHABLE_FILTERS && above_type == SWITCHABLE_FILTERS) in vp9_get_pred_context_switchable_interp() 40 return left_type; in vp9_get_pred_context_switchable_interp()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_pred_common.c | 29 const int left_type = left_mbmi != NULL && is_inter_block(left_mbmi) ? in vp9_get_pred_context_switchable_interp() local 35 if (left_type == above_type) in vp9_get_pred_context_switchable_interp() 36 return left_type; in vp9_get_pred_context_switchable_interp() 37 else if (left_type == SWITCHABLE_FILTERS && above_type != SWITCHABLE_FILTERS) in vp9_get_pred_context_switchable_interp() 39 else if (left_type != SWITCHABLE_FILTERS && above_type == SWITCHABLE_FILTERS) in vp9_get_pred_context_switchable_interp() 40 return left_type; in vp9_get_pred_context_switchable_interp()
|
/external/chromium_org/v8/src/ |
D | typing.cc | 609 Type* left_type; in VisitBinaryOperation() local 614 &left_type, &right_type, &type, &fixed_right_arg, in VisitBinaryOperation() 617 NarrowLowerType(expr->left(), left_type); in VisitBinaryOperation() 709 Type* left_type; in VisitCompareOperation() local 713 &left_type, &right_type, &combined_type); in VisitCompareOperation() 714 NarrowLowerType(expr->left(), left_type); in VisitCompareOperation()
|
D | type-info.cc | 177 Type** left_type, in CompareType() argument 183 *left_type = *right_type = *combined_type = Type::None(zone()); in CompareType() 199 *left_type = CompareICState::StateToType(zone(), stub.left()); in CompareType() 205 *left_type = *right_type = stub.GetInputType(zone(), map); in CompareType()
|
D | code-stubs-hydrogen.cc | 1032 Type* left_type = state.GetLeftType(zone()); in BuildCodeInitializedStub() local 1036 DCHECK(!left_type->Is(Type::None()) && !right_type->Is(Type::None()) && in BuildCodeInitializedStub() 1042 (left_type->Maybe(Type::String()) || right_type->Maybe(Type::String())) && in BuildCodeInitializedStub() 1043 !left_type->Is(Type::String()) && !right_type->Is(Type::String())) { in BuildCodeInitializedStub() 1046 if (left_type->Maybe(Type::String())) { in BuildCodeInitializedStub() 1061 left_type, right_type, result_type, in BuildCodeInitializedStub() 1073 left_type, Type::String(zone()), in BuildCodeInitializedStub() 1081 left_type, right_type, result_type, in BuildCodeInitializedStub() 1090 left_type, right_type, result_type, in BuildCodeInitializedStub() 1133 Type* left_type = state.GetLeftType(zone()); in BuildCodeStub() local [all …]
|
D | hydrogen.cc | 10232 Type* left_type = expr->left()->bounds().lower; in BuildBinaryOperation() local 10244 expr->op(), left, right, left_type, right_type, result_type, in BuildBinaryOperation() 10266 Type* left_type, in BuildBinaryOperation() argument 10272 Representation left_rep = Representation::FromType(left_type); in BuildBinaryOperation() 10276 (left_type->Maybe(Type::String()) || in BuildBinaryOperation() 10277 left_type->Maybe(Type::Receiver()) || in BuildBinaryOperation() 10281 if (!left_type->IsInhabited()) { in BuildBinaryOperation() 10286 left_type = Type::Any(zone()); in BuildBinaryOperation() 10288 if (!maybe_string_add) left = TruncateToNumber(left, &left_type); in BuildBinaryOperation() 10289 left_rep = Representation::FromType(left_type); in BuildBinaryOperation() [all …]
|
D | hydrogen.h | 1455 Type* left_type, 2580 Type* left_type,
|
/external/chromium_org/v8/src/compiler/ |
D | js-typed-lowering.cc | 131 Type* left_type() { return left_type_; } in left_type() function in v8::internal::compiler::JSBinopReduction 381 if (!r.left_type()->Maybe(Type::NaN())) { in ReduceJSStrictEqual() 386 if (!r.left_type()->Maybe(r.right_type())) { in ReduceJSStrictEqual()
|
/external/chromium_org/v8/src/arm64/ |
D | code-stubs-arm64.cc | 297 Register left_type, in EmitStrictTwoHeapObjectCompare() argument 300 DCHECK(!AreAliased(left, right, left_type, right_type, scratch)); in EmitStrictTwoHeapObjectCompare() 329 __ Ccmp(left_type, ODDBALL_TYPE, ZFlag, ne); in EmitStrictTwoHeapObjectCompare() 333 __ Ccmp(left_type, FIRST_SPEC_OBJECT_TYPE, NVFlag, ne); in EmitStrictTwoHeapObjectCompare() 341 __ Orr(scratch, left_type, right_type); in EmitStrictTwoHeapObjectCompare() 423 Register left_type, in EmitCheckForInternalizedStringsOrObjects() argument 427 DCHECK(!AreAliased(left, right, left_map, right_map, left_type, right_type)); in EmitCheckForInternalizedStringsOrObjects() 436 __ Tbnz(left_type, MaskToBit(kIsNotStringMask), not_both_strings); in EmitCheckForInternalizedStringsOrObjects() 437 __ Tbnz(left_type, MaskToBit(kIsNotInternalizedMask), possible_strings); in EmitCheckForInternalizedStringsOrObjects() 450 __ Ccmp(left_type, FIRST_SPEC_OBJECT_TYPE, NFlag, ge); in EmitCheckForInternalizedStringsOrObjects() [all …]
|
/external/chromium_org/v8/test/cctest/compiler/ |
D | test-js-typed-lowering.cc | 107 Node* ReduceBinop(const Operator* op, Type* left_type, Type* right_type) { in ReduceBinop() argument 108 return reduce(Binop(op, Parameter(left_type, 0), Parameter(right_type, 1))); in ReduceBinop()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAndOrXor.cpp | 661 unsigned left_type = getTypeOfMaskedICmp(A, B, C, LHSCC); in foldLogOpOfMaskedICmpsHelper() local 663 return left_type & right_type; in foldLogOpOfMaskedICmpsHelper()
|