Home
last modified time | relevance | path

Searched refs:dst (Results 201 - 225 of 5108) sorted by relevance

12345678910>>...205

/third_party/skia/third_party/externals/brotli/java/org/brotli/dec/
H A DTransform.java101 static int transformDictionaryWord(byte[] dst, int dstOffset, ByteBuffer src, int srcOffset, in transformDictionaryWord() argument
127 dst[offset++] = prefixSuffixStorage[prefix++]; in transformDictionaryWord()
139 dst[offset++] = src.get(srcOffset++); in transformDictionaryWord()
150 int c0 = dst[uppercaseOffset] & 0xFF; in transformDictionaryWord()
153 dst[uppercaseOffset] ^= (byte) 32; in transformDictionaryWord()
158 dst[uppercaseOffset + 1] ^= (byte) 32; in transformDictionaryWord()
162 dst[uppercaseOffset + 2] ^= (byte) 5; in transformDictionaryWord()
174 int c0 = dst[shiftOffset] & 0xFF; in transformDictionaryWord()
178 dst[shiftOffset] = (byte) (scalar & 0x7F); in transformDictionaryWord()
184 byte c1 = dst[shiftOffse in transformDictionaryWord()
[all...]
/third_party/ffmpeg/libavcodec/
H A Daudiodsp.c36 static void vector_clipf_c_opposite_sign(float *dst, const float *src, in vector_clipf_c_opposite_sign() argument
43 uint32_t *dsti = (uint32_t *) dst; in vector_clipf_c_opposite_sign()
58 static void vector_clipf_c(float *dst, const float *src, int len, in vector_clipf_c() argument
64 vector_clipf_c_opposite_sign(dst, src, &min, &max, len); in vector_clipf_c()
67 dst[i] = av_clipf(src[i], min, max); in vector_clipf_c()
68 dst[i + 1] = av_clipf(src[i + 1], min, max); in vector_clipf_c()
69 dst[i + 2] = av_clipf(src[i + 2], min, max); in vector_clipf_c()
70 dst[i + 3] = av_clipf(src[i + 3], min, max); in vector_clipf_c()
71 dst[i + 4] = av_clipf(src[i + 4], min, max); in vector_clipf_c()
72 dst[ in vector_clipf_c()
90 vector_clip_int32_c(int32_t *dst, const int32_t *src, int32_t min, int32_t max, unsigned int len) vector_clip_int32_c() argument
[all...]
H A Dbfi.c37 uint8_t *dst; member
45 bfi->dst = av_mallocz(avctx->width * avctx->height); in bfi_decode_init()
46 if (!bfi->dst) in bfi_decode_init()
57 uint8_t *dst = bfi->dst; in bfi_decode_frame() local
59 uint8_t *frame_end = bfi->dst + avctx->width * avctx->height; in bfi_decode_frame()
97 while (dst != frame_end) { in bfi_decode_frame()
125 if (dst + (length << lentab[code]) > frame_end) in bfi_decode_frame()
134 bytestream2_get_buffer(&g, dst, length); in bfi_decode_frame()
135 dst in bfi_decode_frame()
[all...]
H A Dh264idct_template.c36 pixel *dst = (pixel*)_dst; in ff_h264_idct_add() local
60 dst[i + 0*stride]= av_clip_pixel(dst[i + 0*stride] + ((int)(z0 + z3) >> 6)); in ff_h264_idct_add()
61 dst[i + 1*stride]= av_clip_pixel(dst[i + 1*stride] + ((int)(z1 + z2) >> 6)); in ff_h264_idct_add()
62 dst[i + 2*stride]= av_clip_pixel(dst[i + 2*stride] + ((int)(z1 - z2) >> 6)); in ff_h264_idct_add()
63 dst[i + 3*stride]= av_clip_pixel(dst[i + 3*stride] + ((int)(z0 - z3) >> 6)); in ff_h264_idct_add()
71 pixel *dst in ff_h264_idct8_add() local
146 pixel *dst = (pixel*)_dst; ff_h264_idct_dc_add() local
161 pixel *dst = (pixel*)_dst; ff_h264_idct8_dc_add() local
174 ff_h264_idct_add16(uint8_t *dst, const int *block_offset, int16_t *block, int stride, const uint8_t nnzc[5 * 8]) ff_h264_idct_add16() argument
188 ff_h264_idct_add16intra(uint8_t *dst, const int *block_offset, int16_t *block, int stride, const uint8_t nnzc[5 * 8]) ff_h264_idct_add16intra() argument
199 ff_h264_idct8_add4(uint8_t *dst, const int *block_offset, int16_t *block, int stride, const uint8_t nnzc[5 * 8]) ff_h264_idct8_add4() argument
[all...]
H A Dmpegpicture.c339 int ff_update_picture_tables(Picture *dst, const Picture *src) in ff_update_picture_tables() argument
343 ret = av_buffer_replace(&dst->mb_var_buf, src->mb_var_buf); in ff_update_picture_tables()
344 ret |= av_buffer_replace(&dst->mc_mb_var_buf, src->mc_mb_var_buf); in ff_update_picture_tables()
345 ret |= av_buffer_replace(&dst->mb_mean_buf, src->mb_mean_buf); in ff_update_picture_tables()
346 ret |= av_buffer_replace(&dst->mbskip_table_buf, src->mbskip_table_buf); in ff_update_picture_tables()
347 ret |= av_buffer_replace(&dst->qscale_table_buf, src->qscale_table_buf); in ff_update_picture_tables()
348 ret |= av_buffer_replace(&dst->mb_type_buf, src->mb_type_buf); in ff_update_picture_tables()
350 ret |= av_buffer_replace(&dst->motion_val_buf[i], src->motion_val_buf[i]); in ff_update_picture_tables()
351 ret |= av_buffer_replace(&dst->ref_index_buf[i], src->ref_index_buf[i]); in ff_update_picture_tables()
355 free_picture_tables(dst); in ff_update_picture_tables()
377 ff_mpeg_ref_picture(AVCodecContext *avctx, Picture *dst, Picture *src) ff_mpeg_ref_picture() argument
[all...]
/third_party/ffmpeg/libavfilter/x86/
H A Dvf_removegrain_init.c26 void ff_rg_fl_mode_1_sse2(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int pixels);
27 void ff_rg_fl_mode_10_sse2(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int pixels);
28 void ff_rg_fl_mode_11_12_sse2(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int pixels);
29 void ff_rg_fl_mode_13_14_sse2(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int pixels);
30 void ff_rg_fl_mode_19_sse2(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int pixels);
31 void ff_rg_fl_mode_20_sse2(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int pixels);
32 void ff_rg_fl_mode_21_sse2(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int pixels);
33 void ff_rg_fl_mode_22_sse2(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int pixels);
35 void ff_rg_fl_mode_2_sse2(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int pixels);
36 void ff_rg_fl_mode_3_sse2(uint8_t *dst, uint8_
[all...]
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_lower_parallelcopy.c37 physreg_t dst; member
101 /* Choose a temporary that doesn't overlap src or dst */ in do_swap()
102 physreg_t tmp = entry->dst < 2 ? 2 : 0; in do_swap()
108 .dst = tmp, in do_swap()
112 /* If src and dst are within the same full register, then swapping src in do_swap()
113 * with tmp above will also move dst to tmp. Account for that here. in do_swap()
115 unsigned dst = in do_swap() local
116 (entry->src.reg & ~1u) == (entry->dst & ~1u) ? in do_swap()
117 tmp + (entry->dst & 1u) : entry->dst; in do_swap()
529 struct ir3_register *dst = instr->dsts[i]; ir3_lower_copies() local
547 struct ir3_register *dst = instr->dsts[0]; ir3_lower_copies() local
562 struct ir3_register *dst = instr->dsts[0]; ir3_lower_copies() local
[all...]
/third_party/skia/src/effects/
H A DSkLayerDrawLooper.cpp52 static SkColor4f xferColor(const SkColor4f& src, const SkColor4f& dst, SkBlendMode mode) { in xferColor() argument
57 return dst; in xferColor()
60 SkPMColor4f pmD = dst.premul(); in xferColor()
70 SkPaint* dst, const SkPaint& src, const LayerInfo& info) { in ApplyInfo()
76 srcColor.fA = dst->getColor4f().fA; in ApplyInfo()
79 dst->setColor4f(xferColor(srcColor, dst->getColor4f(), (SkBlendMode)info.fColorMode), in ApplyInfo()
89 bool aa = dst->isAntiAlias(); in ApplyInfo()
90 bool di = dst->isDither(); in ApplyInfo()
91 SkColor4f c = dst in ApplyInfo()
69 ApplyInfo( SkPaint* dst, const SkPaint& src, const LayerInfo& info) ApplyInfo() argument
[all...]
/third_party/ffmpeg/libavcodec/loongarch/
H A Dvp9_mc_lsx.c133 uint8_t *dst, int32_t dst_stride, in common_hz_8t_4x4_lsx()
155 __lsx_vstelm_w(out, dst, 0, 0); in common_hz_8t_4x4_lsx()
156 dst += dst_stride; in common_hz_8t_4x4_lsx()
157 __lsx_vstelm_w(out, dst, 0, 1); in common_hz_8t_4x4_lsx()
158 dst += dst_stride; in common_hz_8t_4x4_lsx()
159 __lsx_vstelm_w(out, dst, 0, 2); in common_hz_8t_4x4_lsx()
160 dst += dst_stride; in common_hz_8t_4x4_lsx()
161 __lsx_vstelm_w(out, dst, 0, 3); in common_hz_8t_4x4_lsx()
165 uint8_t *dst, int32_t dst_stride, in common_hz_8t_4x8_lsx()
200 __lsx_vstelm_w(out0, dst, in common_hz_8t_4x8_lsx()
132 common_hz_8t_4x4_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_8t_4x4_lsx() argument
164 common_hz_8t_4x8_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_8t_4x8_lsx() argument
217 common_hz_8t_4w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_4w_lsx() argument
228 common_hz_8t_8x4_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_8t_8x4_lsx() argument
260 common_hz_8t_8x8mult_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_8x8mult_lsx() argument
302 common_hz_8t_8w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_8w_lsx() argument
314 common_hz_8t_16w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_16w_lsx() argument
350 common_hz_8t_32w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_32w_lsx() argument
400 common_hz_8t_64w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_64w_lsx() argument
447 common_vt_8t_4w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_4w_lsx() argument
510 common_vt_8t_8w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_8w_lsx() argument
582 common_vt_8t_16w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_16w_lsx() argument
673 common_vt_8t_16w_mult_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height, int32_t width) common_vt_8t_16w_mult_lsx() argument
782 common_vt_8t_32w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_32w_lsx() argument
789 common_vt_8t_64w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_64w_lsx() argument
797 common_hv_8ht_8vt_4w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_4w_lsx() argument
885 common_hv_8ht_8vt_8w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_8w_lsx() argument
991 common_hv_8ht_8vt_16w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_16w_lsx() argument
1007 common_hv_8ht_8vt_32w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_32w_lsx() argument
1023 common_hv_8ht_8vt_64w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_64w_lsx() argument
1039 copy_width8_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) copy_width8_lsx() argument
1066 copy_width16_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) copy_width16_lsx() argument
1093 copy_width32_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) copy_width32_lsx() argument
1136 copy_width64_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) copy_width64_lsx() argument
1180 common_hz_8t_and_aver_dst_4x4_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_8t_and_aver_dst_4x4_lsx() argument
1225 common_hz_8t_and_aver_dst_4x8_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_8t_and_aver_dst_4x8_lsx() argument
1297 common_hz_8t_and_aver_dst_4w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_and_aver_dst_4w_lsx() argument
1310 common_hz_8t_and_aver_dst_8w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_and_aver_dst_8w_lsx() argument
1365 common_hz_8t_and_aver_dst_16w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_and_aver_dst_16w_lsx() argument
1423 common_hz_8t_and_aver_dst_32w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_and_aver_dst_32w_lsx() argument
1480 common_hz_8t_and_aver_dst_64w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_and_aver_dst_64w_lsx() argument
1533 common_vt_8t_and_aver_dst_4w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_and_aver_dst_4w_lsx() argument
1609 common_vt_8t_and_aver_dst_8w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_and_aver_dst_8w_lsx() argument
1693 common_vt_8t_and_aver_dst_16w_mult_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height, int32_t width) common_vt_8t_and_aver_dst_16w_mult_lsx() argument
1808 common_vt_8t_and_aver_dst_16w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_and_aver_dst_16w_lsx() argument
1818 common_vt_8t_and_aver_dst_32w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_and_aver_dst_32w_lsx() argument
1828 common_vt_8t_and_aver_dst_64w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_and_aver_dst_64w_lsx() argument
1838 common_hv_8ht_8vt_and_aver_dst_4w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_and_aver_dst_4w_lsx() argument
1941 common_hv_8ht_8vt_and_aver_dst_8w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_and_aver_dst_8w_lsx() argument
2060 common_hv_8ht_8vt_and_aver_dst_16w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_and_aver_dst_16w_lsx() argument
2080 common_hv_8ht_8vt_and_aver_dst_32w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_and_aver_dst_32w_lsx() argument
2100 common_hv_8ht_8vt_and_aver_dst_64w_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_and_aver_dst_64w_lsx() argument
2120 avg_width8_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) avg_width8_lsx() argument
2160 avg_width16_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) avg_width16_lsx() argument
2195 avg_width32_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) avg_width32_lsx() argument
2253 avg_width64_lsx(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) avg_width64_lsx() argument
[all...]
/third_party/node/deps/v8/src/codegen/arm/
H A Dassembler-arm.cc827 Register dst = in target_at_put() local
831 DCHECK(IsNop(instr_at(pos + kInstrSize), dst.code())); in target_at_put()
833 DCHECK(IsNop(instr_at(pos + 2 * kInstrSize), dst.code())); in target_at_put()
838 // movw dst, #target16_0 in target_at_put()
839 // movt dst, #target16_1 in target_at_put()
841 // mov dst, #target8_0 in target_at_put()
842 // orr dst, dst, #target8_1 << 8 in target_at_put()
843 // orr dst, dst, #target8_ in target_at_put()
1536 and_(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) and_() argument
1541 and_(Register dst, Register src1, Register src2, SBit s, Condition cond) and_() argument
1546 eor(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) eor() argument
1551 eor(Register dst, Register src1, Register src2, SBit s, Condition cond) eor() argument
1556 sub(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) sub() argument
1561 sub(Register dst, Register src1, Register src2, SBit s, Condition cond) sub() argument
1566 rsb(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) rsb() argument
1571 add(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) add() argument
1576 add(Register dst, Register src1, Register src2, SBit s, Condition cond) add() argument
1581 adc(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) adc() argument
1586 sbc(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) sbc() argument
1591 rsc(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) rsc() argument
1626 orr(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) orr() argument
1631 orr(Register dst, Register src1, Register src2, SBit s, Condition cond) orr() argument
1636 mov(Register dst, const Operand& src, SBit s, Condition cond) mov() argument
1643 mov(Register dst, Register src, SBit s, Condition cond) mov() argument
1647 mov_label_offset(Register dst, Label* label) mov_label_offset() argument
1695 bic(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) bic() argument
1700 mvn(Register dst, const Operand& src, SBit s, Condition cond) mvn() argument
1704 asr(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) asr() argument
1713 lsl(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) lsl() argument
1722 lsr(Register dst, Register src1, const Operand& src2, SBit s, Condition cond) lsr() argument
1732 mla(Register dst, Register src1, Register src2, Register srcA, SBit s, Condition cond) mla() argument
1739 mls(Register dst, Register src1, Register src2, Register srcA, Condition cond) mls() argument
1747 sdiv(Register dst, Register src1, Register src2, Condition cond) sdiv() argument
1755 udiv(Register dst, Register src1, Register src2, Condition cond) udiv() argument
1763 mul(Register dst, Register src1, Register src2, SBit s, Condition cond) mul() argument
1770 smmla(Register dst, Register src1, Register src2, Register srcA, Condition cond) smmla() argument
1777 smmul(Register dst, Register src1, Register src2, Condition cond) smmul() argument
1817 clz(Register dst, Register src, Condition cond) clz() argument
1826 usat(Register dst, int satpos, const Operand& src, Condition cond) usat() argument
1848 ubfx(Register dst, Register src, int lsb, int width, Condition cond) ubfx() argument
1863 sbfx(Register dst, Register src, int lsb, int width, Condition cond) sbfx() argument
1877 bfc(Register dst, int lsb, int width, Condition cond) bfc() argument
1890 bfi(Register dst, Register src, int lsb, int width, Condition cond) bfi() argument
1901 pkhbt(Register dst, Register src1, const Operand& src2, Condition cond) pkhbt() argument
1916 pkhtb(Register dst, Register src1, const Operand& src2, Condition cond) pkhtb() argument
1932 sxtb(Register dst, Register src, int rotate, Condition cond) sxtb() argument
1943 sxtab(Register dst, Register src1, Register src2, int rotate, Condition cond) sxtab() argument
1956 sxth(Register dst, Register src, int rotate, Condition cond) sxth() argument
1967 sxtah(Register dst, Register src1, Register src2, int rotate, Condition cond) sxtah() argument
1980 uxtb(Register dst, Register src, int rotate, Condition cond) uxtb() argument
1991 uxtab(Register dst, Register src1, Register src2, int rotate, Condition cond) uxtab() argument
2004 uxtb16(Register dst, Register src, int rotate, Condition cond) uxtb16() argument
2015 uxth(Register dst, Register src, int rotate, Condition cond) uxth() argument
2026 uxtah(Register dst, Register src1, Register src2, int rotate, Condition cond) uxtah() argument
2039 rbit(Register dst, Register src, Condition cond) rbit() argument
2048 rev(Register dst, Register src, Condition cond) rev() argument
2057 mrs(Register dst, SRegister s, Condition cond) mrs() argument
2090 ldr(Register dst, const MemOperand& src, Condition cond) ldr() argument
2094 str(Register src, const MemOperand& dst, Condition cond) str() argument
2098 ldrb(Register dst, const MemOperand& src, Condition cond) ldrb() argument
2102 strb(Register src, const MemOperand& dst, Condition cond) strb() argument
2106 ldrh(Register dst, const MemOperand& src, Condition cond) ldrh() argument
2110 strh(Register src, const MemOperand& dst, Condition cond) strh() argument
2114 ldrsb(Register dst, const MemOperand& src, Condition cond) ldrsb() argument
2118 ldrsh(Register dst, const MemOperand& src, Condition cond) ldrsh() argument
2131 strd(Register src1, Register src2, const MemOperand& dst, Condition cond) strd() argument
2140 ldr_pcrel(Register dst, int imm12, Condition cond) ldr_pcrel() argument
2151 ldrex(Register dst, Register src, Condition cond) ldrex() argument
2159 strex(Register src1, Register src2, Register dst, Condition cond) strex() argument
2173 ldrexb(Register dst, Register src, Condition cond) ldrexb() argument
2182 strexb(Register src1, Register src2, Register dst, Condition cond) strexb() argument
2196 ldrexh(Register dst, Register src, Condition cond) ldrexh() argument
2205 strexh(Register src1, Register src2, Register dst, Condition cond) strexh() argument
2231 strexd(Register res, Register src1, Register src2, Register dst, Condition cond) strexd() argument
2262 ldm(BlockAddrMode am, Register base, RegList dst, Condition cond) ldm() argument
2425 vldr(const DwVfpRegister dst, const Register base, int offset, const Condition cond) vldr() argument
2461 vldr(const DwVfpRegister dst, const MemOperand& operand, const Condition cond) vldr() argument
2476 vldr(const SwVfpRegister dst, const Register base, int offset, const Condition cond) vldr() argument
2510 vldr(const SwVfpRegister dst, const MemOperand& operand, const Condition cond) vldr() argument
2726 vmov(const DwVfpRegister dst, uint64_t imm) vmov() argument
2744 vmov(const QwNeonRegister dst, uint64_t imm) vmov() argument
2810 vmov(const SwVfpRegister dst, Float32 imm) vmov() argument
2832 vmov(const DwVfpRegister dst, base::Double imm, const Register extra_scratch) vmov() argument
2881 vmov(const SwVfpRegister dst, const SwVfpRegister src, const Condition cond) vmov() argument
2892 vmov(const DwVfpRegister dst, const DwVfpRegister src, const Condition cond) vmov() argument
2908 vmov(const DwVfpRegister dst, const Register src1, const Register src2, const Condition cond) vmov() argument
2936 vmov(const SwVfpRegister dst, const Register src, const Condition cond) vmov() argument
2948 vmov(const Register dst, const SwVfpRegister src, const Condition cond) vmov() argument
3055 vcvt_f64_s32(const DwVfpRegister dst, const SwVfpRegister src, VFPConversionMode mode, const Condition cond) vcvt_f64_s32() argument
3061 vcvt_f32_s32(const SwVfpRegister dst, const SwVfpRegister src, VFPConversionMode mode, const Condition cond) vcvt_f32_s32() argument
3066 vcvt_f64_u32(const DwVfpRegister dst, const SwVfpRegister src, VFPConversionMode mode, const Condition cond) vcvt_f64_u32() argument
3072 vcvt_f32_u32(const SwVfpRegister dst, const SwVfpRegister src, VFPConversionMode mode, const Condition cond) vcvt_f32_u32() argument
3077 vcvt_s32_f32(const SwVfpRegister dst, const SwVfpRegister src, VFPConversionMode mode, const Condition cond) vcvt_s32_f32() argument
3082 vcvt_u32_f32(const SwVfpRegister dst, const SwVfpRegister src, VFPConversionMode mode, const Condition cond) vcvt_u32_f32() argument
3087 vcvt_s32_f64(const SwVfpRegister dst, const DwVfpRegister src, VFPConversionMode mode, const Condition cond) vcvt_s32_f64() argument
3093 vcvt_u32_f64(const SwVfpRegister dst, const DwVfpRegister src, VFPConversionMode mode, const Condition cond) vcvt_u32_f64() argument
3099 vcvt_f64_f32(const DwVfpRegister dst, const SwVfpRegister src, VFPConversionMode mode, const Condition cond) vcvt_f64_f32() argument
3105 vcvt_f32_f64(const SwVfpRegister dst, const DwVfpRegister src, VFPConversionMode mode, const Condition cond) vcvt_f32_f64() argument
3111 vcvt_f64_s32(const DwVfpRegister dst, int fraction_bits, const Condition cond) vcvt_f64_s32() argument
3128 vneg(const DwVfpRegister dst, const DwVfpRegister src, const Condition cond) vneg() argument
3144 vneg(const SwVfpRegister dst, const SwVfpRegister src, const Condition cond) vneg() argument
3158 vabs(const DwVfpRegister dst, const DwVfpRegister src, const Condition cond) vabs() argument
3173 vabs(const SwVfpRegister dst, const SwVfpRegister src, const Condition cond) vabs() argument
3186 vadd(const DwVfpRegister dst, const DwVfpRegister src1, const DwVfpRegister src2, const Condition cond) vadd() argument
3206 vadd(const SwVfpRegister dst, const SwVfpRegister src1, const SwVfpRegister src2, const Condition cond) vadd() argument
3223 vsub(const DwVfpRegister dst, const DwVfpRegister src1, const DwVfpRegister src2, const Condition cond) vsub() argument
3243 vsub(const SwVfpRegister dst, const SwVfpRegister src1, const SwVfpRegister src2, const Condition cond) vsub() argument
3260 vmul(const DwVfpRegister dst, const DwVfpRegister src1, const DwVfpRegister src2, const Condition cond) vmul() argument
3280 vmul(const SwVfpRegister dst, const SwVfpRegister src1, const SwVfpRegister src2, const Condition cond) vmul() argument
3297 vmla(const DwVfpRegister dst, const DwVfpRegister src1, const DwVfpRegister src2, const Condition cond) vmla() argument
3315 vmla(const SwVfpRegister dst, const SwVfpRegister src1, const SwVfpRegister src2, const Condition cond) vmla() argument
3330 vmls(const DwVfpRegister dst, const DwVfpRegister src1, const DwVfpRegister src2, const Condition cond) vmls() argument
3348 vmls(const SwVfpRegister dst, const SwVfpRegister src1, const SwVfpRegister src2, const Condition cond) vmls() argument
3363 vdiv(const DwVfpRegister dst, const DwVfpRegister src1, const DwVfpRegister src2, const Condition cond) vdiv() argument
3383 vdiv(const SwVfpRegister dst, const SwVfpRegister src1, const SwVfpRegister src2, const Condition cond) vdiv() argument
3457 vmaxnm(const DwVfpRegister dst, const DwVfpRegister src1, const DwVfpRegister src2) vmaxnm() argument
3473 vmaxnm(const SwVfpRegister dst, const SwVfpRegister src1, const SwVfpRegister src2) vmaxnm() argument
3489 vminnm(const DwVfpRegister dst, const DwVfpRegister src1, const DwVfpRegister src2) vminnm() argument
3505 vminnm(const SwVfpRegister dst, const SwVfpRegister src1, const SwVfpRegister src2) vminnm() argument
3521 vsel(Condition cond, const DwVfpRegister dst, const DwVfpRegister src1, const DwVfpRegister src2) vsel() argument
3553 vsel(Condition cond, const SwVfpRegister dst, const SwVfpRegister src1, const SwVfpRegister src2) vsel() argument
3585 vsqrt(const DwVfpRegister dst, const DwVfpRegister src, const Condition cond) vsqrt() argument
3600 vsqrt(const SwVfpRegister dst, const SwVfpRegister src, const Condition cond) vsqrt() argument
3613 vmsr(Register dst, Condition cond) vmsr() argument
3620 vmrs(Register dst, Condition cond) vmrs() argument
3627 vrinta(const SwVfpRegister dst, const SwVfpRegister src) vrinta() argument
3640 vrinta(const DwVfpRegister dst, const DwVfpRegister src) vrinta() argument
3653 vrintn(const SwVfpRegister dst, const SwVfpRegister src) vrintn() argument
3666 vrintn(const DwVfpRegister dst, const DwVfpRegister src) vrintn() argument
3679 vrintp(const SwVfpRegister dst, const SwVfpRegister src) vrintp() argument
3692 vrintp(const DwVfpRegister dst, const DwVfpRegister src) vrintp() argument
3705 vrintm(const SwVfpRegister dst, const SwVfpRegister src) vrintm() argument
3718 vrintm(const DwVfpRegister dst, const DwVfpRegister src) vrintm() argument
3731 vrintz(const SwVfpRegister dst, const SwVfpRegister src, const Condition cond) vrintz() argument
3744 vrintz(const DwVfpRegister dst, const DwVfpRegister src, const Condition cond) vrintz() argument
3759 vld1(NeonSize size, const NeonListOperand& dst, const NeonMemOperand& src) vld1() argument
3773 vld1s(NeonSize size, const NeonListOperand& dst, uint8_t index, const NeonMemOperand& src) vld1s() argument
3795 vld1r(NeonSize size, const NeonListOperand& dst, const NeonMemOperand& src) vld1r() argument
3805 vst1(NeonSize size, const NeonListOperand& src, const NeonMemOperand& dst) vst1() argument
3817 vst1s(NeonSize size, const NeonListOperand& src, uint8_t index, const NeonMemOperand& dst) vst1s() argument
3833 vmovl(NeonDataType dt, QwNeonRegister dst, DwVfpRegister src) vmovl() argument
3848 vqmovn(NeonDataType dst_dt, NeonDataType src_dt, DwVfpRegister dst, QwNeonRegister src) vqmovn() argument
3891 vmov(NeonDataType dt, DwVfpRegister dst, int index, Register src) vmov() argument
3903 vmov(NeonDataType dt, Register dst, DwVfpRegister src, int index) vmov() argument
3917 vmov(QwNeonRegister dst, QwNeonRegister src) vmov() argument
3923 vdup(NeonSize size, QwNeonRegister dst, Register src) vdup() argument
3975 vdup(NeonSize size, DwVfpRegister dst, DwVfpRegister src, int index) vdup() argument
3982 vdup(NeonSize size, QwNeonRegister dst, DwVfpRegister src, int index) vdup() argument
3990 EncodeNeonVCVT(VFPType dst_type, QwNeonRegister dst, VFPType src_type, QwNeonRegister src) EncodeNeonVCVT() argument
4013 vcvt_f32_s32(QwNeonRegister dst, QwNeonRegister src) vcvt_f32_s32() argument
4020 vcvt_f32_u32(QwNeonRegister dst, QwNeonRegister src) vcvt_f32_u32() argument
4027 vcvt_s32_f32(QwNeonRegister dst, QwNeonRegister src) vcvt_s32_f32() argument
4034 vcvt_u32_f32(QwNeonRegister dst, QwNeonRegister src) vcvt_u32_f32() argument
4168 vmvn(QwNeonRegister dst, QwNeonRegister src) vmvn() argument
4175 vswp(DwVfpRegister dst, DwVfpRegister src) vswp() argument
4183 vswp(QwNeonRegister dst, QwNeonRegister src) vswp() argument
4190 vabs(QwNeonRegister dst, QwNeonRegister src) vabs() argument
4197 vabs(NeonSize size, QwNeonRegister dst, QwNeonRegister src) vabs() argument
4204 vneg(QwNeonRegister dst, QwNeonRegister src) vneg() argument
4211 vneg(NeonSize size, QwNeonRegister dst, QwNeonRegister src) vneg() argument
4263 vand(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vand() argument
4272 vbic(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vbic() argument
4281 vbsl(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vbsl() argument
4290 veor(DwVfpRegister dst, DwVfpRegister src1, DwVfpRegister src2) veor() argument
4299 veor(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) veor() argument
4308 vorr(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vorr() argument
4317 vorn(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vorn() argument
4339 EncodeNeonBinOp(FPBinOp op, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) EncodeNeonBinOp() argument
4402 EncodeNeonBinOp(IntegerBinOp op, NeonDataType dt, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) EncodeNeonBinOp() argument
4461 EncodeNeonBinOp(IntegerBinOp op, NeonSize size, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) EncodeNeonBinOp() argument
4468 vadd(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vadd() argument
4476 vadd(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vadd() argument
4484 vqadd(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vqadd() argument
4492 vsub(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vsub() argument
4500 vsub(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vsub() argument
4508 vqsub(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vqsub() argument
4516 vmlal(NeonDataType dt, QwNeonRegister dst, DwVfpRegister src1, DwVfpRegister src2) vmlal() argument
4535 vmul(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vmul() argument
4543 vmul(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vmul() argument
4551 vmull(NeonDataType dt, QwNeonRegister dst, DwVfpRegister src1, DwVfpRegister src2) vmull() argument
4568 vmin(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vmin() argument
4576 vmin(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vmin() argument
4584 vmax(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vmax() argument
4592 vmax(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vmax() argument
4673 vshl(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src, int shift) vshl() argument
4682 vshl(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src, QwNeonRegister shift) vshl() argument
4691 vshr(NeonDataType dt, DwVfpRegister dst, DwVfpRegister src, int shift) vshr() argument
4700 vshr(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src, int shift) vshr() argument
4709 vsli(NeonSize size, DwVfpRegister dst, DwVfpRegister src, int shift) vsli() argument
4718 vsri(NeonSize size, DwVfpRegister dst, DwVfpRegister src, int shift) vsri() argument
4727 vsra(NeonDataType dt, DwVfpRegister dst, DwVfpRegister src, int imm) vsra() argument
4736 vrecpe(QwNeonRegister dst, QwNeonRegister src) vrecpe() argument
4743 vrsqrte(QwNeonRegister dst, QwNeonRegister src) vrsqrte() argument
4750 vrecps(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vrecps() argument
4758 vrsqrts(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vrsqrts() argument
4768 EncodeNeonPairwiseOp(NeonPairwiseOp op, NeonDataType dt, DwVfpRegister dst, DwVfpRegister src1, DwVfpRegister src2) EncodeNeonPairwiseOp() argument
4797 vpadd(DwVfpRegister dst, DwVfpRegister src1, DwVfpRegister src2) vpadd() argument
4813 vpadd(NeonSize size, DwVfpRegister dst, DwVfpRegister src1, DwVfpRegister src2) vpadd() argument
4821 vpmin(NeonDataType dt, DwVfpRegister dst, DwVfpRegister src1, DwVfpRegister src2) vpmin() argument
4829 vpmax(NeonDataType dt, DwVfpRegister dst, DwVfpRegister src1, DwVfpRegister src2) vpmax() argument
4837 vrintm(NeonDataType dt, const QwNeonRegister dst, const QwNeonRegister src) vrintm() argument
4845 vrintn(NeonDataType dt, const QwNeonRegister dst, const QwNeonRegister src) vrintn() argument
4853 vrintp(NeonDataType dt, const QwNeonRegister dst, const QwNeonRegister src) vrintp() argument
4861 vrintz(NeonDataType dt, const QwNeonRegister dst, const QwNeonRegister src) vrintz() argument
4869 vtst(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vtst() argument
4877 vceq(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vceq() argument
4885 vceq(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vceq() argument
4893 vceq(NeonSize size, QwNeonRegister dst, QwNeonRegister src1, int value) vceq() argument
4902 vcge(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vcge() argument
4910 vcge(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vcge() argument
4918 vcgt(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vcgt() argument
4926 vcgt(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vcgt() argument
4934 vclt(NeonSize size, QwNeonRegister dst, QwNeonRegister src, int value) vclt() argument
4943 vrhadd(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vrhadd() argument
4951 vext(QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2, int bytes) vext() argument
5003 vrev16(NeonSize size, QwNeonRegister dst, QwNeonRegister src) vrev16() argument
5010 vrev32(NeonSize size, QwNeonRegister dst, QwNeonRegister src) vrev32() argument
5017 vrev64(NeonSize size, QwNeonRegister dst, QwNeonRegister src) vrev64() argument
5038 vpadal(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src) vpadal() argument
5046 vpaddl(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src) vpaddl() argument
5054 vqrdmulh(NeonDataType dt, QwNeonRegister dst, QwNeonRegister src1, QwNeonRegister src2) vqrdmulh() argument
5061 vcnt(QwNeonRegister dst, QwNeonRegister src) vcnt() argument
5069 EncodeNeonVTB(DwVfpRegister dst, const NeonListOperand& list, DwVfpRegister index, bool vtbx) EncodeNeonVTB() argument
5086 vtbl(DwVfpRegister dst, const NeonListOperand& list, DwVfpRegister index) vtbl() argument
5092 vtbx(DwVfpRegister dst, const NeonListOperand& list, DwVfpRegister index) vtbx() argument
[all...]
/third_party/protobuf/src/google/protobuf/stubs/
H A Dfastmem.h127 inline void memcpy_inlined(char *dst, const char *src, size_t size) { in memcpy_inlined() argument
131 case 1: memcpy(dst, src, 1); break; in memcpy_inlined()
132 case 2: memcpy(dst, src, 2); break; in memcpy_inlined()
133 case 3: memcpy(dst, src, 3); break; in memcpy_inlined()
134 case 4: memcpy(dst, src, 4); break; in memcpy_inlined()
135 case 5: memcpy(dst, src, 5); break; in memcpy_inlined()
136 case 6: memcpy(dst, src, 6); break; in memcpy_inlined()
137 case 7: memcpy(dst, src, 7); break; in memcpy_inlined()
138 case 8: memcpy(dst, src, 8); break; in memcpy_inlined()
139 case 9: memcpy(dst, sr in memcpy_inlined()
[all...]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_surface.c41 struct pipe_resource *dst, unsigned dst_level, in lp_resource_copy_ms()
54 for (unsigned i = 0; i < MAX2(src->nr_samples, dst->nr_samples); i++) { in lp_resource_copy_ms()
64 dst, 0, PIPE_MAP_WRITE, i, in lp_resource_copy_ms()
86 struct pipe_resource *dst, unsigned dst_level, in lp_resource_copy()
92 dst, dst_level, in lp_resource_copy()
105 if (dst->nr_samples > 1 && in lp_resource_copy()
106 (dst->nr_samples == src->nr_samples || in lp_resource_copy()
107 (src->nr_samples == 1 && dst->nr_samples > 1))) { in lp_resource_copy()
108 lp_resource_copy_ms(pipe, dst, dst_level, dstx, dsty, dstz, in lp_resource_copy()
112 util_resource_copy_region(pipe, dst, dst_leve in lp_resource_copy()
40 lp_resource_copy_ms(struct pipe_context *pipe, struct pipe_resource *dst, unsigned dst_level, unsigned dstx, unsigned dsty, unsigned dstz, struct pipe_resource *src, unsigned src_level, const struct pipe_box *src_box) lp_resource_copy_ms() argument
85 lp_resource_copy(struct pipe_context *pipe, struct pipe_resource *dst, unsigned dst_level, unsigned dstx, unsigned dsty, unsigned dstz, struct pipe_resource *src, unsigned src_level, const struct pipe_box *src_box) lp_resource_copy() argument
313 llvmpipe_clear_render_target(struct pipe_context *pipe, struct pipe_surface *dst, const union pipe_color_union *color, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) llvmpipe_clear_render_target() argument
382 llvmpipe_clear_depth_stencil(struct pipe_context *pipe, struct pipe_surface *dst, unsigned clear_flags, double depth, unsigned stencil, unsigned dstx, unsigned dsty, unsigned width, unsigned height, bool render_condition_enabled) llvmpipe_clear_depth_stencil() argument
473 char *dst; llvmpipe_clear_buffer() local
[all...]
/third_party/mesa3d/src/gallium/drivers/lima/
H A Dlima_blit.c33 const struct pipe_box *dst, in lima_pack_blit_cmd()
50 float fb_width = dst->width, fb_height = dst->height; in lima_pack_blit_cmd()
125 dst->x + dst->width, dst->y, 0, 1, in lima_pack_blit_cmd()
126 dst->x, dst->y, 0, 1, in lima_pack_blit_cmd()
127 dst->x, dst in lima_pack_blit_cmd()
29 lima_pack_blit_cmd(struct lima_job *job, struct util_dynarray *cmd_array, struct pipe_surface *psurf, const struct pipe_box *src, const struct pipe_box *dst, unsigned filter, bool scissor, unsigned sample_mask, unsigned mrt_idx) lima_pack_blit_cmd() argument
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_opt_memcpy.c129 nir_deref_instr *dst = nir_src_as_deref(cpy->src[0]); in try_lower_memcpy() local
133 if (dst == src) { in try_lower_memcpy()
148 glsl_type_is_vector_or_scalar(dst->type) && in try_lower_memcpy()
149 glsl_get_explicit_size(dst->type, false) == size && in try_lower_memcpy()
154 data = nir_bitcast_vector(b, data, glsl_get_bit_size(dst->type)); in try_lower_memcpy()
155 assert(data->num_components == glsl_get_vector_elements(dst->type)); in try_lower_memcpy()
156 nir_store_deref_with_access(b, dst, data, ~0 /* write mask */, in try_lower_memcpy()
162 if (dst->type == src->type && in try_lower_memcpy()
163 type_is_tightly_packed(dst->type, &type_size) && in try_lower_memcpy()
166 nir_copy_deref_with_access(b, dst, sr in try_lower_memcpy()
[all...]
/third_party/ffmpeg/libavcodec/mips/
H A Dvp9_mc_msa.c130 #define PCKEV_XORI128_AVG_ST_UB(in0, in1, dst, pdst) \
135 tmp_m = __msa_aver_u_b(tmp_m, (v16u8) dst); \
139 #define PCKEV_AVG_ST_UB(in0, in1, dst, pdst) \
144 tmp_m = __msa_aver_u_b(tmp_m, (v16u8) dst); \
160 uint8_t *dst, int32_t dst_stride, in common_hz_8t_4x4_msa()
185 ST_W4(out, 0, 1, 2, 3, dst, dst_stride); in common_hz_8t_4x4_msa()
189 uint8_t *dst, int32_t dst_stride, in common_hz_8t_4x8_msa()
220 ST_W4(out, 0, 1, 2, 3, dst, dst_stride); in common_hz_8t_4x8_msa()
222 ST_W4(out, 0, 1, 2, 3, dst + 4 * dst_stride, dst_stride); in common_hz_8t_4x8_msa()
226 uint8_t *dst, int32_ in common_hz_8t_4w_msa()
159 common_hz_8t_4x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_8t_4x4_msa() argument
188 common_hz_8t_4x8_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_8t_4x8_msa() argument
225 common_hz_8t_4w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_4w_msa() argument
236 common_hz_8t_8x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_8t_8x4_msa() argument
267 common_hz_8t_8x8mult_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_8x8mult_msa() argument
303 common_hz_8t_8w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_8w_msa() argument
315 common_hz_8t_16w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_16w_msa() argument
354 common_hz_8t_32w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_32w_msa() argument
413 common_hz_8t_64w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_64w_msa() argument
470 common_vt_8t_4w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_4w_msa() argument
522 common_vt_8t_8w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_8w_msa() argument
577 common_vt_8t_16w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_16w_msa() argument
656 common_vt_8t_16w_mult_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height, int32_t width) common_vt_8t_16w_mult_msa() argument
745 common_vt_8t_32w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_32w_msa() argument
753 common_vt_8t_64w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_64w_msa() argument
761 common_hv_8ht_8vt_4w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_4w_msa() argument
837 common_hv_8ht_8vt_8w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_8w_msa() argument
935 common_hv_8ht_8vt_16w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_16w_msa() argument
952 common_hv_8ht_8vt_32w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_32w_msa() argument
969 common_hv_8ht_8vt_64w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_64w_msa() argument
986 common_hz_8t_and_aver_dst_4x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_8t_and_aver_dst_4x4_msa() argument
1021 common_hz_8t_and_aver_dst_4x8_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_8t_and_aver_dst_4x8_msa() argument
1066 common_hz_8t_and_aver_dst_4w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_and_aver_dst_4w_msa() argument
1081 common_hz_8t_and_aver_dst_8w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_and_aver_dst_8w_msa() argument
1122 common_hz_8t_and_aver_dst_16w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_and_aver_dst_16w_msa() argument
1180 common_hz_8t_and_aver_dst_32w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_and_aver_dst_32w_msa() argument
1239 common_hz_8t_and_aver_dst_64w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_8t_and_aver_dst_64w_msa() argument
1301 common_vt_8t_and_aver_dst_4w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_and_aver_dst_4w_msa() argument
1360 common_vt_8t_and_aver_dst_8w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_and_aver_dst_8w_msa() argument
1421 common_vt_8t_and_aver_dst_16w_mult_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height, int32_t width) common_vt_8t_and_aver_dst_16w_mult_msa() argument
1518 common_vt_8t_and_aver_dst_16w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_and_aver_dst_16w_msa() argument
1528 common_vt_8t_and_aver_dst_32w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_and_aver_dst_32w_msa() argument
1538 common_vt_8t_and_aver_dst_64w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_8t_and_aver_dst_64w_msa() argument
1548 common_hv_8ht_8vt_and_aver_dst_4w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_and_aver_dst_4w_msa() argument
1631 common_hv_8ht_8vt_and_aver_dst_8w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_and_aver_dst_8w_msa() argument
1735 common_hv_8ht_8vt_and_aver_dst_16w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_and_aver_dst_16w_msa() argument
1755 common_hv_8ht_8vt_and_aver_dst_32w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_and_aver_dst_32w_msa() argument
1775 common_hv_8ht_8vt_and_aver_dst_64w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_8ht_8vt_and_aver_dst_64w_msa() argument
1795 common_hz_2t_4x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_2t_4x4_msa() argument
1818 common_hz_2t_4x8_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_2t_4x8_msa() argument
1847 ff_put_bilin_4h_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_4h_msa() argument
1860 common_hz_2t_8x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_2t_8x4_msa() argument
1884 common_hz_2t_8x8mult_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_2t_8x8mult_msa() argument
1946 ff_put_bilin_8h_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_8h_msa() argument
1960 ff_put_bilin_16h_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_16h_msa() argument
2027 ff_put_bilin_32h_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_32h_msa() argument
2074 ff_put_bilin_64h_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_64h_msa() argument
2117 common_vt_2t_4x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_vt_2t_4x4_msa() argument
2143 common_vt_2t_4x8_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_vt_2t_4x8_msa() argument
2177 ff_put_bilin_4v_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_4v_msa() argument
2190 common_vt_2t_8x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_vt_2t_8x4_msa() argument
2214 common_vt_2t_8x8mult_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_2t_8x8mult_msa() argument
2259 ff_put_bilin_8v_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_8v_msa() argument
2273 ff_put_bilin_16v_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_16v_msa() argument
2327 ff_put_bilin_32v_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_32v_msa() argument
2405 ff_put_bilin_64v_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_64v_msa() argument
2486 common_hv_2ht_2vt_4x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert) common_hv_2ht_2vt_4x4_msa() argument
2519 common_hv_2ht_2vt_4x8_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert) common_hv_2ht_2vt_4x8_msa() argument
2565 ff_put_bilin_4hv_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_4hv_msa() argument
2581 common_hv_2ht_2vt_8x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert) common_hv_2ht_2vt_8x4_msa() argument
2624 common_hv_2ht_2vt_8x8mult_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_2ht_2vt_8x8mult_msa() argument
2703 ff_put_bilin_8hv_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_8hv_msa() argument
2719 ff_put_bilin_16hv_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_16hv_msa() argument
2790 ff_put_bilin_32hv_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_32hv_msa() argument
2804 ff_put_bilin_64hv_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_put_bilin_64hv_msa() argument
2818 common_hz_2t_and_aver_dst_4x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_2t_and_aver_dst_4x4_msa() argument
2847 common_hz_2t_and_aver_dst_4x8_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_2t_and_aver_dst_4x8_msa() argument
2881 ff_avg_bilin_4h_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_4h_msa() argument
2896 common_hz_2t_and_aver_dst_8x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_hz_2t_and_aver_dst_8x4_msa() argument
2924 common_hz_2t_and_aver_dst_8x8mult_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_hz_2t_and_aver_dst_8x8mult_msa() argument
2996 ff_avg_bilin_8h_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_8h_msa() argument
3011 ff_avg_bilin_16h_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_16h_msa() argument
3079 ff_avg_bilin_32h_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_32h_msa() argument
3129 ff_avg_bilin_64h_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_64h_msa() argument
3171 common_vt_2t_and_aver_dst_4x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_vt_2t_and_aver_dst_4x4_msa() argument
3207 common_vt_2t_and_aver_dst_4x8_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_vt_2t_and_aver_dst_4x8_msa() argument
3246 ff_avg_bilin_4v_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_4v_msa() argument
3261 common_vt_2t_and_aver_dst_8x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter) common_vt_2t_and_aver_dst_8x4_msa() argument
3290 common_vt_2t_and_aver_dst_8x8mult_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter, int32_t height) common_vt_2t_and_aver_dst_8x8mult_msa() argument
3345 ff_avg_bilin_8v_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_8v_msa() argument
3360 ff_avg_bilin_16v_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_16v_msa() argument
3414 ff_avg_bilin_32v_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_32v_msa() argument
3494 ff_avg_bilin_64v_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_64v_msa() argument
3581 common_hv_2ht_2vt_and_aver_dst_4x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert) common_hv_2ht_2vt_and_aver_dst_4x4_msa() argument
3625 common_hv_2ht_2vt_and_aver_dst_4x8_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert) common_hv_2ht_2vt_and_aver_dst_4x8_msa() argument
3677 ff_avg_bilin_4hv_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_4hv_msa() argument
3693 common_hv_2ht_2vt_and_aver_dst_8x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert) common_hv_2ht_2vt_and_aver_dst_8x4_msa() argument
3743 common_hv_2ht_2vt_and_aver_dst_8x8mult_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, const int8_t *filter_horiz, const int8_t *filter_vert, int32_t height) common_hv_2ht_2vt_and_aver_dst_8x8mult_msa() argument
3805 ff_avg_bilin_8hv_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_8hv_msa() argument
3823 ff_avg_bilin_16hv_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_16hv_msa() argument
3894 ff_avg_bilin_32hv_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_32hv_msa() argument
3908 ff_avg_bilin_64hv_msa(uint8_t *dst, ptrdiff_t dst_stride, const uint8_t *src, ptrdiff_t src_stride, int height, int mx, int my) ff_avg_bilin_64hv_msa() argument
3922 copy_width8_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) copy_width8_msa() argument
3952 copy_width16_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) copy_width16_msa() argument
3996 copy_width32_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) copy_width32_msa() argument
4026 copy_width64_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) copy_width64_msa() argument
4055 avg_width4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) avg_width4_msa() argument
4084 avg_width8_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) avg_width8_msa() argument
4126 avg_width16_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) avg_width16_msa() argument
4161 avg_width32_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) avg_width32_msa() argument
4224 avg_width64_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int32_t height) avg_width64_msa() argument
[all...]
/third_party/ltp/testcases/network/stress/ipsec/
H A Dipsec_lib.sh180 local dst=$3
190 TST_RTNL_CHK ip xfrm state add src $src dst $dst spi $spi_1 \
191 $p $ALG mode $mode sel src $src dst $dst
192 ROD ip xfrm state add src $dst dst $src spi $spi_2 \
193 $p $ALG mode $mode sel src $dst dst $src
195 ROD ip xfrm policy add src $src dst
[all...]
/third_party/libfuse/lib/
H A Dbuffer.c42 static ssize_t fuse_buf_write(const struct fuse_buf *dst, size_t dst_off, in fuse_buf_write() argument
50 if (dst->flags & FUSE_BUF_FD_SEEK) { in fuse_buf_write()
51 res = pwrite(dst->fd, (char *)src->mem + src_off, len, in fuse_buf_write()
52 dst->pos + dst_off); in fuse_buf_write()
54 res = write(dst->fd, (char *)src->mem + src_off, len); in fuse_buf_write()
65 if (!(dst->flags & FUSE_BUF_FD_RETRY)) in fuse_buf_write()
76 static ssize_t fuse_buf_read(const struct fuse_buf *dst, size_t dst_off, in fuse_buf_read() argument
85 res = pread(src->fd, (char *)dst->mem + dst_off, len, in fuse_buf_read()
88 res = read(src->fd, (char *)dst->mem + dst_off, len); in fuse_buf_read()
110 static ssize_t fuse_buf_fd_to_fd(const struct fuse_buf *dst, size_ argument
161 fuse_buf_splice(const struct fuse_buf *dst, size_t dst_off, const struct fuse_buf *src, size_t src_off, size_t len, enum fuse_buf_copy_flags flags) fuse_buf_splice() argument
216 fuse_buf_splice(const struct fuse_buf *dst, size_t dst_off, const struct fuse_buf *src, size_t src_off, size_t len, enum fuse_buf_copy_flags flags) fuse_buf_splice() argument
227 fuse_buf_copy_one(const struct fuse_buf *dst, size_t dst_off, const struct fuse_buf *src, size_t src_off, size_t len, enum fuse_buf_copy_flags flags) fuse_buf_copy_one() argument
294 const struct fuse_buf *dst = fuse_bufvec_current(dstv); fuse_buf_copy() local
[all...]
/third_party/skia/src/core/
H A DSkConvertPixels.cpp76 auto dst = (uint8_t*)vdst; in convert_to_alpha8() local
91 dst[x] = src16[x] >> 8; in convert_to_alpha8()
93 dst = SkTAddOffset<uint8_t>(dst, dstRB); in convert_to_alpha8()
108 memset(dst, 0xFF, srcInfo.width()); in convert_to_alpha8()
109 dst = SkTAddOffset<uint8_t>(dst, dstRB); in convert_to_alpha8()
118 dst[x] = SkPacked4444ToA32(src16[x]); in convert_to_alpha8()
120 dst = SkTAddOffset<uint8_t>(dst, dstR in convert_to_alpha8()
210 dst = { (void*)dstRow, dstStride }; convert_with_pipeline() local
[all...]
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Ddec_neon.c224 uint8_t* const dst, int stride) { in Store2x8_NEON()
225 vst2_lane_u8(dst + 0 * stride, v, 0); in Store2x8_NEON()
226 vst2_lane_u8(dst + 1 * stride, v, 1); in Store2x8_NEON()
227 vst2_lane_u8(dst + 2 * stride, v, 2); in Store2x8_NEON()
228 vst2_lane_u8(dst + 3 * stride, v, 3); in Store2x8_NEON()
229 vst2_lane_u8(dst + 4 * stride, v, 4); in Store2x8_NEON()
230 vst2_lane_u8(dst + 5 * stride, v, 5); in Store2x8_NEON()
231 vst2_lane_u8(dst + 6 * stride, v, 6); in Store2x8_NEON()
232 vst2_lane_u8(dst + 7 * stride, v, 7); in Store2x8_NEON()
236 uint8_t* const dst, in in Store2x16_NEON()
223 Store2x8_NEON(const uint8x8x2_t v, uint8_t* const dst, int stride) Store2x8_NEON() argument
235 Store2x16_NEON(const uint8x16_t p0, const uint8x16_t q0, uint8_t* const dst, int stride) Store2x16_NEON() argument
247 Store4x8_NEON(const uint8x8x4_t v, uint8_t* const dst, int stride) Store4x8_NEON() argument
259 Store4x16_NEON(const uint8x16_t p1, const uint8x16_t p0, const uint8x16_t q0, const uint8x16_t q1, uint8_t* const dst, int stride) Store4x16_NEON() argument
274 Store16x2_NEON(const uint8x16_t p0, const uint8x16_t q0, uint8_t* const dst, int stride) Store16x2_NEON() argument
280 Store16x4_NEON(const uint8x16_t p1, const uint8x16_t p0, const uint8x16_t q0, const uint8x16_t q1, uint8_t* const dst, int stride) Store16x4_NEON() argument
385 SaturateAndStore4x4_NEON(uint8_t* const dst, const int16x8_t dst01, const int16x8_t dst23) SaturateAndStore4x4_NEON() argument
399 Add4x4_NEON(const int16x8_t row01, const int16x8_t row23, uint8_t* const dst) Add4x4_NEON() argument
1043 TransformOne_NEON(const int16_t* in, uint8_t* dst) TransformOne_NEON() argument
1053 TransformOne_NEON(const int16_t* in, uint8_t* dst) TransformOne_NEON() argument
1186 TransformTwo_NEON(const int16_t* in, uint8_t* dst, int do_two) TransformTwo_NEON() argument
1193 TransformDC_NEON(const int16_t* in, uint8_t* dst) TransformDC_NEON() argument
1259 TransformAC3_NEON(const int16_t* in, uint8_t* dst) TransformAC3_NEON() argument
1282 DC4_NEON(uint8_t* dst) DC4_NEON() argument
1303 TrueMotion_NEON(uint8_t* dst, int size) TrueMotion_NEON() argument
1338 TM4_NEON(uint8_t* dst) TM4_NEON() argument
1340 VE4_NEON(uint8_t* dst) VE4_NEON() argument
1356 RD4_NEON(uint8_t* dst) RD4_NEON() argument
1385 LD4_NEON(uint8_t* dst) LD4_NEON() argument
1407 VE8uv_NEON(uint8_t* dst) VE8uv_NEON() argument
1415 HE8uv_NEON(uint8_t* dst) HE8uv_NEON() argument
1424 DC8_NEON(uint8_t* dst, int do_top, int do_left) DC8_NEON() argument
1480 DC8uv_NEON(uint8_t* dst) DC8uv_NEON() argument
1481 DC8uvNoTop_NEON(uint8_t* dst) DC8uvNoTop_NEON() argument
1482 DC8uvNoLeft_NEON(uint8_t* dst) DC8uvNoLeft_NEON() argument
1483 DC8uvNoTopLeft_NEON(uint8_t* dst) DC8uvNoTopLeft_NEON() argument
1485 TM8uv_NEON(uint8_t* dst) TM8uv_NEON() argument
1490 VE16_NEON(uint8_t* dst) VE16_NEON() argument
1498 HE16_NEON(uint8_t* dst) HE16_NEON() argument
1507 DC16_NEON(uint8_t* dst, int do_top, int do_left) DC16_NEON() argument
1569 DC16TopLeft_NEON(uint8_t* dst) DC16TopLeft_NEON() argument
1570 DC16NoTop_NEON(uint8_t* dst) DC16NoTop_NEON() argument
1571 DC16NoLeft_NEON(uint8_t* dst) DC16NoLeft_NEON() argument
1572 DC16NoTopLeft_NEON(uint8_t* dst) DC16NoTopLeft_NEON() argument
1574 TM16_NEON(uint8_t* dst) TM16_NEON() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_blit.c56 info->dst.resource->nr_samples > 1); in vc4_tile_blit()
60 if (util_format_is_depth_or_stencil(info->dst.resource->format)) in vc4_tile_blit()
69 if (info->dst.box.x != info->src.box.x || in vc4_tile_blit()
70 info->dst.box.y != info->src.box.y || in vc4_tile_blit()
71 info->dst.box.width != info->src.box.width || in vc4_tile_blit()
72 info->dst.box.height != info->src.box.height) { in vc4_tile_blit()
76 int dst_surface_width = u_minify(info->dst.resource->width0, in vc4_tile_blit()
77 info->dst.level); in vc4_tile_blit()
78 int dst_surface_height = u_minify(info->dst.resource->height0, in vc4_tile_blit()
79 info->dst in vc4_tile_blit()
311 struct vc4_resource *dst = vc4_resource(info->dst.resource); vc4_yuv_blit() local
[all...]
/third_party/ffmpeg/libavutil/
H A Dfloat_dsp.c27 static void vector_fmul_c(float *dst, const float *src0, const float *src1, in vector_fmul_c() argument
32 dst[i] = src0[i] * src1[i]; in vector_fmul_c()
35 static void vector_dmul_c(double *dst, const double *src0, const double *src1, in vector_dmul_c() argument
40 dst[i] = src0[i] * src1[i]; in vector_dmul_c()
43 static void vector_fmac_scalar_c(float *dst, const float *src, float mul, in vector_fmac_scalar_c() argument
48 dst[i] += src[i] * mul; in vector_fmac_scalar_c()
51 static void vector_dmac_scalar_c(double *dst, const double *src, double mul, in vector_dmac_scalar_c() argument
56 dst[i] += src[i] * mul; in vector_dmac_scalar_c()
59 static void vector_fmul_scalar_c(float *dst, const float *src, float mul, in vector_fmul_scalar_c() argument
64 dst[ in vector_fmul_scalar_c()
67 vector_dmul_scalar_c(double *dst, const double *src, double mul, int len) vector_dmul_scalar_c() argument
75 vector_fmul_window_c(float *dst, const float *src0, const float *src1, const float *win, int len) vector_fmul_window_c() argument
94 vector_fmul_add_c(float *dst, const float *src0, const float *src1, const float *src2, int len) vector_fmul_add_c() argument
102 vector_fmul_reverse_c(float *dst, const float *src0, const float *src1, int len) vector_fmul_reverse_c() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderArithmetic.cpp27 auto &dst = state->createIntermediate(insn.resultId(), type.componentCount); in EmitVectorTimesScalar() local
33 dst.move(i, lhs.Float(i) * rhs.Float(0)); in EmitVectorTimesScalar()
42 auto &dst = state->createIntermediate(insn.resultId(), type.componentCount); in EmitMatrixTimesVector() local
53 dst.move(i, v); in EmitMatrixTimesVector()
62 auto &dst = state->createIntermediate(insn.resultId(), type.componentCount); in EmitVectorTimesMatrix() local
73 dst.move(i, v); in EmitVectorTimesMatrix()
82 auto &dst = state->createIntermediate(insn.resultId(), type.componentCount); in EmitMatrixTimesMatrix() local
99 dst.move(numRows * col + row, v); in EmitMatrixTimesMatrix()
109 auto &dst = state->createIntermediate(insn.resultId(), type.componentCount); in EmitOuterProduct() local
120 dst in EmitOuterProduct()
130 auto &dst = state->createIntermediate(insn.resultId(), type.componentCount); EmitTranspose() local
150 auto &dst = state->createIntermediate(insn.resultId(), type.componentCount); EmitUnaryOp() local
312 auto &dst = state->createIntermediate(insn.resultId(), type.componentCount); EmitBinaryOp() local
520 auto &dst = state->createIntermediate(insn.resultId(), type.componentCount); EmitDot() local
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dpack.c162 GLubyte *dst = (GLubyte *) _mesa_image_address2d(packing, dest, in _mesa_pack_bitmap() local
164 if (!dst) in _mesa_pack_bitmap()
168 memcpy( dst, src, width_in_bytes ); in _mesa_pack_bitmap()
170 flip_bytes( dst, width_in_bytes ); in _mesa_pack_bitmap()
180 GLubyte *d = dst; in _mesa_pack_bitmap()
207 GLubyte *d = dst; in _mesa_pack_bitmap()
560 GLubyte *dst = (GLubyte *) dest; in _mesa_unpack_stencil_span() local
563 dst[i] = (GLubyte) (indexes[i] & 0xff); in _mesa_unpack_stencil_span()
569 GLuint *dst = (GLuint *) dest; in _mesa_unpack_stencil_span() local
572 dst[ in _mesa_unpack_stencil_span()
581 GLuint *dst = (GLuint *) dest; _mesa_unpack_stencil_span() local
623 GLbyte *dst = (GLbyte *) dest; _mesa_pack_stencil_span() local
632 GLushort *dst = (GLushort *) dest; _mesa_pack_stencil_span() local
644 GLshort *dst = (GLshort *) dest; _mesa_pack_stencil_span() local
656 GLuint *dst = (GLuint *) dest; _mesa_pack_stencil_span() local
668 GLint *dst = (GLint *) dest; _mesa_pack_stencil_span() local
680 GLfloat *dst = (GLfloat *) dest; _mesa_pack_stencil_span() local
693 GLhalfARB *dst = (GLhalfARB *) dest; _mesa_pack_stencil_span() local
705 GLubyte *dst = (GLubyte *) dest; _mesa_pack_stencil_span() local
720 GLubyte *dst = (GLubyte *) dest; _mesa_pack_stencil_span() local
787 GLushort *dst = (GLushort *) dest; _mesa_unpack_depth_span() local
798 GLuint *dst = (GLuint *) dest; _mesa_unpack_depth_span() local
809 GLuint *dst = (GLuint *) dest; _mesa_unpack_depth_span() local
1022 GLubyte *dst = (GLubyte *) dest; _mesa_pack_depth_span() local
1031 GLbyte *dst = (GLbyte *) dest; _mesa_pack_depth_span() local
1040 GLushort *dst = (GLushort *) dest; _mesa_pack_depth_span() local
1052 GLshort *dst = (GLshort *) dest; _mesa_pack_depth_span() local
1065 GLuint *dst = (GLuint *) dest; _mesa_pack_depth_span() local
1079 GLuint *dst = (GLuint *) dest; _mesa_pack_depth_span() local
1091 GLint *dst = (GLint *) dest; _mesa_pack_depth_span() local
1103 GLfloat *dst = (GLfloat *) dest; _mesa_pack_depth_span() local
1116 GLhalfARB *dst = (GLhalfARB *) dest; _mesa_pack_depth_span() local
1244 GLubyte *dst; _mesa_unpack_image() local
1340 GLfloat *dst = (GLfloat *) dstAddr; _mesa_pack_luminance_from_rgba_float() local
1488 GLbyte *dst = (GLbyte *) dstAddr; _mesa_pack_luminance_from_rgba_integer() local
1494 GLshort *dst = (GLshort *) dstAddr; _mesa_pack_luminance_from_rgba_integer() local
1500 GLint *dst = (GLint *) dstAddr; _mesa_pack_luminance_from_rgba_integer() local
1525 GLbyte *dst = (GLbyte *) dstAddr; _mesa_pack_luminance_from_rgba_integer() local
1532 GLshort *dst = (GLshort *) dstAddr; _mesa_pack_luminance_from_rgba_integer() local
1539 GLint *dst = (GLint *) dstAddr; _mesa_pack_luminance_from_rgba_integer() local
1613 GLubyte *dst; _mesa_unpack_color_index_to_rgba_ubyte() local
1637 _mesa_unpack_ubyte_rgba_row(mesa_format format, uint32_t n, const void *src, uint8_t dst[][4]) _mesa_unpack_ubyte_rgba_row() argument
1673 unpack_uint_24_8_depth_stencil_Z24_UNORM_S8_UINT(const uint32_t *src, uint32_t *dst, uint32_t n) unpack_uint_24_8_depth_stencil_Z24_UNORM_S8_UINT() argument
1684 unpack_uint_24_8_depth_stencil_Z32_S8X24(const uint32_t *src, uint32_t *dst, uint32_t n) unpack_uint_24_8_depth_stencil_Z32_S8X24() argument
1699 unpack_uint_24_8_depth_stencil_S8_UINT_Z24_UNORM(const uint32_t *src, uint32_t *dst, uint32_t n) unpack_uint_24_8_depth_stencil_S8_UINT_Z24_UNORM() argument
1709 _mesa_unpack_uint_24_8_depth_stencil_row(mesa_format format, uint32_t n, const void *src, uint32_t *dst) _mesa_unpack_uint_24_8_depth_stencil_row() argument
1728 unpack_float_32_uint_24_8_Z24_UNORM_S8_UINT(const uint32_t *src, uint32_t *dst, uint32_t n) unpack_float_32_uint_24_8_Z24_UNORM_S8_UINT() argument
1745 unpack_float_32_uint_24_8_Z32_FLOAT_S8X24_UINT(const uint32_t *src, uint32_t *dst, uint32_t n) unpack_float_32_uint_24_8_Z32_FLOAT_S8X24_UINT() argument
1752 unpack_float_32_uint_24_8_S8_UINT_Z24_UNORM(const uint32_t *src, uint32_t *dst, uint32_t n) unpack_float_32_uint_24_8_S8_UINT_Z24_UNORM() argument
1783 _mesa_unpack_float_32_uint_24_8_depth_stencil_row(mesa_format format, uint32_t n, const void *src, uint32_t *dst) _mesa_unpack_float_32_uint_24_8_depth_stencil_row() argument
[all...]
H A Dformat_unpack.h37 const void *src, float dst[][4]) in _mesa_unpack_rgba_row()
39 util_format_unpack_rgba(format, dst, src, n); in _mesa_unpack_rgba_row()
44 const void *src, uint8_t dst[][4]);
48 const void *src, uint32_t dst[][4]) in _mesa_unpack_uint_rgba_row()
50 util_format_unpack_rgba(format, dst, src, n); in _mesa_unpack_uint_rgba_row()
55 const void *src, float *dst) in _mesa_unpack_float_z_row()
57 util_format_unpack_z_float((enum pipe_format)format, dst, src, n); in _mesa_unpack_float_z_row()
63 const void *src, uint32_t *dst) in _mesa_unpack_uint_z_row()
65 util_format_unpack_z_32unorm((enum pipe_format)format, dst, src, n); in _mesa_unpack_uint_z_row()
70 const void *src, uint8_t *dst) in _mesa_unpack_ubyte_stencil_row()
36 _mesa_unpack_rgba_row(mesa_format format, uint32_t n, const void *src, float dst[][4]) _mesa_unpack_rgba_row() argument
47 _mesa_unpack_uint_rgba_row(mesa_format format, uint32_t n, const void *src, uint32_t dst[][4]) _mesa_unpack_uint_rgba_row() argument
54 _mesa_unpack_float_z_row(mesa_format format, uint32_t n, const void *src, float *dst) _mesa_unpack_float_z_row() argument
62 _mesa_unpack_uint_z_row(mesa_format format, uint32_t n, const void *src, uint32_t *dst) _mesa_unpack_uint_z_row() argument
69 _mesa_unpack_ubyte_stencil_row(mesa_format format, uint32_t n, const void *src, uint8_t *dst) _mesa_unpack_ubyte_stencil_row() argument
[all...]
/third_party/vixl/src/aarch64/
H A Dsimulator-aarch64.h557 void ReadLane(T* dst, int lane) const { in ReadLane() argument
559 VIXL_ASSERT((sizeof(*dst) + (lane * sizeof(*dst))) <= GetSizeInBytes()); in ReadLane()
560 memcpy(dst, &value_[lane * sizeof(*dst)], sizeof(*dst)); in ReadLane()
574 void ReadLane(vixl::internal::SimFloat16* dst, int lane) const { in ReadLane() argument
577 *dst = RawbitsToFloat16(rawbits); in ReadLane()
767 int UintArray(VectorFormat vform, uint64_t* dst) const { in UintArray()
769 dst[ in UintArray()
[all...]

Completed in 32 milliseconds

12345678910>>...205