HomeSort by relevance Sort by last modified time
    Searched defs:left_type (Results 1 - 8 of 8) sorted by null

  /external/libvpx/libvpx/vp9/common/
vp9_pred_common.c 23 const int left_type = xd->left_available && is_inter_block(left_mbmi) ? local
29 if (left_type == above_type)
30 return left_type;
31 else if (left_type == SWITCHABLE_FILTERS && above_type != SWITCHABLE_FILTERS)
33 else if (left_type != SWITCHABLE_FILTERS && above_type == SWITCHABLE_FILTERS)
34 return left_type;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_pred_common.c 29 const int left_type = left_mbmi != NULL && is_inter_block(left_mbmi) ? local
35 if (left_type == above_type)
36 return left_type;
37 else if (left_type == SWITCHABLE_FILTERS && above_type != SWITCHABLE_FILTERS)
39 else if (left_type != SWITCHABLE_FILTERS && above_type == SWITCHABLE_FILTERS)
40 return left_type;
  /external/v8/src/crankshaft/
typing.cc 639 Type* left_type; local
644 &left_type, &right_type, &type, &fixed_right_arg,
647 NarrowLowerType(expr->left(), left_type);
739 Type* left_type; local
743 &left_type, &right_type, &combined_type);
744 NarrowLowerType(expr->left(), left_type);
hydrogen.cc 10898 Type* left_type = expr->left()->bounds().lower; local
11452 Type* left_type = expr->left()->bounds().lower; local
    [all...]
  /external/v8/src/
typing-asm.cc 1044 Type* left_type = computed_type_; local
1139 Type* left_type = computed_type_; local
1216 Type* left_type = computed_type_; local
    [all...]
code-stubs-hydrogen.cc 1448 Type* left_type = state.GetLeftType(); local
1529 Type* left_type = state.GetLeftType(); local
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 696 unsigned left_type = getTypeOfMaskedICmp(A, B, C, LHSCC); local
698 return left_type & right_type;
    [all...]
  /external/v8/src/compiler/
js-typed-lowering.cc 122 bool left_is_primitive = left_type()->Is(Type::PlainPrimitive());
232 bool LeftInputIs(Type* t) { return left_type()->Is(t); }
241 return !left_type()->Maybe(t) || !right_type()->Maybe(t);
245 return !left_type()->Maybe(t) && !right_type()->Maybe(t);
253 Type* left_type() { return NodeProperties::GetType(node_->InputAt(0)); } function in class:v8::internal::compiler::final
674 if (!r.left_type()->Maybe(Type::NaN())) {
683 if (!r.left_type()->Maybe(r.right_type())) {
    [all...]

Completed in 325 milliseconds