Home
last modified time | relevance | path

Searched refs:dst (Results 551 - 575 of 5110) sorted by relevance

1...<<21222324252627282930>>...205

/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeArrayBuffer.cpp191 int dst; in ArrayBuffer_selfTest() local
194 deMemcpy(&dst, (int*)source.getPtr() + 1, sizeof(int)); in ArrayBuffer_selfTest()
196 DE_TEST_ASSERT(dst == 2); in ArrayBuffer_selfTest()
202 int dst; in ArrayBuffer_selfTest() local
205 deMemcpy(&dst, (int*)source.getPtr() + 1, sizeof(int)); in ArrayBuffer_selfTest()
207 DE_TEST_ASSERT(dst == 2); in ArrayBuffer_selfTest()
213 int dst; in ArrayBuffer_selfTest() local
216 deMemcpy(&dst, (deUint8*)source.getPtr() + 64, sizeof(int)); in ArrayBuffer_selfTest()
218 DE_TEST_ASSERT(dst == 2); in ArrayBuffer_selfTest()
224 int dst; in ArrayBuffer_selfTest() local
[all...]
/third_party/musl/porting/liteos_a/user/src/multibyte/
H A Dwcsnrtombs.c5 size_t wcsnrtombs(char *restrict dst, const wchar_t **restrict wcs, size_t wn, size_t n, mbstate_t *restrict st) in wcsnrtombs() argument
9 if (!dst) n=0; in wcsnrtombs()
12 size_t l = wcrtomb(n<MB_LEN_MAX ? tmp : dst, *ws, 0); in wcsnrtombs()
17 if (dst) { in wcsnrtombs()
20 memcpy(dst, tmp, l); in wcsnrtombs()
22 dst += l; in wcsnrtombs()
33 if (dst) *wcs = ws; in wcsnrtombs()
/third_party/skia/tools/skqp/
H A Dsetup_resources13 dst = os.path.join(skia, 'platform_tools', 'android', 'apps', 'skqp', variable
15 if os.path.isdir(dst) and not os.path.islink(dst):
16 shutil.rmtree(dst)
17 elif os.path.exists(dst):
18 os.remove(dst)
19 shutil.copytree(os.path.join(skia, 'resources'), dst)
/third_party/node/deps/v8/src/codegen/arm/
H A Dmacro-assembler-arm.h175 void Pop(Register dst) { pop(dst); } in Pop() argument
259 void MovFromFloatParameter(DwVfpRegister dst);
260 void MovFromFloatResult(DwVfpRegister dst);
350 void VFPCanonicalizeNaN(const DwVfpRegister dst, const DwVfpRegister src,
357 void VmovHigh(Register dst, DwVfpRegister src);
358 void VmovHigh(DwVfpRegister dst, Register src);
359 void VmovLow(Register dst, DwVfpRegister src);
360 void VmovLow(DwVfpRegister dst, Register src);
456 void ExtractLane(Register dst, QwNeonRegiste
477 Move(Register dst, const MemOperand& src) Move() argument
478 Move(Register dst, const Operand& src, SBit sbit = LeaveCC, Condition cond = al) Move() argument
512 SmiUntag(Register dst, Register src, SBit s = LeaveCC) SmiUntag() argument
866 DecodeField(Register dst, Register src) DecodeField() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dvc1_loopfilter.c211 uint8_t *dst; in vc1_i_h_loop_filter() local
218 dst = dest; in vc1_i_h_loop_filter()
220 dst = dest + (block_num & 2) * 4 * s->linesize + (block_num & 1) * 8; in vc1_i_h_loop_filter()
224 v->vc1dsp.vc1_h_loop_filter4(dst, 2 * s->uvlinesize, pq); in vc1_i_h_loop_filter()
225 v->vc1dsp.vc1_h_loop_filter4(dst + s->uvlinesize, 2 * s->uvlinesize, pq); in vc1_i_h_loop_filter()
227 v->vc1dsp.vc1_h_loop_filter8(dst, 2 * s->linesize, pq); in vc1_i_h_loop_filter()
228 v->vc1dsp.vc1_h_loop_filter8(dst + s->linesize, 2 * s->linesize, pq); in vc1_i_h_loop_filter()
232 v->vc1dsp.vc1_h_loop_filter8(dst, s->uvlinesize, pq); in vc1_i_h_loop_filter()
234 v->vc1dsp.vc1_h_loop_filter16(dst, s->linesize, pq); in vc1_i_h_loop_filter()
244 uint8_t *dst; in vc1_i_v_loop_filter() local
373 uint8_t *dst; vc1_p_h_loop_filter() local
426 uint8_t *dst; vc1_p_v_loop_filter() local
809 uint8_t *dst; vc1_p_h_intfr_loop_filter() local
859 uint8_t *dst; vc1_p_v_intfr_loop_filter() local
1117 uint8_t *dst; vc1_b_h_intfi_loop_filter() local
1149 uint8_t *dst; vc1_b_v_intfi_loop_filter() local
[all...]
H A Daacdec_fixed.c109 static inline int *DEC_SPAIR(int *dst, unsigned idx) in DEC_SPAIR() argument
111 dst[0] = (idx & 15) - 4; in DEC_SPAIR()
112 dst[1] = (idx >> 4 & 15) - 4; in DEC_SPAIR()
114 return dst + 2; in DEC_SPAIR()
117 static inline int *DEC_SQUAD(int *dst, unsigned idx) in DEC_SQUAD() argument
119 dst[0] = (idx & 3) - 1; in DEC_SQUAD()
120 dst[1] = (idx >> 2 & 3) - 1; in DEC_SQUAD()
121 dst[2] = (idx >> 4 & 3) - 1; in DEC_SQUAD()
122 dst[3] = (idx >> 6 & 3) - 1; in DEC_SQUAD()
124 return dst in DEC_SQUAD()
127 DEC_UPAIR(int *dst, unsigned idx, unsigned sign) DEC_UPAIR() argument
135 DEC_UQUAD(int *dst, unsigned idx, unsigned sign) DEC_UQUAD() argument
167 subband_scale(int *dst, int *src, int scale, int offset, int len, void *log_context) subband_scale() argument
[all...]
H A Dsanm.c532 static int rle_decode(SANMVideoContext *ctx, uint8_t *dst, const int out_size) in rle_decode() argument
544 memset(dst, color, run_len); in rle_decode()
548 bytestream2_get_bufferu(&ctx->gb, dst, run_len); in rle_decode()
551 dst += run_len; in rle_decode()
561 uint8_t *dst = ((uint8_t *)ctx->frm0) + left + top * ctx->pitch; in old_codec1() local
585 memset(dst + pos, val, code); in old_codec1()
593 dst[pos] = val; in old_codec1()
598 dst += ctx->pitch; in old_codec1()
605 static inline void codec37_mv(uint8_t *dst, const uint8_t *src, in codec37_mv() argument
614 dst[ in codec37_mv()
629 uint8_t *dst, *prev; old_codec37() local
770 process_block(SANMVideoContext *ctx, uint8_t *dst, uint8_t *prev1, uint8_t *prev2, int stride, int tbl, int size) process_block() argument
866 uint8_t *dst = (uint8_t *)ctx->frm0 + left + top * stride; old_codec47() local
1017 uint8_t *dst = (uint8_t *)pdest; copy_block() local
1044 draw_glyph(SANMVideoContext *ctx, uint16_t *dst, int index, uint16_t fg_color, uint16_t bg_color, int block_size, ptrdiff_t pitch) draw_glyph() argument
1068 uint16_t *dst = ctx->frm0 + cx + cy * ctx->pitch; opcode_0xf7() local
1102 uint16_t *dst = ctx->frm0 + cx + cy * ctx->pitch; opcode_0xf8() local
1259 uint8_t *dst = (uint8_t*)ctx->frm0; decode_5() local
1370 uint8_t *dst; copy_output() local
[all...]
H A Ddcadsp.c26 static void decode_hf_c(int32_t **dst, in decode_hf_c() argument
39 dst[i][j + ofs] = clip23(coeff[j] * scale + (1 << 3) >> 4); in decode_hf_c()
43 static void decode_joint_c(int32_t **dst, int32_t **src, in decode_joint_c() argument
53 dst[i][j + ofs] = clip23(mul17(src[i][j + ofs], scale)); in decode_joint_c()
99 static void lfe_x96_float_c(float *dst, const float *src, in lfe_x96_float_c() argument
109 *dst++ = a; in lfe_x96_float_c()
110 *dst++ = b; in lfe_x96_float_c()
221 static void lfe_x96_fixed_c(int32_t *dst, const int32_t *src, in lfe_x96_fixed_c() argument
231 *dst++ = clip23(norm23(a)); in lfe_x96_fixed_c()
232 *dst in lfe_x96_fixed_c()
298 decor_c(int32_t *dst, const int32_t *src, int coeff, ptrdiff_t len) decor_c() argument
318 dmix_sub_c(int32_t *dst, const int32_t *src, int coeff, ptrdiff_t len) dmix_sub_c() argument
326 dmix_add_c(int32_t *dst, const int32_t *src, int coeff, ptrdiff_t len) dmix_add_c() argument
334 dmix_scale_c(int32_t *dst, int scale, ptrdiff_t len) dmix_scale_c() argument
342 dmix_scale_inv_c(int32_t *dst, int scale_inv, ptrdiff_t len) dmix_scale_inv_c() argument
350 filter0(SUINT32 *dst, const int32_t *src, int32_t coeff, ptrdiff_t len) filter0() argument
358 filter1(SUINT32 *dst, const int32_t *src, int32_t coeff, ptrdiff_t len) filter1() argument
366 assemble_freq_bands_c(int32_t *dst, int32_t *src0, int32_t *src1, const int32_t *coeff, ptrdiff_t len) assemble_freq_bands_c() argument
[all...]
/third_party/node/deps/v8/src/codegen/mips64/
H A Dmacro-assembler-mips64.h215 void li(Register dst, Handle<HeapObject> value, LiFlags mode = OPTIMIZE_SIZE);
216 void li(Register dst, ExternalReference value, LiFlags mode = OPTIMIZE_SIZE);
217 void li(Register dst, const StringConstantBase* string,
246 void LoadAddress(Register dst, Label* target);
394 void pop(Register dst) { in pop() argument
395 Ld(dst, MemOperand(sp, 0)); in pop()
398 void Pop(Register dst) { pop(dst); } in Pop() argument
485 void SmiTag(Register dst, Register src) { in SmiTag() argument
488 dsll32(dst, sr in SmiTag()
498 SmiUntag(Register dst, Register src) SmiUntag() argument
510 SmiScale(Register dst, Register src, int scale) SmiScale() argument
704 Move(Register dst, Handle<HeapObject> handle) Move() argument
705 Move(Register dst, Smi smi) Move() argument
707 Move(Register dst, Register src) Move() argument
713 Move(FPURegister dst, FPURegister src) Move() argument
720 Move(Register dst, FPURegister src) Move() argument
722 Move(FPURegister dst, Register src) Move() argument
728 FmoveHigh(FPURegister dst, Register src_high) FmoveHigh() argument
738 Move(FPURegister dst, Register src_low, Register src_high) Move() argument
743 Move_d(FPURegister dst, FPURegister src) Move_d() argument
749 Move_s(FPURegister dst, FPURegister src) Move_s() argument
755 Move(FPURegister dst, float imm) Move() argument
756 Move(FPURegister dst, double imm) Move() argument
1086 LoadGlobalProxy(Register dst) LoadGlobalProxy() argument
1231 DecodeField(Register dst, Register src) DecodeField() argument
[all...]
/third_party/ffmpeg/libavcodec/loongarch/
H A Dvp9_idct_lsx.c101 #define VP9_ADDBLK_ST8x4_UB(dst, dst_stride, in0, in1, in2, in3) \
103 uint8_t *dst_m = (uint8_t *) (dst); \
232 void vp9_idct8x8_1_add_lsx(int16_t *input, uint8_t *dst, in vp9_idct8x8_1_add_lsx() argument
245 VP9_ADDBLK_ST8x4_UB(dst, dst_stride, vec, vec, vec, vec); in vp9_idct8x8_1_add_lsx()
246 dst += (4 * dst_stride); in vp9_idct8x8_1_add_lsx()
247 VP9_ADDBLK_ST8x4_UB(dst, dst_stride, vec, vec, vec, vec); in vp9_idct8x8_1_add_lsx()
250 static void vp9_idct8x8_12_colcol_addblk_lsx(int16_t *input, uint8_t *dst, in vp9_idct8x8_12_colcol_addblk_lsx() argument
328 VP9_ADDBLK_ST8x4_UB(dst, dst_stride, in0, in1, in2, in3); in vp9_idct8x8_12_colcol_addblk_lsx()
329 dst += (4 * dst_stride); in vp9_idct8x8_12_colcol_addblk_lsx()
330 VP9_ADDBLK_ST8x4_UB(dst, dst_strid in vp9_idct8x8_12_colcol_addblk_lsx()
333 vp9_idct8x8_colcol_addblk_lsx(int16_t *input, uint8_t *dst, int32_t dst_stride) vp9_idct8x8_colcol_addblk_lsx() argument
372 vp9_idct16_1d_columns_addblk_lsx(int16_t *input, uint8_t *dst, int32_t dst_stride) vp9_idct16_1d_columns_addblk_lsx() argument
637 vp9_idct16x16_1_add_lsx(int16_t *input, uint8_t *dst, int32_t dst_stride) vp9_idct16x16_1_add_lsx() argument
680 vp9_idct16x16_10_colcol_addblk_lsx(int16_t *input, uint8_t *dst, int32_t dst_stride) vp9_idct16x16_10_colcol_addblk_lsx() argument
715 vp9_idct16x16_colcol_addblk_lsx(int16_t *input, uint8_t *dst, int32_t dst_stride) vp9_idct16x16_colcol_addblk_lsx() argument
736 vp9_idct_butterfly_transpose_store(int16_t *tmp_buf, int16_t *tmp_eve_buf, int16_t *tmp_odd_buf, int16_t *dst) vp9_idct_butterfly_transpose_store() argument
1152 vp9_idct8x32_column_butterfly_addblk(int16_t *tmp_eve_buf, int16_t *tmp_odd_buf, uint8_t *dst, int32_t dst_stride) vp9_idct8x32_column_butterfly_addblk() argument
1246 vp9_idct8x32_1d_columns_addblk_lsx(int16_t *input, uint8_t *dst, int32_t dst_stride) vp9_idct8x32_1d_columns_addblk_lsx() argument
1270 vp9_idct32x32_1_add_lsx(int16_t *input, uint8_t *dst, int32_t dst_stride) vp9_idct32x32_1_add_lsx() argument
1313 vp9_idct32x32_34_colcol_addblk_lsx(int16_t *input, uint8_t *dst, int32_t dst_stride) vp9_idct32x32_34_colcol_addblk_lsx() argument
1347 vp9_idct32x32_colcol_addblk_lsx(int16_t *input, uint8_t *dst, int32_t dst_stride) vp9_idct32x32_colcol_addblk_lsx() argument
1370 ff_idct_idct_8x8_add_lsx(uint8_t *dst, ptrdiff_t stride, int16_t *block, int eob) ff_idct_idct_8x8_add_lsx() argument
1384 ff_idct_idct_16x16_add_lsx(uint8_t *dst, ptrdiff_t stride, int16_t *block, int eob) ff_idct_idct_16x16_add_lsx() argument
1399 ff_idct_idct_32x32_add_lsx(uint8_t *dst, ptrdiff_t stride, int16_t *block, int eob) ff_idct_idct_32x32_add_lsx() argument
[all...]
/third_party/mesa3d/src/mesa/main/
H A Datifragshader.c131 static void debug_op(GLint optype, GLuint arg_count, GLenum op, GLuint dst, in debug_op() argument
142 _mesa_enum_to_string(dst)); in debug_op()
446 _mesa_PassTexCoordATI(GLuint dst, GLuint coord, GLenum swizzle) in _mesa_PassTexCoordATI() argument
461 ((1 << (dst - GL_REG_0_ATI)) & curProg->regsAssigned[new_pass >> 1])) { in _mesa_PassTexCoordATI()
465 if ((dst < GL_REG_0_ATI) || (dst > GL_REG_5_ATI) || in _mesa_PassTexCoordATI()
466 ((dst - GL_REG_0_ATI) >= ctx->Const.MaxTextureUnits)) { in _mesa_PassTexCoordATI()
467 _mesa_error(ctx, GL_INVALID_ENUM, "glPassTexCoordATI(dst)"); in _mesa_PassTexCoordATI()
502 curProg->regsAssigned[curProg->cur_pass >> 1] |= 1 << (dst - GL_REG_0_ATI); in _mesa_PassTexCoordATI()
505 curI = &curProg->SetupInst[curProg->cur_pass >> 1][dst in _mesa_PassTexCoordATI()
519 _mesa_SampleMapATI(GLuint dst, GLuint interp, GLenum swizzle) _mesa_SampleMapATI() argument
593 _mesa_FragmentOpXATI(GLint optype, GLuint arg_count, GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod) _mesa_FragmentOpXATI() argument
751 _mesa_ColorFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod) _mesa_ColorFragmentOp1ATI() argument
760 _mesa_ColorFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod) _mesa_ColorFragmentOp2ATI() argument
771 _mesa_ColorFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod) _mesa_ColorFragmentOp3ATI() argument
783 _mesa_AlphaFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod) _mesa_AlphaFragmentOp1ATI() argument
791 _mesa_AlphaFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod) _mesa_AlphaFragmentOp2ATI() argument
801 _mesa_AlphaFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod) _mesa_AlphaFragmentOp3ATI() argument
812 _mesa_SetFragmentShaderConstantATI(GLuint dst, const GLfloat * value) _mesa_SetFragmentShaderConstantATI() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/
H A Dr700_asm.c53 bc->bytecode[id++] = S_SQ_ALU_WORD1_DST_GPR(alu->dst.sel) | in r700_bytecode_alu_build()
54 S_SQ_ALU_WORD1_DST_CHAN(alu->dst.chan) | in r700_bytecode_alu_build()
55 S_SQ_ALU_WORD1_DST_REL(alu->dst.rel) | in r700_bytecode_alu_build()
56 S_SQ_ALU_WORD1_CLAMP(alu->dst.clamp) | in r700_bytecode_alu_build()
64 bc->bytecode[id++] = S_SQ_ALU_WORD1_DST_GPR(alu->dst.sel) | in r700_bytecode_alu_build()
65 S_SQ_ALU_WORD1_DST_CHAN(alu->dst.chan) | in r700_bytecode_alu_build()
66 S_SQ_ALU_WORD1_DST_REL(alu->dst.rel) | in r700_bytecode_alu_build()
67 S_SQ_ALU_WORD1_CLAMP(alu->dst.clamp) | in r700_bytecode_alu_build()
70 S_SQ_ALU_WORD1_OP2_WRITE_MASK(alu->dst.write) | in r700_bytecode_alu_build()
100 alu->dst in r700_bytecode_alu_read()
[all...]
/third_party/node/deps/openssl/openssl/crypto/perlasm/
H A Dx86gas.pl36 my($suffix,$dst,$src);
47 $dst = $arg[$#arg] if ($#arg>=0);
49 if ($dst =~ m/^%/o) { $suffix=&opsize($dst); }
52 undef $suffix if ($dst =~ m/^%[xm]/o || $src =~ m/^%[xm]/o);
212 { my($dst,$sym,$base,$reflabel)=@_;
218 &::blindpop($dst);
219 $base=$dst;
224 &::mov($dst,&::DWP("$indirect-$reflabel",$base));
228 { &::lea($dst,
[all...]
/third_party/openssl/crypto/perlasm/
H A Dx86gas.pl36 my($suffix,$dst,$src);
47 $dst = $arg[$#arg] if ($#arg>=0);
49 if ($dst =~ m/^%/o) { $suffix=&opsize($dst); }
52 undef $suffix if ($dst =~ m/^%[xm]/o || $src =~ m/^%[xm]/o);
212 { my($dst,$sym,$base,$reflabel)=@_;
218 &::blindpop($dst);
219 $base=$dst;
224 &::mov($dst,&::DWP("$indirect-$reflabel",$base));
228 { &::lea($dst,
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DVertexProgram.hpp80 void M3X2(Vector4f &dst, Vector4f &src0, Src &src1);
81 void M3X3(Vector4f &dst, Vector4f &src0, Src &src1);
82 void M3X4(Vector4f &dst, Vector4f &src0, Src &src1);
83 void M4X3(Vector4f &dst, Vector4f &src0, Src &src1);
84 void M4X4(Vector4f &dst, Vector4f &src0, Src &src1);
114 void TEX(Vector4f &dst, Vector4f &src, const Src&);
115 void TEXOFFSET(Vector4f &dst, Vector4f &src, const Src&, Vector4f &offset);
116 void TEXLOD(Vector4f &dst, Vector4f &src, const Src&, Float4 &lod);
117 void TEXLODOFFSET(Vector4f &dst, Vector4f &src, const Src&, Vector4f &offset, Float4 &lod);
118 void TEXELFETCH(Vector4f &dst, Vector4
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_colormatrix.c71 AVFrame *dst; member
86 { "dst", "set destination color matrix", OFFSET(dest), AV_OPT_TYPE_INT, {.i64=COLOR_MODE_NONE}, COLOR_MODE_NONE, COLOR_MODE_COUNT-1, .flags=FLAGS, .unit="color_mode" },
209 AVFrame *dst = td->dst; in process_slice_uyvy422() local
213 const int dst_pitch = dst->linesize[0]; in process_slice_uyvy422()
217 unsigned char *dstp = dst->data[0] + slice_start * dst_pitch; in process_slice_uyvy422()
247 AVFrame *dst = td->dst; in process_slice_yuv444p() local
257 const int dst_pitchY = dst->linesize[0]; in process_slice_yuv444p()
258 const int dst_pitchUV = dst in process_slice_yuv444p()
294 AVFrame *dst = td->dst; process_slice_yuv422p() local
342 AVFrame *dst = td->dst; process_slice_yuv420p() local
[all...]
/third_party/node/deps/v8/src/compiler/backend/mips64/
H A Dcode-generator-mips64.cc220 ool_name(CodeGenerator* gen, T dst, T src1, T src2) \
221 : OutOfLineCode(gen), dst_(dst), src1_(src1), src2_(src2) {} \
1075 Register dst = i.OutputRegister(); in AssembleArchInstruction() local
1076 __ Ctz(dst, src); in AssembleArchInstruction()
1080 Register dst = i.OutputRegister(); in AssembleArchInstruction() local
1081 __ Dctz(dst, src); in AssembleArchInstruction()
1085 Register dst = i.OutputRegister(); in AssembleArchInstruction() local
1086 __ Popcnt(dst, src); in AssembleArchInstruction()
1090 Register dst = i.OutputRegister(); in AssembleArchInstruction() local
1091 __ Dpopcnt(dst, sr in AssembleArchInstruction()
1363 FPURegister dst = i.OutputSingleRegister(); AssembleArchInstruction() local
1372 FPURegister dst = i.OutputDoubleRegister(); AssembleArchInstruction() local
1381 FPURegister dst = i.OutputSingleRegister(); AssembleArchInstruction() local
1390 FPURegister dst = i.OutputDoubleRegister(); AssembleArchInstruction() local
1785 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
1795 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
1804 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
1814 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
1823 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
1833 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
1842 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
1850 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
1858 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2044 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2055 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2061 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2079 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2135 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2158 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2218 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2239 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2249 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2305 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2375 Register dst = i.OutputRegister(); AssembleArchInstruction() local
2421 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2430 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2484 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2528 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2591 dst = i.OutputSimd128Register(), AssembleArchInstruction() local
2644 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2667 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2714 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2724 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2818 Register dst = i.OutputRegister(); AssembleArchInstruction() local
2875 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
2975 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
3043 Register dst = i.OutputRegister(); AssembleArchInstruction() local
3084 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
3166 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
3251 Register dst = i.OutputRegister(); AssembleArchInstruction() local
3293 Register dst = i.OutputRegister(); AssembleArchInstruction() local
3304 Register dst = i.OutputRegister(); AssembleArchInstruction() local
3315 Register dst = i.OutputRegister(); AssembleArchInstruction() local
3326 Register dst = i.OutputRegister(); AssembleArchInstruction() local
3337 Register dst = i.OutputRegister(); AssembleArchInstruction() local
3358 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3368 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3378 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3388 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3398 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3408 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3418 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3472 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3482 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3492 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3502 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3512 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3522 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3546 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3556 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3566 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3576 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3586 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3596 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3606 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
3613 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3637 Simd128Register dst = i.OutputSimd128Register(), AssembleArchInstruction() local
3673 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
3682 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
3705 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
3714 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
3723 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
3733 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
3760 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
3770 Simd128Register dst = i.OutputSimd128Register(); AssembleArchInstruction() local
4391 Register dst = AssembleConstructFrame() local
4435 MemOperand dst = g.ToMemOperand(destination); AssembleConstructFrame() local
4444 FloatRegister dst = g.ToSingleRegister(destination); AssembleConstructFrame() local
4449 DoubleRegister dst = destination->IsFPRegister() AssembleConstructFrame() local
4463 MSARegister dst = g.ToSimd128Register(destination); AssembleConstructFrame() local
4472 FPURegister dst = g.ToDoubleRegister(destination); AssembleConstructFrame() local
4518 Register dst = g.ToRegister(destination); AssembleConstructFrame() local
4524 MemOperand dst = g.ToMemOperand(destination); AssembleConstructFrame() local
4534 MemOperand dst = g.ToMemOperand(destination); AssembleConstructFrame() local
4546 MSARegister dst = g.ToSimd128Register(destination); AssembleConstructFrame() local
4552 MemOperand dst = g.ToMemOperand(destination); AssembleConstructFrame() local
4561 FPURegister dst = g.ToDoubleRegister(destination); AssembleConstructFrame() local
4567 MemOperand dst = g.ToMemOperand(destination); AssembleConstructFrame() local
[all...]
/third_party/mesa3d/src/amd/compiler/
H A Daco_instruction_selection.cpp136 emit_mbcnt(isel_context* ctx, Temp dst, Operand mask = Operand(), Operand base = Operand::zero()) in emit_mbcnt() argument
144 return bld.vop3(aco_opcode::v_mbcnt_lo_u32_b32, Definition(dst), mask_lo, base); in emit_mbcnt()
164 return bld.vop2(aco_opcode::v_mbcnt_hi_u32_b32, Definition(dst), mask_hi, mbcnt_lo); in emit_mbcnt()
166 return bld.vop3(aco_opcode::v_mbcnt_hi_u32_b32_e64, Definition(dst), mask_hi, mbcnt_lo); in emit_mbcnt()
170 emit_wqm(Builder& bld, Temp src, Temp dst = Temp(0, s1), bool program_needs_wqm = false) in emit_wqm()
173 if (!dst.id()) in emit_wqm()
176 return bld.copy(Definition(dst), src); in emit_wqm()
177 } else if (!dst.id()) { in emit_wqm()
178 dst = bld.tmp(src.regClass()); in emit_wqm()
181 assert(src.size() == dst in emit_wqm()
289 emit_v_div_u32(isel_context* ctx, Temp dst, Temp a, uint32_t b) emit_v_div_u32() argument
340 emit_extract_vector(isel_context* ctx, Temp src, uint32_t idx, Temp dst) emit_extract_vector() argument
375 Temp dst = bld.tmp(dst_rc); emit_extract_vector() local
415 expand_vector(isel_context* ctx, Temp vec_src, Temp dst, unsigned num_components, unsigned mask, bool zero_padding = false) expand_vector() argument
474 byte_align_scalar(isel_context* ctx, Temp vec, Operand offset, Temp dst) byte_align_scalar() argument
525 byte_align_vector(isel_context* ctx, Temp vec, Operand offset, Temp dst, unsigned component_size) byte_align_vector() argument
[all...]
/third_party/astc-encoder/Source/
H A Dastcenccli_image.cpp251 float* dst = buf + y * dim_x * 4; in floatx4_array_from_astc_img() local
255 dst[4 * x ] = data8[(4 * dim_x * ymod) + (4 * x )] * (1.0f / 255.0f); in floatx4_array_from_astc_img()
256 dst[4 * x + 1] = data8[(4 * dim_x * ymod) + (4 * x + 1)] * (1.0f / 255.0f); in floatx4_array_from_astc_img()
257 dst[4 * x + 2] = data8[(4 * dim_x * ymod) + (4 * x + 2)] * (1.0f / 255.0f); in floatx4_array_from_astc_img()
258 dst[4 * x + 3] = data8[(4 * dim_x * ymod) + (4 * x + 3)] * (1.0f / 255.0f); in floatx4_array_from_astc_img()
268 float *dst = buf + y * dim_x * 4; in floatx4_array_from_astc_img() local
280 store(color, dst + 4 * x); in floatx4_array_from_astc_img()
291 float *dst = buf + y * dim_x * 4; in floatx4_array_from_astc_img() local
295 dst[4 * x ] = data32[(4 * dim_x * ymod) + (4 * x )]; in floatx4_array_from_astc_img()
296 dst[ in floatx4_array_from_astc_img()
321 uint8_t* dst = buf + y * dim_x * 4; unorm8x4_array_from_astc_img() local
338 uint8_t* dst = buf + y * dim_x * 4; unorm8x4_array_from_astc_img() local
365 uint8_t* dst = buf + y * dim_x * 4; unorm8x4_array_from_astc_img() local
[all...]
/third_party/skia/tests/
H A DRoundRectTest.cpp521 SkRRect dst; in assert_transform_failure() local
522 dst.setEmpty(); in assert_transform_failure()
524 const SkRRect copyOfDst = dst; in assert_transform_failure()
526 bool success = orig.transform(matrix, &dst); in assert_transform_failure()
529 // Since the transform failed, dst should be unchanged. in assert_transform_failure()
530 REPORTER_ASSERT(reporter, copyOfDst == dst); in assert_transform_failure()
533 REPORTER_ASSERT(reporter, orig != dst); in assert_transform_failure()
541 const SkVector& dstUL = dst.radii(SkRRect::kUpperLeft_Corner); \
542 const SkVector& dstUR = dst.radii(SkRRect::kUpperRight_Corner); \
543 const SkVector& dstLR = dst
548 SkRRect dst; test_transform_helper() local
940 SkRRect dst; test_issue_2696() local
[all...]
/third_party/skia/src/gpu/
H A DGrDataUtils.cpp571 bool GrConvertPixels(const GrPixmap& dst, const GrCPixmap& src, bool flipY) { in GrConvertPixels() argument
573 if (src.dimensions().isEmpty() || dst.dimensions().isEmpty()) { in GrConvertPixels()
576 if (src.colorType() == GrColorType::kUnknown || dst.colorType() == GrColorType::kUnknown) { in GrConvertPixels()
579 if (!src.hasPixels() || !dst.hasPixels()) { in GrConvertPixels()
582 if (dst.dimensions() != src.dimensions()) { in GrConvertPixels()
585 if (dst.colorType() == GrColorType::kRGB_888) { in GrConvertPixels()
589 GrPixmap temp = GrPixmap::Allocate(dst.info().makeColorType(GrColorType::kRGB_888x)); in GrConvertPixels()
594 auto* dRow = reinterpret_cast<char*>(dst.addr()); in GrConvertPixels()
595 for (int y = 0; y < dst.height(); ++y, tRow += temp.rowBytes(), dRow += dst in GrConvertPixels()
749 GrClearImage(const GrImageInfo& dstInfo, void* dst, size_t dstRB, std::array<float, 4> color) GrClearImage() argument
[all...]
/third_party/ffmpeg/libavcodec/ppc/
H A Dh264dsp.c72 vdst_orig = vec_ld(0, dst); \
75 #define vdst_load(d) vdst = vec_vsx_ld(0, dst)
84 vec_ste(va_u32, element, (uint32_t*)dst);
86 static void h264_idct_add_altivec(uint8_t *dst, int16_t *block, int stride) in h264_idct_add_altivec() argument
96 vec_u8 vdst_mask = vec_lvsl(0, dst); in h264_idct_add_altivec()
97 int element = ((unsigned long)dst & 0xf) >> 2; in h264_idct_add_altivec()
118 dst += stride; in h264_idct_add_altivec()
120 dst += stride; in h264_idct_add_altivec()
122 dst += stride; in h264_idct_add_altivec()
218 static void h264_idct8_add_altivec(uint8_t *dst, int16_ argument
269 h264_idct_dc_add_internal(uint8_t *dst, int16_t *block, int stride, int size) h264_idct_dc_add_internal() argument
319 h264_idct_dc_add_altivec(uint8_t *dst, int16_t *block, int stride) h264_idct_dc_add_altivec() argument
324 h264_idct8_dc_add_altivec(uint8_t *dst, int16_t *block, int stride) h264_idct8_dc_add_altivec() argument
329 h264_idct_add16_altivec(uint8_t *dst, const int *block_offset, int16_t *block, int stride, const uint8_t nnzc[5 * 8]) h264_idct_add16_altivec() argument
343 h264_idct_add16intra_altivec(uint8_t *dst, const int *block_offset, int16_t *block, int stride, const uint8_t nnzc[5 * 8]) h264_idct_add16intra_altivec() argument
354 h264_idct8_add4_altivec(uint8_t *dst, const int *block_offset, int16_t *block, int stride, const uint8_t nnzc[5 * 8]) h264_idct8_add4_altivec() argument
400 write16x4(uint8_t *dst, int dst_stride, register vec_u8 r0, register vec_u8 r1, register vec_u8 r2, register vec_u8 r3) write16x4() argument
706 biweight_h264_W_altivec(uint8_t *dst, uint8_t *src, int stride, int height, int log2_denom, int weightd, int weights, int offset, int w) biweight_h264_W_altivec() argument
[all...]
/third_party/ffmpeg/libavutil/aarch64/
H A Dfloat_dsp_init.c29 void ff_vector_fmul_neon(float *dst, const float *src0, const float *src1,
32 void ff_vector_fmac_scalar_neon(float *dst, const float *src, float mul,
35 void ff_vector_fmul_scalar_neon(float *dst, const float *src, float mul,
38 void ff_vector_dmul_scalar_neon(double *dst, const double *src, double mul,
41 void ff_vector_fmul_window_neon(float *dst, const float *src0,
44 void ff_vector_fmul_add_neon(float *dst, const float *src0, const float *src1,
47 void ff_vector_fmul_reverse_neon(float *dst, const float *src0,
/third_party/musl/src/multibyte/
H A Dwcsnrtombs.c8 size_t wcsnrtombs(char *restrict dst, const wchar_t **restrict wcs, size_t wn, size_t n, mbstate_t *restrict st) in wcsnrtombs() argument
15 if (!dst) n=0; in wcsnrtombs()
18 size_t l = wcrtomb(n<MB_LEN_MAX ? tmp : dst, *ws, 0); in wcsnrtombs()
23 if (dst) { in wcsnrtombs()
26 memcpy(dst, tmp, l); in wcsnrtombs()
28 dst += l; in wcsnrtombs()
39 if (dst) *wcs = ws; in wcsnrtombs()
/third_party/musl/libc-test/src/functionalext/supplement/multibyte/
H A Dmbstowcs.c31 wchar_t dst[TEST_BUFFER_SIZE]; in mbstowcs_0100() local
34 memset(dst, 0x0, sizeof(wchar_t) * TEST_BUFFER_SIZE); in mbstowcs_0100()
35 size_t ret = mbstowcs(dst, src, strlen(src)); in mbstowcs_0100()
39 int r = wmemcmp(dst, wsrc, ret); in mbstowcs_0100()
52 wchar_t dst[TEST_BUFFER_SIZE]; in mbstowcs_0200() local
53 memset(dst, 0x0, sizeof(wchar_t) * TEST_BUFFER_SIZE); in mbstowcs_0200()
55 size_t ret = mbstowcs(dst, src, 0); in mbstowcs_0200()

Completed in 25 milliseconds

1...<<21222324252627282930>>...205