Searched defs:left_type (Results 1 - 13 of 13) sorted by relevance

/external/libvpx/libvpx/vp9/common/
H A Dvp9_pred_common.h75 const int left_type = left_mi ? left_mi->interp_filter : SWITCHABLE_FILTERS; local
80 if (left_type == above_type)
81 return left_type;
82 else if (left_type == SWITCHABLE_FILTERS)
85 return left_type;
/external/v8/src/
H A Dcode-stubs-hydrogen.cc393 AstType* left_type = state.GetLeftType(); local
397 DCHECK(!left_type->Is(AstType::None()) && !right_type->Is(AstType::None()) &&
402 if (state.op() == Token::ADD && (left_type->Maybe(AstType::String()) ||
404 !left_type->Is(AstType::String()) && !right_type->Is(AstType::String())) {
407 if (left_type->Maybe(AstType::String())) {
418 Push(BuildBinaryOperation(state.op(), left, right, left_type,
429 Push(BuildBinaryOperation(state.op(), left, right, left_type,
435 Push(BuildBinaryOperation(state.op(), left, right, left_type,
443 result = BuildBinaryOperation(state.op(), left, right, left_type,
471 AstType* left_type local
[all...]
H A Dtype-info.cc225 AstType** left_type, AstType** right_type,
233 *left_type = *right_type = *combined_type = AstType::None();
242 *left_type = *right_type = *combined_type =
269 if (combined_type_from_fcg == *left_type) {
272 *left_type = left_type_from_ic;
277 *left_type = AstType::Union(*left_type, left_type_from_ic, zone());
224 CompareType(TypeFeedbackId id, FeedbackSlot slot, AstType** left_type, AstType** right_type, AstType** combined_type) argument
/external/v8/src/crankshaft/
H A Dtyping.cc628 AstType* left_type; local
633 expr->BinaryOperationFeedbackSlot(), &left_type,
638 NarrowLowerType(expr->left(), left_type);
734 AstType* left_type; local
738 expr->CompareOperationFeedbackSlot(), &left_type,
740 NarrowLowerType(expr->left(), left_type);
H A Dhydrogen.cc10710 AstType* left_type = bounds_.get(expr->left()).lower; local
10721 expr->op(), left, right, left_type, right_type, result_type,
10739 Token::Value op, HValue* left, HValue* right, AstType* left_type,
10747 if (!left_type->IsInhabited() && right->IsConstant() &&
10749 left_type = AstType::String();
10757 maybe_string_add = (left_type->Maybe(AstType::String()) ||
10758 left_type->Maybe(AstType::Receiver()) ||
10763 Representation left_rep = RepresentationFor(left_type);
10766 if (!left_type->IsInhabited()) {
10770 left_type
10738 BuildBinaryOperation( Token::Value op, HValue* left, HValue* right, AstType* left_type, AstType* right_type, AstType* result_type, Maybe<int> fixed_right_arg, HAllocationMode allocation_mode, BailoutId opt_id) argument
11238 AstType* left_type = bounds_.get(expr->left()).lower; local
11326 BuildCompareInstruction( Token::Value op, HValue* left, HValue* right, AstType* left_type, AstType* right_type, AstType* combined_type, SourcePosition left_position, SourcePosition right_position, PushBeforeSimulateBehavior push_sim_result, BailoutId bailout_id) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp636 unsigned left_type = getTypeOfMaskedICmp(A, B, C, LHSCC); local
638 return left_type & right_type;
/external/v8/src/compiler/ia32/
H A Dinstruction-selector-ia32.cc1255 MachineType left_type = MachineTypeForNarrow(left, right); local
1257 if (left_type == right_type) {
1258 switch (left_type.representation()) {
1263 if (left_type.semantic() == MachineSemantic::kUint32) {
1266 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic());
1275 if (left_type.semantic() == MachineSemantic::kUint32) {
1278 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic());
/external/v8/src/compiler/x64/
H A Dinstruction-selector-x64.cc1669 MachineType left_type = MachineTypeForNarrow(left, right); local
1671 if (left_type == right_type) {
1672 switch (left_type.representation()) {
1677 if (left_type.semantic() == MachineSemantic::kUint32) {
1680 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic());
1689 if (left_type.semantic() == MachineSemantic::kUint32) {
1692 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic());
/external/v8/src/compiler/x87/
H A Dinstruction-selector-x87.cc1328 MachineType left_type = MachineTypeForNarrow(left, right); local
1330 if (left_type == right_type) {
1331 switch (left_type.representation()) {
1336 if (left_type.semantic() == MachineSemantic::kUint32) {
1339 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic());
1348 if (left_type.semantic() == MachineSemantic::kUint32) {
1351 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic());
/external/v8/src/arm64/
H A Dcode-stubs-arm64.cc239 Register left_type,
242 DCHECK(!AreAliased(left, right, left_type, right_type, scratch));
271 __ Ccmp(left_type, ODDBALL_TYPE, ZFlag, ne);
275 __ Ccmp(left_type, FIRST_JS_RECEIVER_TYPE, NVFlag, ne);
283 __ Orr(scratch, left_type, right_type);
364 Register right_map, Register left_type, Register right_type,
366 DCHECK(!AreAliased(left, right, left_map, right_map, left_type, right_type));
376 __ Tbnz(left_type, MaskToBit(kIsNotStringMask), runtime_call);
377 __ Tbnz(left_type, MaskToBit(kIsNotInternalizedMask), possible_strings);
386 Register left_bitfield = left_type;
236 EmitStrictTwoHeapObjectCompare(MacroAssembler* masm, Register left, Register right, Register left_type, Register right_type, Register scratch) argument
362 EmitCheckForInternalizedStringsOrObjects( MacroAssembler* masm, Register left, Register right, Register left_map, Register right_map, Register left_type, Register right_type, Label* possible_strings, Label* runtime_call) argument
[all...]
/external/v8/src/asmjs/
H A Dasm-typer.cc1645 if (left_type->IsA(AsmType::Src())) { \
1662 AsmType* left_type; local
1663 RECURSE(left_type = ValidateExpression(expr->left()));
1674 AsmType* left_type; local
1675 RECURSE(left_type = ValidateExpression(expr->left()));
1676 SetTypeOf(expr->right(), left_type);
1704 AsmType* left_type; local
1705 RECURSE(left_type = ValidateExpression(left_as_binop->left()));
1714 AsmType* left_type; local
1715 RECURSE(left_type
1982 AsmType* left_type; local
2008 AsmType* left_type; local
2050 AsmType* left_type; local
2109 AsmType* left_type; local
2143 AsmType* left_type; local
2192 AsmType* left_type; local
2229 AsmType* left_type; local
2256 AsmType* left_type; local
2287 AsmType* left_type; local
2296 AsmType* left_type; local
2474 AsmType* left_type; local
[all...]
/external/v8/src/compiler/
H A Djs-typed-lowering.cc129 if (!left_type()->Is(Type::Receiver())) {
144 if (!left_type()->Is(Type::String())) {
162 if (!left_type()->Is(Type::UniqueName())) {
188 bool left_is_primitive = left_type()->Is(Type::PlainPrimitive());
370 bool LeftInputIs(Type* t) { return left_type()->Is(t); }
379 return left_type()->Maybe(t) && right_type()->Maybe(t);
383 return !left_type()->Maybe(t) || !right_type()->Maybe(t);
387 return !left_type()->Maybe(t) && !right_type()->Maybe(t);
395 Type* left_type() { return NodeProperties::GetType(node_->InputAt(0)); } function in class:v8::internal::compiler::final
991 if (!r.left_type()
[all...]
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cCopyImageTests.cpp133 static bool unpackAndComaprePixels(glw::GLenum left_format, glw::GLenum left_type, glw::GLenum left_internal_format,
2462 * @param left_type Type of left image
2472 bool Utils::unpackAndComaprePixels(GLenum left_format, GLenum left_type, GLenum left_internal_format, argument
2485 unpackPixel(left_format, left_type, left_pixel, left_red, left_green, left_blue, left_alpha);

Completed in 540 milliseconds