Home
last modified time | relevance | path

Searched refs:left_type (Results 1 - 16 of 16) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dh264_mvpred.h64 if (!MB_FIELD(sl) && IS_INTERLACED(sl->left_type[0])) { in fetch_diagonal_mv()
68 if (MB_FIELD(sl) && !IS_INTERLACED(sl->left_type[0])) { in fetch_diagonal_mv()
274 if (USES_LIST(sl->left_type[LTOP], 0)) { in pred_pskip_motion()
277 FIX_MV_MBAFF(sl->left_type[LTOP], left_ref, A, 0); in pred_pskip_motion()
280 } else if (sl->left_type[LTOP]) { in pred_pskip_motion()
421 sl->left_type[LTOP] = h->cur_pic.mb_type[left_xy[LTOP]]; in fill_decode_neighbors()
422 sl->left_type[LBOT] = h->cur_pic.mb_type[left_xy[LBOT]]; in fill_decode_neighbors()
430 sl->left_type[LTOP] = sl->left_type[LBOT] = 0; in fill_decode_neighbors()
437 sl->left_type[LTO in fill_decode_neighbors()
447 int topleft_type, top_type, topright_type, left_type[LEFT_MBS]; fill_decode_caches() local
[all...]
H A Dh264_loopfilter.c249 int left_type = sl->left_type[LTOP]; in h264_filter_mb_fast_internal() local
272 if(left_type) in h264_filter_mb_fast_internal()
293 if(left_type){ in h264_filter_mb_fast_internal()
325 if(left_type){ in h264_filter_mb_fast_internal()
342 if(left_type){ in h264_filter_mb_fast_internal()
368 int mask_edge0 = 3*((mask_edge1>>1) & ((5*left_type)>>5)&1); // (mb_type & (MB_TYPE_16x16 | MB_TYPE_8x16)) && (h->left_type[LTOP] & (MB_TYPE_16x16 | MB_TYPE_8x16)) ? 3 : 0; in h264_filter_mb_fast_internal()
374 if( IS_INTRA(left_type) ) in h264_filter_mb_fast_internal()
392 if(left_type) in h264_filter_mb_fast_internal()
[all...]
H A Dh264_slice.c2335 int left_type[LEFT_MBS], in fill_filter_caches_inter()
2356 if (!IS_INTERLACED(mb_type ^ left_type[LTOP])) { in fill_filter_caches_inter()
2357 if (USES_LIST(left_type[LTOP], list)) { in fill_filter_caches_inter()
2418 int top_type, left_type[LEFT_MBS]; in fill_filter_caches() local
2465 left_type[LTOP] = h->cur_pic.mb_type[left_xy[LTOP]]; in fill_filter_caches()
2466 left_type[LBOT] = h->cur_pic.mb_type[left_xy[LBOT]]; in fill_filter_caches()
2471 left_type[LTOP] = left_type[LBOT] = 0; in fill_filter_caches()
2476 left_type[LTOP] = left_type[LBO in fill_filter_caches()
2330 fill_filter_caches_inter(const H264Context *h, H264SliceContext *sl, int mb_type, int top_xy, int left_xy[LEFT_MBS], int top_type, int left_type[LEFT_MBS], int mb_xy, int list) fill_filter_caches_inter() argument
[all...]
H A Dh264_cabac.c1312 if (sl->left_type[LTOP] & (MB_TYPE_INTRA16x16|MB_TYPE_INTRA_PCM)) in decode_cabac_intra_mb_type()
1395 if (sl->left_type[LTOP] && h->chroma_pred_mode_table[mba_xy] != 0) in decode_cabac_mb_chroma_pre_mode()
1972 if (!IS_DIRECT(sl->left_type[LTOP] - 1)) in ff_h264_decode_mb_cabac()
2358 if (sl->left_type[LEFT(i)] && !IS_8x8DCT(sl->left_type[LEFT(i)])) { in ff_h264_decode_mb_cabac()
2375 if (sl->left_type[LEFT(i)] && !IS_8x8DCT(sl->left_type[LEFT(i)])) { in ff_h264_decode_mb_cabac()
2381 nnz_cache[3+8*12 + 2*8*i]= !IS_INTRA_PCM(sl->left_type[LEFT(i)]) ? 0 : 64; in ff_h264_decode_mb_cabac()
H A Dh264dec.h209 int left_type[LEFT_MBS]; member
/third_party/skia/third_party/externals/spirv-tools/source/val/
H A Dvalidate_logicals.cpp198 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()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/
H A Dvalidate_logicals.cpp198 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()
/third_party/node/deps/v8/src/compiler/
H A Dtype-narrowing-reducer.cc29 Type left_type = NodeProperties::GetType(node->InputAt(0)); in Reduce() local
31 if (left_type.Is(Type::PlainNumber()) && in Reduce()
33 if (left_type.Max() < right_type.Min()) { in Reduce()
35 } else if (left_type.Min() >= right_type.Max()) { in Reduce()
H A Dsimplified-lowering-verifier.cc157 Type left_type = InputType(node, 0); in VisitNode() local
161 if (left_type.Is(Type::BigInt()) && right_type.Is(Type::BigInt())) { in VisitNode()
163 output_type = op_typer.BigIntAdd(left_type, right_type); in VisitNode()
164 } else if (left_type.Is(Type::Number()) && in VisitNode()
167 output_type = op_typer.NumberAdd(left_type, right_type); in VisitNode()
171 left_type.PrintTo(left_str); in VisitNode()
H A Djs-typed-lowering.cc155 if (!left_type().Is(Type::Receiver())) { in CheckInputsToReceiver()
170 if (!left_type().Is(Type::ReceiverOrNullOrUndefined())) { in CheckInputsToReceiverOrNullOrUndefined()
194 if (!left_type().Is(Type::Symbol())) { in CheckInputsToSymbol()
209 if (!left_type().Is(Type::String())) { in CheckInputsToString()
229 if (!left_type().Is(Type::UniqueName())) { in CheckInputsToInternalizedString()
245 DCHECK(left_type().Is(Type::PlainPrimitive())); in ConvertInputsToNumber()
363 bool LeftInputIs(Type t) { return left_type().Is(t); } in LeftInputIs()
372 return left_type().Maybe(t) && right_type().Maybe(t); in BothInputsMaybe()
376 return !left_type().Maybe(t) || !right_type().Maybe(t); in OneInputCannotBe()
380 return !left_type() in NeitherInputCanBe()
393 Type left_type() { return NodeProperties::GetType(node_->InputAt(0)); } left_type() function in v8::internal::compiler::final
[all...]
H A Dtyped-optimization.cc522 Type left_type = NodeProperties::GetType(left); in ReduceStringComparison() local
524 if (!left_type.Is(type_cache_->kUint16)) { in ReduceStringComparison()
/third_party/spirv-tools/source/val/
H A Dvalidate_logicals.cpp205 const uint32_t left_type = _.GetOperandTypeId(inst, 3); in LogicalsPass() local
227 if (result_type != left_type || result_type != right_type) in LogicalsPass()
251 const uint32_t left_type = _.GetOperandTypeId(inst, 2); in LogicalsPass() local
254 if (!left_type || in LogicalsPass()
255 (!_.IsIntScalarType(left_type) && !_.IsIntVectorType(left_type))) in LogicalsPass()
260 if (_.GetDimension(result_type) != _.GetDimension(left_type)) in LogicalsPass()
276 if (_.GetBitWidth(left_type) != _.GetBitWidth(right_type)) in LogicalsPass()
/third_party/node/deps/v8/src/compiler/backend/x64/
H A Dinstruction-selector-x64.cc2186 MachineType left_type = MachineType::None(); in TryNarrowOpcodeSize() local
2189 left_type = MachineTypeForNarrowWordAnd(left, right); in TryNarrowOpcodeSize()
2190 right_type = left_type; in TryNarrowOpcodeSize()
2193 left_type = right_type; in TryNarrowOpcodeSize()
2198 left_type = MachineTypeForNarrow(left, right); in TryNarrowOpcodeSize()
2201 if (left_type == right_type) { in TryNarrowOpcodeSize()
2202 switch (left_type.representation()) { in TryNarrowOpcodeSize()
2207 if (left_type.semantic() == MachineSemantic::kUint32) { in TryNarrowOpcodeSize()
2210 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic()); in TryNarrowOpcodeSize()
2219 if (left_type in TryNarrowOpcodeSize()
[all...]
/third_party/node/deps/v8/src/compiler/backend/ia32/
H A Dinstruction-selector-ia32.cc1609 MachineType left_type = MachineTypeForNarrow(left, right); in TryNarrowOpcodeSize() local
1611 if (left_type == right_type) { in TryNarrowOpcodeSize()
1612 switch (left_type.representation()) { in TryNarrowOpcodeSize()
1617 if (left_type.semantic() == MachineSemantic::kUint32) { in TryNarrowOpcodeSize()
1620 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic()); in TryNarrowOpcodeSize()
1629 if (left_type.semantic() == MachineSemantic::kUint32) { in TryNarrowOpcodeSize()
1632 CHECK_EQ(MachineSemantic::kInt32, left_type.semantic()); in TryNarrowOpcodeSize()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cCopyImageTests.cpp133 static bool unpackAndComaprePixels(glw::GLenum left_format, glw::GLenum left_type, glw::GLenum left_internal_format,
2449 * @param left_type Type of left image
2459 bool Utils::unpackAndComaprePixels(GLenum left_format, GLenum left_type, GLenum left_internal_format, in unpackAndComaprePixels() argument
2472 unpackPixel(left_format, left_type, left_pixel, left_red, left_green, left_blue, left_alpha); in unpackAndComaprePixels()
/third_party/node/deps/v8/src/codegen/
H A Dcode-stub-assembler.cc12633 TNode<Uint16T> left_type = LoadMapInstanceType(left_map);
12636 GotoIf(IsStringInstanceType(left_type), &if_left_string);
12637 GotoIf(IsSymbolInstanceType(left_type), &if_left_symbol);
12638 GotoIf(IsHeapNumberInstanceType(left_type), &if_left_number);
12639 GotoIf(IsOddballInstanceType(left_type), &if_left_oddball);
12640 Branch(IsBigIntInstanceType(left_type), &if_left_bigint,
12649 SmiOr(CollectFeedbackForString(left_type),
12659 GotoIf(Word32NotEqual(left_type, right_type), &if_right_not_number);
12853 CSA_DCHECK(this, IsJSReceiverInstanceType(left_type));

Completed in 49 milliseconds