Home
last modified time | relevance | path

Searched refs:offset_bits (Results 1 – 25 of 32) sorted by relevance

12

/external/libaom/libaom/av1/common/
Dconvolve.c151 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_convolve_2d_sr_c() local
154 int32_t sum = 1 << offset_bits; in av1_convolve_2d_sr_c()
158 assert(0 <= sum && sum < (1 << (offset_bits + 2))); in av1_convolve_2d_sr_c()
160 ((1 << (offset_bits - conv_params->round_1)) + in av1_convolve_2d_sr_c()
161 (1 << (offset_bits - conv_params->round_1 - 1))); in av1_convolve_2d_sr_c()
283 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_dist_wtd_convolve_2d_c() local
286 int32_t sum = 1 << offset_bits; in av1_dist_wtd_convolve_2d_c()
290 assert(0 <= sum && sum < (1 << (offset_bits + 2))); in av1_dist_wtd_convolve_2d_c()
301 tmp -= (1 << (offset_bits - conv_params->round_1)) + in av1_dist_wtd_convolve_2d_c()
302 (1 << (offset_bits - conv_params->round_1 - 1)); in av1_dist_wtd_convolve_2d_c()
[all …]
Dwarped_motion.c341 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_highbd_warp_affine_c() local
425 tmp32 = tmp32 - (1 << (offset_bits - conv_params->round_1)) - in av1_highbd_warp_affine_c()
426 (1 << (offset_bits - conv_params->round_1 - 1)); in av1_highbd_warp_affine_c()
611 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_warp_affine_c() local
702 tmp32 = tmp32 - (1 << (offset_bits - conv_params->round_1)) - in av1_warp_affine_c()
703 (1 << (offset_bits - conv_params->round_1 - 1)); in av1_warp_affine_c()
/external/libaom/libaom/av1/common/x86/
Dav1_convolve_scale_sse4.c111 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in vfilter8() local
116 const int32_t sub32 = ((1 << (offset_bits - conv_params->round_1)) + in vfilter8()
117 (1 << (offset_bits - conv_params->round_1 - 1))); in vfilter8()
128 const __m128i res_add_const = _mm_set1_epi32(1 << offset_bits); in vfilter8()
203 int32_t sum = 1 << offset_bits; in vfilter8()
225 int32_t tmp = res - ((1 << (offset_bits - conv_params->round_1)) + in vfilter8()
226 (1 << (offset_bits - conv_params->round_1 - 1))); in vfilter8()
337 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in highbd_vfilter8() local
342 const int32_t sub32 = ((1 << (offset_bits - conv_params->round_1)) + in highbd_vfilter8()
343 (1 << (offset_bits - conv_params->round_1 - 1))); in highbd_vfilter8()
[all …]
Dwarp_plane_sse4.c456 ConvolveParams *conv_params, const int round_bits, const int offset_bits, in unpack_weights_and_set_round_const() argument
459 _mm_set1_epi16(-(1 << (offset_bits - conv_params->round_1)) - in unpack_weights_and_set_round_const()
460 (1 << (offset_bits - conv_params->round_1 - 1))); in unpack_weights_and_set_round_const()
681 const int round_bits, const int offset_bits) { in warp_vertical_filter() argument
684 unpack_weights_and_set_round_const(conv_params, round_bits, offset_bits, in warp_vertical_filter()
708 const int round_bits, const int offset_bits) { in warp_vertical_filter_gamma0() argument
712 unpack_weights_and_set_round_const(conv_params, round_bits, offset_bits, in warp_vertical_filter_gamma0()
736 const int round_bits, const int offset_bits) { in warp_vertical_filter_delta0() argument
740 unpack_weights_and_set_round_const(conv_params, round_bits, offset_bits, in warp_vertical_filter_delta0()
762 const int round_bits, const int offset_bits) { in warp_vertical_filter_gamma0_delta0() argument
[all …]
Dconvolve_2d_avx2.c35 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_convolve_2d_sr_avx2() local
44 (1 << offset_bits) + ((1 << conv_params->round_1) >> 1)); in av1_convolve_2d_sr_avx2()
48 ((1 << bits) >> 1) - (1 << (offset_bits - conv_params->round_1)) - in av1_convolve_2d_sr_avx2()
49 ((1 << (offset_bits - conv_params->round_1)) >> 1)); in av1_convolve_2d_sr_avx2()
Dconvolve_2d_sse2.c41 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_convolve_2d_sr_sse2() local
132 _mm_set1_epi32((1 << offset_bits) + ((1 << conv_params->round_1) >> 1)); in av1_convolve_2d_sr_sse2()
136 ((1 << bits) >> 1) - (1 << (offset_bits - conv_params->round_1)) - in av1_convolve_2d_sr_sse2()
137 ((1 << (offset_bits - conv_params->round_1)) >> 1)); in av1_convolve_2d_sr_sse2()
Dhighbd_warp_plane_sse4.c325 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_highbd_warp_affine_sse4_1() local
327 _mm_set1_epi32(-(1 << (offset_bits - conv_params->round_1)) - in av1_highbd_warp_affine_sse4_1()
328 (1 << (offset_bits - conv_params->round_1 - 1))); in av1_highbd_warp_affine_sse4_1()
/external/libaom/libaom/aom_dsp/
Dblend_a64_mask.c43 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in aom_lowbd_blend_a64_d16_mask_c() local
44 const int round_offset = (1 << (offset_bits - conv_params->round_1)) + in aom_lowbd_blend_a64_d16_mask_c()
45 (1 << (offset_bits - conv_params->round_1 - 1)); in aom_lowbd_blend_a64_d16_mask_c()
129 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in aom_highbd_blend_a64_d16_mask_c() local
130 const int round_offset = (1 << (offset_bits - conv_params->round_1)) + in aom_highbd_blend_a64_d16_mask_c()
131 (1 << (offset_bits - conv_params->round_1 - 1)); in aom_highbd_blend_a64_d16_mask_c()
/external/capstone/cstool/
Dcstool_m680x.c120 if ((op->idx.offset_bits != 0) && in print_insn_detail_m680x()
130 op->idx.offset_bits); in print_insn_detail_m680x()
/external/capstone/suite/cstest/src/
Dm680x_detail.c104 if ((op->idx.offset_bits != 0) && in get_detail_m680x()
112 add_str(&result, " ; offset bits: %u", op->idx.offset_bits); in get_detail_m680x()
/external/capstone/bindings/python/
Dtest_m680x.py97 … if (i.idx.offset_bits != 0) and (i.idx.offset_reg == M680X_REG_INVALID) and (i.idx.inc_dec == 0):
101 print("\t\t\toffset bits: %u" % i.idx.offset_bits)
/external/ImageMagick/coders/
Dbmp.c129 offset_bits, member
562 offset_bits, in ReadBMPImage() local
588 offset_bits=0; in ReadBMPImage()
610 bmp_info.offset_bits=ReadBlobLSBLong(image); in ReadBMPImage()
623 bmp_info.offset_bits=ReadBlobLSBLong(image); in ReadBMPImage()
963 if (bmp_info.offset_bits == offset_bits) in ReadBMPImage()
965 offset_bits=bmp_info.offset_bits; in ReadBMPImage()
966 offset=SeekBlob(image,start_position+bmp_info.offset_bits,SEEK_SET); in ReadBMPImage()
1742 bmp_info.offset_bits=bmp_info.file_size; in WriteBMPImage()
1776 bmp_info.offset_bits+=3*(1UL << bmp_info.bits_per_pixel); in WriteBMPImage()
[all …]
Dicon.c115 offset_bits, member
1027 icon_info.offset_bits=icon_info.file_size; in WriteICONImage()
1066 icon_info.offset_bits+=3*(one << icon_info.bits_per_pixel); in WriteICONImage()
1068 icon_info.offset_bits+=(one << icon_info.bits_per_pixel); in WriteICONImage()
/external/webrtc/modules/rtp_rtcp/source/
Drtp_format_vp9.cc444 size_t offset_bits = 0; in WriteHeader() local
445 writer.GetCurrentOffset(&offset_bytes, &offset_bits); in WriteHeader()
446 RTC_DCHECK_EQ(offset_bits, 0); in WriteHeader()
/external/capstone/arch/M680X/
DM680XDisassembler.c1199 bool post_inc_dec, uint8_t inc_dec, uint8_t offset_bits, in add_indexed_operand() argument
1214 if (offset_bits != M680X_OFFSET_NONE) { in add_indexed_operand()
1219 op->idx.offset_bits = offset_bits; in add_indexed_operand()
1268 op->idx.offset_bits = M680X_OFFSET_BITS_5; in indexed09_hdlr()
1316 op->idx.offset_bits = M680X_OFFSET_BITS_8; in indexed09_hdlr()
1323 op->idx.offset_bits = M680X_OFFSET_BITS_8; in indexed09_hdlr()
1333 op->idx.offset_bits = M680X_OFFSET_BITS_16; in indexed09_hdlr()
1341 op->idx.offset_bits = M680X_OFFSET_BITS_16; in indexed09_hdlr()
1405 op->idx.offset_bits = M680X_OFFSET_BITS_5; in indexed12_hdlr()
1421 op->idx.offset_bits = M680X_OFFSET_BITS_9; in indexed12_hdlr()
[all …]
DM680XInstPrinter.c180 else if (op->idx.offset_bits > 0) { in printOperand()
198 (op->idx.offset_bits > 0)) in printOperand()
/external/capstone/bindings/ocaml/
Dm680x.ml13 offset_bits: int; RecordField
/external/capstone/tests/
Dtest_m680x.c146 if ((op->idx.offset_bits != 0) && in print_insn_detail()
156 op->idx.offset_bits); in print_insn_detail()
/external/mesa3d/src/intel/compiler/
Dbrw_shader.h128 uint32_t *offset_bits);
Dbrw_shader.cpp146 uint32_t offset_bits = 0; in brw_texture_offset() local
155 offset_bits |= (offset << shift) & (0xF << shift); in brw_texture_offset()
158 *offset_bits_out = offset_bits; in brw_texture_offset()
/external/capstone/bindings/java/
DTestM680x.java105 if ((i.value.idx.offset_bits != 0) && in print_ins_detail()
111 System.out.printf("\t\t\toffset bits: %d\n", i.value.idx.offset_bits); in print_ins_detail()
/external/libaom/libaom/av1/common/arm/
Djnt_convolve_neon.c573 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in dist_wtd_convolve_2d_vert_neon() local
574 const int16_t sub_const = (1 << (offset_bits - conv_params->round_1)) + in dist_wtd_convolve_2d_vert_neon()
575 (1 << (offset_bits - conv_params->round_1 - 1)); in dist_wtd_convolve_2d_vert_neon()
771 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_dist_wtd_convolve_2d_copy_neon() local
772 const int round_offset = (1 << (offset_bits - conv_params->round_1)) + in av1_dist_wtd_convolve_2d_copy_neon()
773 (1 << (offset_bits - conv_params->round_1 - 1)); in av1_dist_wtd_convolve_2d_copy_neon()
893 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_dist_wtd_convolve_x_neon() local
894 const int round_offset = (1 << (offset_bits - conv_params->round_1)) + in av1_dist_wtd_convolve_x_neon()
895 (1 << (offset_bits - conv_params->round_1 - 1)); in av1_dist_wtd_convolve_x_neon()
1356 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_dist_wtd_convolve_y_neon() local
[all …]
Dwarp_plane_neon.c510 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in av1_warp_affine_neon() local
512 vdup_n_s16(-((1 << (offset_bits - conv_params->round_1)) + in av1_warp_affine_neon()
513 (1 << (offset_bits - conv_params->round_1 - 1)))); in av1_warp_affine_neon()
/external/capstone/bindings/java/capstone/
DM680x.java21 public byte offset_bits; field in M680x.OpIndexed
/external/libaom/libaom/aom_dsp/arm/
Dblend_a64_mask_neon.c143 const int offset_bits = bd + 2 * FILTER_BITS - conv_params->round_0; in aom_lowbd_blend_a64_d16_mask_neon() local
144 const int round_offset = (1 << (offset_bits - conv_params->round_1)) + in aom_lowbd_blend_a64_d16_mask_neon()
145 (1 << (offset_bits - conv_params->round_1 - 1)); in aom_lowbd_blend_a64_d16_mask_neon()

12