Home
last modified time | relevance | path

Searched refs:shift_value (Results 1 – 13 of 13) sorted by relevance

/third_party/node/deps/v8/src/base/
Dbit-field.h146 int shift_value = shift(item); in encode() local
147 int set_bits = (static_cast<int>(value) << shift_value); in encode()
148 return (previous & ~(kMask << shift_value)) | set_bits; in encode()
/third_party/vixl/src/aarch32/
Dinstructions-aarch32.cc582 ImmediateShiftOperand::ImmediateShiftOperand(int shift_value, int amount_value) in ImmediateShiftOperand() argument
583 : Shift(shift_value) { in ImmediateShiftOperand()
584 switch (shift_value) { in ImmediateShiftOperand()
/third_party/ffmpeg/libavcodec/x86/
Dvc1dsp_mmx.c356 static const int shift_value[] = { 0, 5, 1, 5 };\
357 int shift = (shift_value[hmode]+shift_value[vmode])>>1;\
/third_party/ffmpeg/libavcodec/
Dalsdec.c235 …int *shift_value; ///< value by which the binary point is to be shifted for all chan… member
1460 int *shift_value = ctx->shift_value; in read_diff_float_data() local
1515 shift_value[c] = get_bits(gb, 8); in read_diff_float_data()
1516 last_shift_value[c] = shift_value[c]; in read_diff_float_data()
1518 shift_value[c] = last_shift_value[c]; in read_diff_float_data()
1622 if (mantissa) e += (shift_value[c] - 127); in read_diff_float_data()
1971 av_freep(&ctx->shift_value); in decode_end()
2112 ctx->shift_value = av_malloc_array(channels, sizeof(*ctx->shift_value)); in decode_init()
2121 if (!ctx->mlz || !ctx->acf || !ctx->shift_value || !ctx->last_shift_value in decode_init()
Dvc1dsp.c607 static const int shift_value[] = { 0, 5, 1, 5 }; \
608 int shift = (shift_value[hmode] + shift_value[vmode]) >> 1; \
665 static const int shift_value[] = { 0, 5, 1, 5 }; \
666 int shift = (shift_value[hmode] + shift_value[vmode]) >> 1; \
/third_party/node/deps/v8/src/compiler/backend/loong64/
Dinstruction-selector-loong64.cc956 int32_t shift_value = in VisitInt32Add() local
958 if (shift_value > 0 && shift_value <= 31) { in VisitInt32Add()
961 g.UseRegister(m.left().node()), g.TempImmediate(shift_value)); in VisitInt32Add()
972 int32_t shift_value = static_cast<int32_t>(mleft.right().ResolvedValue()); in VisitInt32Add() local
973 if (shift_value > 0 && shift_value <= 31) { in VisitInt32Add()
976 g.UseRegister(m.right().node()), g.TempImmediate(shift_value)); in VisitInt32Add()
994 int32_t shift_value = in VisitInt64Add() local
996 if (shift_value > 0 && shift_value <= 31) { in VisitInt64Add()
999 g.UseRegister(m.left().node()), g.TempImmediate(shift_value)); in VisitInt64Add()
1010 int32_t shift_value = static_cast<int32_t>(mleft.right().ResolvedValue()); in VisitInt64Add() local
[all …]
/third_party/node/deps/v8/src/compiler/backend/mips64/
Dinstruction-selector-mips64.cc987 int32_t shift_value = in VisitInt32Add() local
989 if (shift_value > 0 && shift_value <= 31) { in VisitInt32Add()
993 g.TempImmediate(shift_value)); in VisitInt32Add()
1004 int32_t shift_value = in VisitInt32Add() local
1006 if (shift_value > 0 && shift_value <= 31) { in VisitInt32Add()
1010 g.TempImmediate(shift_value)); in VisitInt32Add()
1030 int32_t shift_value = in VisitInt64Add() local
1032 if (shift_value > 0 && shift_value <= 31) { in VisitInt64Add()
1036 g.TempImmediate(shift_value)); in VisitInt64Add()
1047 int32_t shift_value = in VisitInt64Add() local
[all …]
/third_party/ffmpeg/libavcodec/loongarch/
Dvc1dsp_lasx.c535 static const int shift_value[] = {0, 5, 1, 5}; in put_vc1_mspel_mc_h_v_lasx() local
536 int shift = (shift_value[hmode] + shift_value[vmode]) >> 1; in put_vc1_mspel_mc_h_v_lasx()
747 static const int shift_value[] = {0, 6, 4, 6}; in put_vc1_mspel_mc_v_lasx() local
754 const_sh = __lasx_xvreplgr2vr_h(shift_value[vmode]); in put_vc1_mspel_mc_v_lasx()
823 static const int shift_value[] = {0, 6, 4, 6}; in put_vc1_mspel_mc_h_lasx() local
829 const_sh = __lasx_xvreplgr2vr_h(shift_value[hmode]); in put_vc1_mspel_mc_h_lasx()
/third_party/node/deps/v8/src/compiler/
Dint64-lowering.cc712 int32_t shift_value = m.ResolvedValue() & 0x3F; in LowerNode() local
713 if (shift_value == 0) { in LowerNode()
716 } else if (shift_value == 32) { in LowerNode()
722 if (shift_value < 32) { in LowerNode()
729 int32_t masked_shift_value = shift_value & 0x1F; in LowerNode()
/third_party/ffmpeg/libavcodec/mips/
Dvc1dsp_msa.c324 static const int shift_value[] = {0, 5, 1, 5}; in put_vc1_mspel_mc_h_v_msa() local
325 int shift = (shift_value[hmode] + shift_value[vmode]) >> 1; in put_vc1_mspel_mc_h_v_msa()
Dvc1dsp_mmi.c2100 static const int shift_value[] = { 0, 5, 1, 5 }; \
2101 int shift = (shift_value[hmode]+shift_value[vmode])>>1; \
/third_party/node/deps/v8/src/compiler/backend/mips/
Dinstruction-selector-mips.cc873 int32_t shift_value = in VisitInt32Add() local
875 if (shift_value > 0 && shift_value <= 31) { in VisitInt32Add()
879 g.TempImmediate(shift_value)); in VisitInt32Add()
890 int32_t shift_value = in VisitInt32Add() local
892 if (shift_value > 0 && shift_value <= 31) { in VisitInt32Add()
896 g.TempImmediate(shift_value)); in VisitInt32Add()
/third_party/node/deps/v8/src/execution/arm/
Dsimulator-arm.cc4215 int8_t shift_value = static_cast<int8_t>(shift[i]); in ShiftByRegister() local
4219 if ((shift_value) >= 0) { in ShiftByRegister()
4221 if (shift_value >= size) { in ShiftByRegister()
4225 src[i] = static_cast<unsignedT>(src[i]) << shift_value; in ShiftByRegister()
4229 if (-shift_value >= size) { in ShiftByRegister()
4232 src[i] = ArithmeticShiftRight(src[i], -shift_value); in ShiftByRegister()