Home
last modified time | relevance | path

Searched refs:dst (Results 576 - 600 of 10424) sorted by relevance

1...<<21222324252627282930>>...417

/third_party/skia/src/core/
H A DSkMatrix.cpp547 bool SkMatrix::setRectToRect(const SkRect& src, const SkRect& dst, ScaleToFit align) { in setRectToRect() argument
553 if (dst.isEmpty()) { in setRectToRect()
558 SkScalar tx, sx = dst.width() / src.width(); in setRectToRect()
559 SkScalar ty, sy = dst.height() / src.height(); in setRectToRect()
571 tx = dst.fLeft - src.fLeft * sx; in setRectToRect()
572 ty = dst.fTop - src.fTop * sy; in setRectToRect()
577 diff = dst.width() - src.width() * sy; in setRectToRect()
579 diff = dst.height() - src.height() * sy; in setRectToRect()
779 void SkMatrix::mapPoints(SkPoint dst[], const SkPoint src[], int count) const { in mapPoints() argument
780 SkASSERT((dst in mapPoints()
791 ComputeInv(SkScalar dst[9], const SkScalar src[9], double invDet, bool isPersp) ComputeInv() argument
896 Identity_pts(const SkMatrix& m, SkPoint dst[], const SkPoint src[], int count) Identity_pts() argument
904 Trans_pts(const SkMatrix& m, SkPoint dst[], const SkPoint src[], int count) Trans_pts() argument
932 Scale_pts(const SkMatrix& m, SkPoint dst[], const SkPoint src[], int count) Scale_pts() argument
963 Persp_pts(const SkMatrix& m, SkPoint dst[], const SkPoint src[], int count) Persp_pts() argument
991 Affine_vpts(const SkMatrix& m, SkPoint dst[], const SkPoint src[], int count) Affine_vpts() argument
1034 MapHomogeneousPointsWithStride(const SkMatrix& mx, SkPoint3 dst[], size_t dstStride, const SkPoint3 src[], size_t srcStride, int count) MapHomogeneousPointsWithStride() argument
1074 mapHomogeneousPoints(SkPoint3 dst[], const SkPoint3 src[], int count) const mapHomogeneousPoints() argument
1079 mapHomogeneousPoints(SkPoint3 dst[], const SkPoint src[], int count) const mapHomogeneousPoints() argument
1105 mapVectors(SkPoint dst[], const SkPoint src[], int count) const mapVectors() argument
1136 mapRectScaleTranslate(SkRect* dst, const SkRect& src) const mapRectScaleTranslate() argument
1149 mapRect(SkRect* dst, const SkRect& src, SkApplyPerspectiveClip pc) const mapRect() argument
1311 Poly2Proc(const SkPoint srcPt[], SkMatrix* dst) Poly2Proc() argument
1327 Poly3Proc(const SkPoint srcPt[], SkMatrix* dst) Poly3Proc() argument
1343 Poly4Proc(const SkPoint srcPt[], SkMatrix* dst) Poly4Proc() argument
1403 setPolyToPoly(const SkPoint src[], const SkPoint dst[], int count) setPolyToPoly() argument
1675 SkRect dst; SkTreatAsSprite() local
[all...]
H A DSkLatticeIter.cpp77 * Set points for the src and dst rects on subsequent draw calls.
79 static void set_points(float* dst, int* src, const int* divs, int divCount, int srcFixed, in set_points() argument
94 dst[0] = dstStart; in set_points()
104 dst[i + 1] = dst[i] + dstDelta; in set_points()
111 dst[divCount + 1] = dstEnd; in set_points()
114 SkLatticeIter::SkLatticeIter(const SkCanvas::Lattice& lattice, const SkRect& dst) { in SkLatticeIter() argument
157 src.fLeft, src.fRight, dst.fLeft, dst.fRight, xIsScalable); in SkLatticeIter()
162 src.fTop, src.fBottom, dst in SkLatticeIter()
213 SkLatticeIter(int w, int h, const SkIRect& c, const SkRect& dst) SkLatticeIter() argument
256 next(SkIRect* src, SkRect* dst, bool* isFixedColor, SkColor* fixedColor) next() argument
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Dnodemask.h29 * void nodes_and(dst, src1, src2) dst = src1 & src2 [intersection]
30 * void nodes_or(dst, src1, src2) dst = src1 | src2 [union]
31 * void nodes_xor(dst, src1, src2) dst = src1 ^ src2
32 * void nodes_andnot(dst, src1, src2) dst = src1 & ~src2
33 * void nodes_complement(dst, src) dst
[all...]
/kernel/linux/linux-6.6/include/linux/
H A Dnodemask.h29 * void nodes_and(dst, src1, src2) dst = src1 & src2 [intersection]
30 * void nodes_or(dst, src1, src2) dst = src1 | src2 [union]
31 * void nodes_xor(dst, src1, src2) dst = src1 ^ src2
32 * void nodes_andnot(dst, src1, src2) dst = src1 & ~src2
33 * void nodes_complement(dst, src) dst
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dvc1dsp_mmx.c38 void ff_vc1_put_ver_16b_shift2_mmx(int16_t *dst,
41 void ff_vc1_put_hor_16b_shift2_mmx(uint8_t *dst, x86_reg stride,
43 void ff_vc1_avg_hor_16b_shift2_mmxext(uint8_t *dst, x86_reg stride,
82 static void OPNAME ## vc1_shift2_mmx(uint8_t *dst, const uint8_t *src,\
124 : "+r"(src), "+r"(dst)\
187 vc1_put_ver_16b_ ## NAME ## _mmx(int16_t *dst, const uint8_t *src, \
227 : "+r"(h), "+r" (src), "+r" (dst) \
244 OPNAME ## vc1_hor_16b_ ## NAME ## _mmx(uint8_t *dst, x86_reg stride, \
266 : "+r"(h), "+r" (src), "+r" (dst) \
283 OPNAME ## vc1_## NAME ## _mmx(uint8_t *dst, cons
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvsrc_mptestsrc.c106 static void idct(uint8_t *dst, int dst_linesize, int src[64]) in idct() argument
129 dst[dst_linesize*i + j] = av_clip_uint8(lrint(sum)); in idct()
134 static void draw_dc(uint8_t *dst, int dst_linesize, int color, int w, int h) in draw_dc() argument
140 dst[x + y*dst_linesize] = color; in draw_dc()
143 static void draw_basis(uint8_t *dst, int dst_linesize, int amp, int freq, int dc) in draw_basis() argument
151 idct(dst, dst_linesize, src); in draw_basis()
154 static void draw_cbp(uint8_t *dst[3], int dst_linesize[3], int cbp, int amp, int dc) in draw_cbp() argument
156 if (cbp&1) draw_basis(dst[0] , dst_linesize[0], amp, 1, dc); in draw_cbp()
157 if (cbp&2) draw_basis(dst[0]+8 , dst_linesize[0], amp, 1, dc); in draw_cbp()
158 if (cbp&4) draw_basis(dst[ in draw_cbp()
164 dc_test(uint8_t *dst, int dst_linesize, int w, int h, int off) dc_test() argument
177 freq_test(uint8_t *dst, int dst_linesize, int off) freq_test() argument
189 amp_test(uint8_t *dst, int dst_linesize, int off) amp_test() argument
201 cbp_test(uint8_t *dst[3], int dst_linesize[3], int off) cbp_test() argument
218 mv_test(uint8_t *dst, int dst_linesize, int off) mv_test() argument
230 ring1_test(uint8_t *dst, int dst_linesize, int off) ring1_test() argument
242 ring2_test(uint8_t *dst, int dst_linesize, int off) ring2_test() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H A DVkRenderPass.cpp50 void CopySubpasses(VkSubpassDescription *dst, const T *src, uint32_t count) in CopySubpasses() argument
54 dst[i].flags = src[i].flags; in CopySubpasses()
55 dst[i].pipelineBindPoint = src[i].pipelineBindPoint; in CopySubpasses()
56 dst[i].inputAttachmentCount = src[i].inputAttachmentCount; in CopySubpasses()
57 dst[i].pInputAttachments = nullptr; in CopySubpasses()
58 dst[i].colorAttachmentCount = src[i].colorAttachmentCount; in CopySubpasses()
59 dst[i].pColorAttachments = nullptr; in CopySubpasses()
60 dst[i].pResolveAttachments = nullptr; in CopySubpasses()
61 dst[i].pDepthStencilAttachment = nullptr; in CopySubpasses()
62 dst[ in CopySubpasses()
68 CopyAttachmentDescriptions(VkAttachmentDescription *dst, const T *src, uint32_t count) CopyAttachmentDescriptions() argument
85 CopyAttachmentReferences(VkAttachmentReference *dst, const T *src, uint32_t count) CopyAttachmentReferences() argument
95 CopySubpassDependencies(VkSubpassDependency *dst, const T *src, uint32_t count) CopySubpassDependencies() argument
[all...]
/kernel/linux/linux-6.6/lib/zstd/decompress/
H A Dhuf_decompress.c88 void* dst, size_t dstSize, \
92 return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \
96 void* dst, size_t dstSize, \
100 return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \
103 static size_t fn(void* dst, size_t dstSize, void const* cSrc, \
107 return fn##_bmi2(dst, dstSize, cSrc, cSrcSize, DTable); \
109 return fn##_default(dst, dstSize, cSrc, cSrcSize, DTable); \
115 static size_t fn(void* dst, size_t dstSize, void const* cSrc, \
119 return fn##_body(dst, dstSize, cSrc, cSrcSize, DTable); \
162 static size_t HUF_DecompressAsmArgs_init(HUF_DecompressAsmArgs* args, void* dst, size_ argument
526 HUF_decompress1X1_usingDTable_internal_body( void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable) HUF_decompress1X1_usingDTable_internal_body() argument
549 HUF_decompress4X1_usingDTable_internal_body( void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable) HUF_decompress4X1_usingDTable_internal_body() argument
647 HUF_decompress4X1_usingDTable_internal_bmi2(void* dst, size_t dstSize, void const* cSrc, size_t cSrcSize, HUF_DTable const* DTable) HUF_decompress4X1_usingDTable_internal_bmi2() argument
655 HUF_decompress4X1_usingDTable_internal_default(void* dst, size_t dstSize, void const* cSrc, size_t cSrcSize, HUF_DTable const* DTable) HUF_decompress4X1_usingDTable_internal_default() argument
667 HUF_decompress4X1_usingDTable_internal_bmi2_asm( void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable) HUF_decompress4X1_usingDTable_internal_bmi2_asm() argument
726 HUF_decompress4X1_usingDTable_internal(void* dst, size_t dstSize, void const* cSrc, size_t cSrcSize, HUF_DTable const* DTable, int bmi2) HUF_decompress4X1_usingDTable_internal() argument
749 HUF_decompress1X1_usingDTable( void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable) HUF_decompress1X1_usingDTable() argument
759 HUF_decompress1X1_DCtx_wksp(HUF_DTable* DCtx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize) HUF_decompress1X1_DCtx_wksp() argument
774 HUF_decompress4X1_usingDTable( void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable) HUF_decompress4X1_usingDTable() argument
784 HUF_decompress4X1_DCtx_wksp_bmi2(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize, int bmi2) HUF_decompress4X1_DCtx_wksp_bmi2() argument
798 HUF_decompress4X1_DCtx_wksp(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize) HUF_decompress4X1_DCtx_wksp() argument
1218 HUF_decompress1X2_usingDTable_internal_body( void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable) HUF_decompress1X2_usingDTable_internal_body() argument
1244 HUF_decompress4X2_usingDTable_internal_body( void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable) HUF_decompress4X2_usingDTable_internal_body() argument
1363 HUF_decompress4X2_usingDTable_internal_bmi2(void* dst, size_t dstSize, void const* cSrc, size_t cSrcSize, HUF_DTable const* DTable) HUF_decompress4X2_usingDTable_internal_bmi2() argument
1371 HUF_decompress4X2_usingDTable_internal_default(void* dst, size_t dstSize, void const* cSrc, size_t cSrcSize, HUF_DTable const* DTable) HUF_decompress4X2_usingDTable_internal_default() argument
1382 HUF_decompress4X2_usingDTable_internal_bmi2_asm( void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable) HUF_decompress4X2_usingDTable_internal_bmi2_asm() argument
1431 HUF_decompress4X2_usingDTable_internal(void* dst, size_t dstSize, void const* cSrc, size_t cSrcSize, HUF_DTable const* DTable, int bmi2) HUF_decompress4X2_usingDTable_internal() argument
1465 HUF_decompress1X2_DCtx_wksp(HUF_DTable* DCtx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize) HUF_decompress1X2_DCtx_wksp() argument
1481 HUF_decompress4X2_usingDTable( void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable) HUF_decompress4X2_usingDTable() argument
1491 HUF_decompress4X2_DCtx_wksp_bmi2(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize, int bmi2) HUF_decompress4X2_DCtx_wksp_bmi2() argument
1506 HUF_decompress4X2_DCtx_wksp(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize) HUF_decompress4X2_DCtx_wksp() argument
1521 HUF_decompress1X_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable) HUF_decompress1X_usingDTable() argument
1540 HUF_decompress4X_usingDTable(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable) HUF_decompress4X_usingDTable() argument
1614 HUF_decompress4X_hufOnly_wksp(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize) HUF_decompress4X_hufOnly_wksp() argument
1640 HUF_decompress1X_DCtx_wksp(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize) HUF_decompress1X_DCtx_wksp() argument
1671 HUF_decompress1X_usingDTable_bmi2(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable, int bmi2) HUF_decompress1X_usingDTable_bmi2() argument
1689 HUF_decompress1X1_DCtx_wksp_bmi2(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize, int bmi2) HUF_decompress1X1_DCtx_wksp_bmi2() argument
1702 HUF_decompress4X_usingDTable_bmi2(void* dst, size_t maxDstSize, const void* cSrc, size_t cSrcSize, const HUF_DTable* DTable, int bmi2) HUF_decompress4X_usingDTable_bmi2() argument
1719 HUF_decompress4X_hufOnly_wksp_bmi2(HUF_DTable* dctx, void* dst, size_t dstSize, const void* cSrc, size_t cSrcSize, void* workSpace, size_t wkspSize, int bmi2) HUF_decompress4X_hufOnly_wksp_bmi2() argument
[all...]
/third_party/mesa3d/src/gallium/frontends/d3d10umd/
H A DShaderTGSI.c489 const struct Shader_dst_operand *dst) in dcl_vs_input()
492 assert(dst->base.index_dim == 1); in dcl_vs_input()
493 assert(dst->base.index[0].imm < SHADER_MAX_INPUTS); in dcl_vs_input()
495 reg = ureg_DECL_vs_input(ureg, dst->base.index[0].imm); in dcl_vs_input()
497 dcl_base_input(sx, ureg, dst, reg, dst->base.index[0].imm, in dcl_vs_input()
504 const struct Shader_dst_operand *dst) in dcl_gs_input()
506 if (dst->base.index_dim == 2) { in dcl_gs_input()
507 assert(dst->base.index[1].imm < SHADER_MAX_INPUTS); in dcl_gs_input()
509 declare_vertices_in(sx, dst in dcl_gs_input()
487 dcl_vs_input(struct Shader_xlate *sx, struct ureg_program *ureg, const struct Shader_dst_operand *dst) dcl_vs_input() argument
502 dcl_gs_input(struct Shader_xlate *sx, struct ureg_program *ureg, const struct Shader_dst_operand *dst) dcl_gs_input() argument
531 dcl_sgv_input(struct Shader_xlate *sx, struct ureg_program *ureg, const struct Shader_dst_operand *dst, uint dcl_siv_name) dcl_sgv_input() argument
547 dcl_siv_input(struct Shader_xlate *sx, struct ureg_program *ureg, const struct Shader_dst_operand *dst, uint dcl_siv_name) dcl_siv_input() argument
567 dcl_ps_input(struct Shader_xlate *sx, struct ureg_program *ureg, const struct Shader_dst_operand *dst, uint dcl_in_ps_interp) dcl_ps_input() argument
586 dcl_ps_sgv_input(struct Shader_xlate *sx, struct ureg_program *ureg, const struct Shader_dst_operand *dst, uint dcl_siv_name) dcl_ps_sgv_input() argument
627 dcl_ps_siv_input(struct Shader_xlate *sx, struct ureg_program *ureg, const struct Shader_dst_operand *dst, uint dcl_siv_name, uint dcl_in_ps_interp) dcl_ps_siv_input() argument
1165 sample_ureg_emit(struct ureg_program *ureg, unsigned tgsi_opcode, unsigned num_src, struct Shader_opcode *opcode, struct ureg_dst dst, struct ureg_src *src) sample_ureg_emit() argument
1210 struct ureg_dst dst = translate_dst_operand(sx, &opcode->dst[0], expand_unary_to_scalarf() local
1754 struct ureg_dst dst = translate_dst_operand(&sx, &opcode.dst[0], Shader_tgsi_translate() local
1767 struct ureg_dst dst = translate_dst_operand(&sx, &opcode.dst[1], Shader_tgsi_translate() local
2228 struct ureg_dst dst[SHADER_MAX_DST_OPERANDS]; Shader_tgsi_translate() local
[all...]
/third_party/pcre2/pcre2/src/sljit/
H A DsljitNativeMIPS_common.c520 static SLJIT_INLINE void load_addr_to_reg(void *dst, sljit_u32 reg) in load_addr_to_reg() argument
529 jump = (struct sljit_jump*)dst; in load_addr_to_reg()
534 put_label = (struct sljit_put_label*)dst; in load_addr_to_reg()
1380 FAIL_IF(push_inst(compiler, op_imm | S(src1) | T(dst) | IMM(src2), DR(dst))); \
1386 FAIL_IF(push_inst(compiler, op_reg | S(src1) | T(src2) | D(dst), DR(dst))); \
1413 static sljit_s32 emit_clz_ctz(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw src) in emit_clz_ctz() argument
1457 return push_inst(compiler, SELECT_OP(DADDU, ADDU) | SA(OTHER_FLAG) | TA(0) | D(dst), DR(dst)); in emit_clz_ctz()
1462 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 flags, sljit_s32 dst, sljit_s32 src1, sljit_sw src2) emit_single_op() argument
2018 emit_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 flags, sljit_s32 dst, sljit_sw dstw, sljit_s32 src1, sljit_sw src1w, sljit_s32 src2, sljit_sw src2w) emit_op() argument
2254 sljit_emit_op1(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw dstw, sljit_s32 src, sljit_sw srcw) sljit_emit_op1() argument
2313 sljit_emit_op2(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw dstw, sljit_s32 src1, sljit_sw src1w, sljit_s32 src2, sljit_sw src2w) sljit_emit_op2() argument
2549 sljit_emit_fop1_conv_sw_from_f64(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw dstw, sljit_s32 src, sljit_sw srcw) sljit_emit_fop1_conv_sw_from_f64() argument
2582 sljit_emit_fop1_conv_f64_from_sw(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw dstw, sljit_s32 src, sljit_sw srcw) sljit_emit_fop1_conv_f64_from_sw() argument
2601 FAIL_IF(emit_op_mem2(compiler, (flags ? DOUBLE_DATA : SINGLE_DATA) | LOAD_DATA, FR(TMP_FREG1), src, srcw, dst, dstw)); sljit_emit_fop1_conv_f64_from_sw() local
2681 sljit_emit_fop1(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw dstw, sljit_s32 src, sljit_sw srcw) sljit_emit_fop1() argument
2731 sljit_emit_fop2(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw dstw, sljit_s32 src1, sljit_sw src1w, sljit_s32 src2, sljit_sw src2w) sljit_emit_fop2() argument
2816 sljit_emit_fast_enter(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw) sljit_emit_fast_enter() argument
3191 sljit_emit_op_flags(struct sljit_compiler *compiler, sljit_s32 op, sljit_s32 dst, sljit_sw dstw, sljit_s32 type) sljit_emit_op_flags() argument
3673 sljit_emit_const(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw, sljit_sw init_value) sljit_emit_const() argument
3695 sljit_emit_put_label(struct sljit_compiler *compiler, sljit_s32 dst, sljit_sw dstw) sljit_emit_put_label() argument
[all...]
/third_party/ffmpeg/libavcodec/mips/
H A Dh264chroma_msa.c32 static void avc_chroma_hz_2x2_msa(uint8_t *src, uint8_t *dst, int32_t stride, in avc_chroma_hz_2x2_msa() argument
58 SH(out0, dst); in avc_chroma_hz_2x2_msa()
59 dst += stride; in avc_chroma_hz_2x2_msa()
60 SH(out1, dst); in avc_chroma_hz_2x2_msa()
63 static void avc_chroma_hz_2x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, in avc_chroma_hz_2x4_msa() argument
88 ST_H4(res, 0, 1, 2, 3, dst, stride); in avc_chroma_hz_2x4_msa()
91 static void avc_chroma_hz_2w_msa(uint8_t *src, uint8_t *dst, int32_t stride, in avc_chroma_hz_2w_msa() argument
96 avc_chroma_hz_2x2_msa(src, dst, stride, coeff0, coeff1); in avc_chroma_hz_2w_msa()
98 avc_chroma_hz_2x4_msa(src, dst, stride, coeff0, coeff1); in avc_chroma_hz_2w_msa()
102 static void avc_chroma_hz_4x2_msa(uint8_t *src, uint8_t *dst, int32_ argument
127 avc_chroma_hz_4x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_hz_4x4_msa() argument
150 avc_chroma_hz_4x8_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_hz_4x8_msa() argument
174 avc_chroma_hz_4w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1, int32_t height) avc_chroma_hz_4w_msa() argument
187 avc_chroma_hz_8x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_hz_8x4_msa() argument
210 avc_chroma_hz_8x8_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_hz_8x8_msa() argument
243 avc_chroma_hz_nonmult_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1, int32_t height) avc_chroma_hz_nonmult_msa() argument
292 avc_chroma_hz_8w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1, int32_t height) avc_chroma_hz_8w_msa() argument
305 avc_chroma_vt_2x2_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_2x2_msa() argument
337 avc_chroma_vt_2x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_2x4_msa() argument
365 avc_chroma_vt_2w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1, int32_t height) avc_chroma_vt_2w_msa() argument
376 avc_chroma_vt_4x2_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_4x2_msa() argument
400 avc_chroma_vt_4x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_4x4_msa() argument
424 avc_chroma_vt_4x8_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_4x8_msa() argument
452 avc_chroma_vt_4w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1, int32_t height) avc_chroma_vt_4w_msa() argument
465 avc_chroma_vt_8x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_8x4_msa() argument
486 avc_chroma_vt_8x8_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_8x8_msa() argument
518 avc_chroma_vt_8w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1, int32_t height) avc_chroma_vt_8w_msa() argument
529 avc_chroma_hv_2x2_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_2x2_msa() argument
564 avc_chroma_hv_2x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_2x4_msa() argument
598 avc_chroma_hv_2w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1, int32_t height) avc_chroma_hv_2w_msa() argument
612 avc_chroma_hv_4x2_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_4x2_msa() argument
640 avc_chroma_hv_4x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_4x4_msa() argument
673 avc_chroma_hv_4x8_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_4x8_msa() argument
713 avc_chroma_hv_4w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1, int32_t height) avc_chroma_hv_4w_msa() argument
730 avc_chroma_hv_8x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_8x4_msa() argument
773 avc_chroma_hv_8x8_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_8x8_msa() argument
829 avc_chroma_hv_8w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1, int32_t height) avc_chroma_hv_8w_msa() argument
843 avc_chroma_hz_and_aver_dst_2x2_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_hz_and_aver_dst_2x2_msa() argument
885 avc_chroma_hz_and_aver_dst_2x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_hz_and_aver_dst_2x4_msa() argument
925 avc_chroma_hz_and_aver_dst_2w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1, int32_t height) avc_chroma_hz_and_aver_dst_2w_msa() argument
936 avc_chroma_hz_and_aver_dst_4x2_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_hz_and_aver_dst_4x2_msa() argument
969 avc_chroma_hz_and_aver_dst_4x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_hz_and_aver_dst_4x4_msa() argument
998 avc_chroma_hz_and_aver_dst_4x8_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_hz_and_aver_dst_4x8_msa() argument
1030 avc_chroma_hz_and_aver_dst_4w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1, int32_t height) avc_chroma_hz_and_aver_dst_4w_msa() argument
1043 avc_chroma_hz_and_aver_dst_8x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_hz_and_aver_dst_8x4_msa() argument
1073 avc_chroma_hz_and_aver_dst_8x8_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_hz_and_aver_dst_8x8_msa() argument
1117 avc_chroma_hz_and_aver_dst_8w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1, int32_t height) avc_chroma_hz_and_aver_dst_8w_msa() argument
1128 avc_chroma_vt_and_aver_dst_2x2_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_and_aver_dst_2x2_msa() argument
1165 avc_chroma_vt_and_aver_dst_2x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_and_aver_dst_2x4_msa() argument
1207 avc_chroma_vt_and_aver_dst_2w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1, int32_t height) avc_chroma_vt_and_aver_dst_2w_msa() argument
1218 avc_chroma_vt_and_aver_dst_4x2_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_and_aver_dst_4x2_msa() argument
1250 avc_chroma_vt_and_aver_dst_4x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_and_aver_dst_4x4_msa() argument
1280 avc_chroma_vt_and_aver_dst_4x8_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_and_aver_dst_4x8_msa() argument
1316 avc_chroma_vt_and_aver_dst_4w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1, int32_t height) avc_chroma_vt_and_aver_dst_4w_msa() argument
1329 avc_chroma_vt_and_aver_dst_8x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_and_aver_dst_8x4_msa() argument
1358 avc_chroma_vt_and_aver_dst_8x8_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1) avc_chroma_vt_and_aver_dst_8x8_msa() argument
1401 avc_chroma_vt_and_aver_dst_8w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coeff0, uint32_t coeff1, int32_t height) avc_chroma_vt_and_aver_dst_8w_msa() argument
1412 avc_chroma_hv_and_aver_dst_2x2_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_and_aver_dst_2x2_msa() argument
1454 avc_chroma_hv_and_aver_dst_2x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_and_aver_dst_2x4_msa() argument
1499 avc_chroma_hv_and_aver_dst_2w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1, int32_t height) avc_chroma_hv_and_aver_dst_2w_msa() argument
1516 avc_chroma_hv_and_aver_dst_4x2_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_and_aver_dst_4x2_msa() argument
1552 avc_chroma_hv_and_aver_dst_4x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_and_aver_dst_4x4_msa() argument
1591 avc_chroma_hv_and_aver_dst_4x8_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_and_aver_dst_4x8_msa() argument
1640 avc_chroma_hv_and_aver_dst_4w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1, int32_t height) avc_chroma_hv_and_aver_dst_4w_msa() argument
1660 avc_chroma_hv_and_aver_dst_8x4_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_and_aver_dst_8x4_msa() argument
1708 avc_chroma_hv_and_aver_dst_8x8_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1) avc_chroma_hv_and_aver_dst_8x8_msa() argument
1777 avc_chroma_hv_and_aver_dst_8w_msa(uint8_t *src, uint8_t *dst, int32_t stride, uint32_t coef_hor0, uint32_t coef_hor1, uint32_t coef_ver0, uint32_t coef_ver1, int32_t height) avc_chroma_hv_and_aver_dst_8w_msa() argument
1794 copy_width4_msa(uint8_t *src, uint8_t *dst, int32_t stride, int32_t height) copy_width4_msa() argument
1817 copy_width8_msa(uint8_t *src, uint8_t *dst, int32_t stride, int32_t height) copy_width8_msa() argument
1835 avg_width4_msa(uint8_t *src, uint8_t *dst, int32_t stride, int32_t height) avg_width4_msa() argument
1870 avg_width8_msa(uint8_t *src, uint8_t *dst, int32_t stride, int32_t height) avg_width8_msa() argument
1906 ff_put_h264_chroma_mc8_msa(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int height, int x, int y) ff_put_h264_chroma_mc8_msa() argument
1922 ff_put_h264_chroma_mc4_msa(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int height, int x, int y) ff_put_h264_chroma_mc4_msa() argument
1938 ff_put_h264_chroma_mc2_msa(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int height, int x, int y) ff_put_h264_chroma_mc2_msa() argument
1961 ff_avg_h264_chroma_mc8_msa(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int height, int x, int y) ff_avg_h264_chroma_mc8_msa() argument
1979 ff_avg_h264_chroma_mc4_msa(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int height, int x, int y) ff_avg_h264_chroma_mc4_msa() argument
1996 ff_avg_h264_chroma_mc2_msa(uint8_t *dst, uint8_t *src, ptrdiff_t stride, int height, int x, int y) ff_avg_h264_chroma_mc2_msa() argument
[all...]
/kernel/linux/linux-5.10/net/ipv4/
H A Droute.c90 #include <net/dst.h>
137 static struct dst_entry *ipv4_dst_check(struct dst_entry *dst, u32 cookie);
138 static unsigned int ipv4_default_advmss(const struct dst_entry *dst);
139 static unsigned int ipv4_mtu(const struct dst_entry *dst);
141 struct dst_entry *dst);
143 static void ip_rt_update_pmtu(struct dst_entry *dst, struct sock *sk,
146 static void ip_do_redirect(struct dst_entry *dst, struct sock *sk,
148 static void ipv4_dst_destroy(struct dst_entry *dst);
150 static u32 *ipv4_cow_metrics(struct dst_entry *dst, unsigned long old) in ipv4_cow_metrics() argument
156 static struct neighbour *ipv4_neigh_lookup(const struct dst_entry *dst,
343 struct ip_rt_acct *dst, *src; rt_acct_proc_show() local
434 ipv4_neigh_lookup(const struct dst_entry *dst, struct sk_buff *skb, const void *daddr) ipv4_neigh_lookup() argument
463 ipv4_confirm_neigh(const struct dst_entry *dst, const void *daddr) ipv4_confirm_neigh() argument
852 ip_do_redirect(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb) ip_do_redirect() argument
870 ipv4_negative_advice(struct sock *sk, struct dst_entry *dst) ipv4_negative_advice() argument
1042 struct dst_entry *dst = &rt->dst; __ip_rt_update_pmtu() local
1076 ip_rt_update_pmtu(struct dst_entry *dst, struct sock *sk, struct sk_buff *skb, u32 mtu, bool confirm_neigh) ip_rt_update_pmtu() argument
1218 ipv4_dst_check(struct dst_entry *dst, u32 cookie) ipv4_dst_check() argument
1335 ipv4_default_advmss(const struct dst_entry *dst) ipv4_default_advmss() argument
1344 ipv4_mtu(const struct dst_entry *dst) ipv4_mtu() argument
1568 ipv4_dst_destroy(struct dst_entry *dst) ipv4_dst_destroy() argument
2863 rt_fill_info(struct net *net, __be32 dst, __be32 src, struct rtable *rt, u32 table_id, struct flowi4 *fl4, struct sk_buff *skb, u32 portid, u32 seq, unsigned int flags) rt_fill_info() argument
3072 inet_rtm_getroute_build_skb(__be32 src, __be32 dst, u8 ip_proto, __be16 sport, __be16 dport) inet_rtm_getroute_build_skb() argument
3215 __be32 dst = 0; inet_rtm_getroute() local
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/net/forwarding/
H A Dvxlan_bridge_1q.sh190 bridge fdb append dev vx10 00:00:00:00:00:00 dst 192.0.2.34 self
191 bridge fdb append dev vx10 00:00:00:00:00:00 dst 192.0.2.50 self
193 bridge fdb append dev vx20 00:00:00:00:00:00 dst 192.0.2.34 self
194 bridge fdb append dev vx20 00:00:00:00:00:00 dst 192.0.2.50 self
199 bridge fdb del dev vx20 00:00:00:00:00:00 dst 192.0.2.50 self
200 bridge fdb del dev vx20 00:00:00:00:00:00 dst 192.0.2.34 self
202 bridge fdb del dev vx10 00:00:00:00:00:00 dst 192.0.2.50 self
203 bridge fdb del dev vx10 00:00:00:00:00:00 dst 192.0.2.34 self
277 bridge fdb append dev vx10 00:00:00:00:00:00 dst 192.0.2.17 self
278 bridge fdb append dev vx10 00:00:00:00:00:00 dst
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/net/forwarding/
H A Dvxlan_bridge_1q.sh190 bridge fdb append dev vx10 00:00:00:00:00:00 dst 192.0.2.34 self
191 bridge fdb append dev vx10 00:00:00:00:00:00 dst 192.0.2.50 self
193 bridge fdb append dev vx20 00:00:00:00:00:00 dst 192.0.2.34 self
194 bridge fdb append dev vx20 00:00:00:00:00:00 dst 192.0.2.50 self
199 bridge fdb del dev vx20 00:00:00:00:00:00 dst 192.0.2.50 self
200 bridge fdb del dev vx20 00:00:00:00:00:00 dst 192.0.2.34 self
202 bridge fdb del dev vx10 00:00:00:00:00:00 dst 192.0.2.50 self
203 bridge fdb del dev vx10 00:00:00:00:00:00 dst 192.0.2.34 self
277 bridge fdb append dev vx10 00:00:00:00:00:00 dst 192.0.2.17 self
278 bridge fdb append dev vx10 00:00:00:00:00:00 dst
[all...]
/kernel/linux/linux-6.6/net/ipv4/netfilter/
H A Dnf_nat_h323.c118 &ct->tuplehash[!dir].tuple.dst.u3.ip, in set_sig_addr()
123 tuple.dst.u3, in set_sig_addr()
125 } else if (addr.ip == ct->tuplehash[dir].tuple.dst.u3.ip && in set_sig_addr()
161 &ct->tuplehash[!dir].tuple.dst.u3.ip, in set_ras_addr()
162 ntohs(ct->tuplehash[!dir].tuple.dst.u.udp.port)); in set_ras_addr()
164 &ct->tuplehash[!dir].tuple.dst.u3, in set_ras_addr()
166 dst.u.udp.port); in set_ras_addr()
188 rtp_exp->saved_proto.udp.port = rtp_exp->tuple.dst.u.udp.port; in nat_rtp_rtcp()
191 rtcp_exp->saved_proto.udp.port = rtcp_exp->tuple.dst.u.udp.port; in nat_rtp_rtcp()
202 rtp_exp->tuple.dst in nat_rtp_rtcp()
[all...]
/third_party/ffmpeg/libpostproc/
H A Dpostprocess.c248 static inline void doHorizDefFilter_C(uint8_t dst[], int stride, const PPContext *c) in doHorizDefFilter_C() argument
252 const int middleEnergy= 5*(dst[4] - dst[3]) + 2*(dst[2] - dst[5]); in doHorizDefFilter_C()
255 const int q=(dst[3] - dst[4])/2; in doHorizDefFilter_C()
256 const int leftEnergy= 5*(dst[2] - dst[1]) + 2*(dst[ in doHorizDefFilter_C()
287 doHorizLowPass_C(uint8_t dst[], int stride, const PPContext *c) doHorizLowPass_C() argument
539 postProcess(const uint8_t src[], int srcStride, uint8_t dst[], int dstStride, int width, int height, const int8_t QPs[], int QPStride, int isColor, pp_mode *vm, pp_context *vc) postProcess() argument
916 pp_postprocess(const uint8_t * src[3], const int srcStride[3], uint8_t * dst[3], const int dstStride[3], int width, int height, const int8_t *QP_store, int QPStride, pp_mode *vm, void *vc, int pict_type) pp_postprocess() argument
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/apm/xgene/
H A Dxgene_enet_hw.h20 static inline void xgene_set_bits(u32 *dst, u32 val, u32 start, u32 len) in xgene_set_bits() argument
25 *dst &= ~mask; in xgene_set_bits()
26 *dst |= (val << start) & mask; in xgene_set_bits()
139 #define PHY_CONTROL_SET(dst, val) xgene_set_bits(dst, val, 0, 16)
157 #define CFG_TXCLK_MUXSEL0_SET(dst, val) xgene_set_bits(dst, val, 29, 3)
158 #define CFG_RXCLK_MUXSEL0_SET(dst, val) xgene_set_bits(dst, val, 26, 3)
160 #define CFG_CLE_IP_PROTOCOL0_SET(dst, va
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/apm/xgene/
H A Dxgene_enet_hw.h20 static inline void xgene_set_bits(u32 *dst, u32 val, u32 start, u32 len) in xgene_set_bits() argument
25 *dst &= ~mask; in xgene_set_bits()
26 *dst |= (val << start) & mask; in xgene_set_bits()
139 #define PHY_CONTROL_SET(dst, val) xgene_set_bits(dst, val, 0, 16)
157 #define CFG_TXCLK_MUXSEL0_SET(dst, val) xgene_set_bits(dst, val, 29, 3)
158 #define CFG_RXCLK_MUXSEL0_SET(dst, val) xgene_set_bits(dst, val, 26, 3)
160 #define CFG_CLE_IP_PROTOCOL0_SET(dst, va
[all...]
/kernel/linux/linux-6.6/fs/xfs/
H A Dxfs_qm_syscalls.c402 struct qc_dqblk *dst) in xfs_qm_scall_getquota_fill_qc()
404 memset(dst, 0, sizeof(*dst)); in xfs_qm_scall_getquota_fill_qc()
405 dst->d_spc_hardlimit = XFS_FSB_TO_B(mp, dqp->q_blk.hardlimit); in xfs_qm_scall_getquota_fill_qc()
406 dst->d_spc_softlimit = XFS_FSB_TO_B(mp, dqp->q_blk.softlimit); in xfs_qm_scall_getquota_fill_qc()
407 dst->d_ino_hardlimit = dqp->q_ino.hardlimit; in xfs_qm_scall_getquota_fill_qc()
408 dst->d_ino_softlimit = dqp->q_ino.softlimit; in xfs_qm_scall_getquota_fill_qc()
409 dst->d_space = XFS_FSB_TO_B(mp, dqp->q_blk.reserved); in xfs_qm_scall_getquota_fill_qc()
410 dst->d_ino_count = dqp->q_ino.reserved; in xfs_qm_scall_getquota_fill_qc()
411 dst in xfs_qm_scall_getquota_fill_qc()
398 xfs_qm_scall_getquota_fill_qc( struct xfs_mount *mp, xfs_dqtype_t type, const struct xfs_dquot *dqp, struct qc_dqblk *dst) xfs_qm_scall_getquota_fill_qc() argument
448 xfs_qm_scall_getquota( struct xfs_mount *mp, xfs_dqid_t id, xfs_dqtype_t type, struct qc_dqblk *dst) xfs_qm_scall_getquota() argument
493 xfs_qm_scall_getquota_next( struct xfs_mount *mp, xfs_dqid_t *id, xfs_dqtype_t type, struct qc_dqblk *dst) xfs_qm_scall_getquota_next() argument
[all...]
/third_party/ffmpeg/libavcodec/
H A Dcllc.c91 uint8_t *dst; in read_argb_line() local
98 dst = outbuf; in read_argb_line()
110 dst[0] = pred[0]; in read_argb_line()
113 if (dst[0]) { in read_argb_line()
119 dst[1] = pred[1]; in read_argb_line()
126 dst[2] = pred[2]; in read_argb_line()
133 dst[3] = pred[3]; in read_argb_line()
135 dst[1] = 0; in read_argb_line()
136 dst[2] = 0; in read_argb_line()
137 dst[ in read_argb_line()
160 uint8_t *dst; read_rgb24_component_line() local
218 uint8_t *dst; decode_argb_frame() local
262 uint8_t *dst; decode_rgb24_frame() local
307 uint8_t *dst[3]; decode_yuv_frame() local
[all...]
H A Dscpr.h76 int *px, int *py, uint32_t clr, uint32_t *dst, in decode_run_i()
93 dst[y * linesize + x] = clr; in decode_run_i()
107 dst[y * linesize + x] = dst[ly * linesize + lx]; in decode_run_i()
118 clr = dst[ly * linesize + lx]; in decode_run_i()
125 clr = dst[y * linesize + x + off + 1]; in decode_run_i()
126 dst[y * linesize + x] = clr; in decode_run_i()
143 uint8_t *odst = (uint8_t *)dst; in decode_run_i()
163 dst[y * linesize + x] = clr; in decode_run_i()
186 clr = dst[ in decode_run_i()
75 decode_run_i(AVCodecContext *avctx, uint32_t ptype, int run, int *px, int *py, uint32_t clr, uint32_t *dst, int linesize, uint32_t *plx, uint32_t *ply, uint32_t backstep, int off, int *cx, int *cx1) decode_run_i() argument
217 decode_run_p(AVCodecContext *avctx, uint32_t ptype, int run, int x, int y, uint32_t clr, uint32_t *dst, uint32_t *prev, int linesize, int plinesize, uint32_t *bx, uint32_t *by, uint32_t backstep, int sx1, int sx2, int *cx, int *cx1) decode_run_p() argument
[all...]
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_vec4_cse.cpp116 const unsigned ab_writemask = a->dst.writemask & b->dst.writemask; in operands_match()
151 a->dst.type == b->dst.type && in instructions_match()
157 ((a->dst.writemask & b->dst.writemask) == a->dst.writemask) && in instructions_match()
177 ((inst->dst.file != ARF && inst->dst.file != FIXED_GRF) || in opt_cse_local()
178 inst->dst in opt_cse_local()
[all...]
/third_party/ltp/testcases/kernel/kvm/
H A Dlib_x86.c116 static void kvm_set_segment_descriptor64(struct segment_descriptor64 *dst, in kvm_set_segment_descriptor64() argument
120 dst->baseaddr_lo = baseaddr & 0xffffff; in kvm_set_segment_descriptor64()
121 dst->baseaddr_hi = baseaddr >> 24; in kvm_set_segment_descriptor64()
122 dst->limit_lo = limit & 0xffff; in kvm_set_segment_descriptor64()
123 dst->limit_hi = limit >> 16; in kvm_set_segment_descriptor64()
124 dst->flags_lo = flags & 0xff; in kvm_set_segment_descriptor64()
125 dst->flags_hi = (flags >> 8) & 0xf; in kvm_set_segment_descriptor64()
126 dst->reserved = 0; in kvm_set_segment_descriptor64()
130 void kvm_set_segment_descriptor(struct segment_descriptor *dst, in kvm_set_segment_descriptor() argument
139 kvm_set_segment_descriptor64((struct segment_descriptor64 *)dst, in kvm_set_segment_descriptor()
299 kvm_vmcb_copy_gdt_descriptor(struct kvm_vmcb_descriptor *dst, unsigned int gdt_id) kvm_vmcb_copy_gdt_descriptor() argument
[all...]
/third_party/skia/third_party/externals/tint/src/transform/
H A Ddecompose_strided_matrix.cc135 auto* replacement = ctx.dst->Member( in Run()
136 member->Offset(), ctx.Clone(member->Name()), info.array(ctx.dst)); in Run()
154 return ctx.dst->IndexAccessor(obj, idx); in Run()
175 auto name = ctx.dst->Symbols().New( in Run()
181 auto array = [&] { return info.array(ctx.dst); }; in Run()
183 auto mat = ctx.dst->Sym("mat"); in Run()
186 columns[i] = ctx.dst->IndexAccessor(mat, i); in Run()
188 ctx.dst->Func(name, in Run()
190 ctx.dst->Param(mat, matrix()), in Run()
194 ctx.dst in Run()
[all...]
/third_party/ffmpeg/libavcodec/loongarch/
H A Dvc1dsp_lasx.c141 uint8_t *dst = dest + (stride2 << 1); in ff_vc1_inv_trans_8x8_dc_lasx() local
152 DUP4_ARG2(__lasx_xvldrepl_d, dst, 0, dst + stride, 0, dst + stride2, in ff_vc1_inv_trans_8x8_dc_lasx()
153 0, dst + stride3, 0, in4, in5, in6, in7); in ff_vc1_inv_trans_8x8_dc_lasx()
168 __lasx_xvstelm_d(temp1, dst, 0, 0); in ff_vc1_inv_trans_8x8_dc_lasx()
169 __lasx_xvstelm_d(temp1, dst + stride, 0, 2); in ff_vc1_inv_trans_8x8_dc_lasx()
170 __lasx_xvstelm_d(temp1, dst + stride2, 0, 1); in ff_vc1_inv_trans_8x8_dc_lasx()
171 __lasx_xvstelm_d(temp1, dst + stride3, 0, 3); in ff_vc1_inv_trans_8x8_dc_lasx()
296 uint8_t *dst in ff_vc1_inv_trans_4x8_dc_lasx() local
329 uint8_t *dst = dest + (stride2 << 1); ff_vc1_inv_trans_4x8_lasx() local
522 put_vc1_mspel_mc_h_v_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride, int hmode, int vmode, int rnd) put_vc1_mspel_mc_h_v_lasx() argument
738 put_vc1_mspel_mc_v_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride, int vmode, int rnd) put_vc1_mspel_mc_v_lasx() argument
805 put_vc1_mspel_mc_h_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride, int hmode, int rnd) put_vc1_mspel_mc_h_lasx() argument
[all...]

Completed in 239 milliseconds

1...<<21222324252627282930>>...417