/kernel/linux/linux-6.6/arch/mips/net/ |
H A D | bpf_jit_comp64.c | 98 static void emit_sext(struct jit_context *ctx, u8 dst, u8 src) in emit_sext() argument 100 emit(ctx, sll, dst, src, 0); in emit_sext() 101 clobber_reg(ctx, dst); in emit_sext() 105 static void emit_zext(struct jit_context *ctx, u8 dst) in emit_zext() argument 108 emit(ctx, dinsu, dst, MIPS_R_ZERO, 32, 32); in emit_zext() 110 emit(ctx, and, dst, dst, bpf2mips64[JIT_REG_ZX]); in emit_zext() 113 clobber_reg(ctx, dst); in emit_zext() 117 static void emit_zext_ver(struct jit_context *ctx, u8 dst) in emit_zext_ver() argument 120 emit_zext(ctx, dst); in emit_zext_ver() 124 emit_mov_i64(struct jit_context *ctx, u8 dst, u64 imm64) emit_mov_i64() argument 158 emit_alu_i64(struct jit_context *ctx, u8 dst, s32 imm, u8 op) emit_alu_i64() argument 201 emit_alu_r64(struct jit_context *ctx, u8 dst, u8 src, u8 op) emit_alu_r64() argument 262 emit_swap_r64(struct jit_context *ctx, u8 dst, u8 mask, u32 bits) emit_swap_r64() argument 274 emit_bswap_r64(struct jit_context *ctx, u8 dst, u32 width) emit_bswap_r64() argument 316 emit_trunc_r64(struct jit_context *ctx, u8 dst, u32 width) emit_trunc_r64() argument 334 emit_ldx(struct jit_context *ctx, u8 dst, u8 src, s16 off, u8 size) emit_ldx() argument 358 emit_stx(struct jit_context *ctx, u8 dst, u8 src, s16 off, u8 size) emit_stx() argument 381 emit_atomic_r64(struct jit_context *ctx, u8 dst, u8 src, s16 off, u8 code) emit_atomic_r64() argument 421 emit_cmpxchg_r64(struct jit_context *ctx, u8 dst, u8 src, s16 off) emit_cmpxchg_r64() argument 637 u8 dst = bpf2mips64[insn->dst_reg]; build_insn() local [all...] |
H A D | bpf_jit_comp.c | 191 /* dst = imm (register width) */ 192 void emit_mov_i(struct jit_context *ctx, u8 dst, s32 imm) in emit_mov_i() argument 195 emit(ctx, addiu, dst, MIPS_R_ZERO, imm); in emit_mov_i() 197 emit(ctx, lui, dst, (s16)((u32)imm >> 16)); in emit_mov_i() 198 emit(ctx, ori, dst, dst, (u16)(imm & 0xffff)); in emit_mov_i() 200 clobber_reg(ctx, dst); in emit_mov_i() 203 /* dst = src (register width) */ 204 void emit_mov_r(struct jit_context *ctx, u8 dst, u8 src) in emit_mov_r() argument 206 emit(ctx, ori, dst, sr in emit_mov_r() 298 emit_alu_i(struct jit_context *ctx, u8 dst, s32 imm, u8 op) emit_alu_i() argument 342 emit_alu_r(struct jit_context *ctx, u8 dst, u8 src, u8 op) emit_alu_r() argument 409 emit_atomic_r(struct jit_context *ctx, u8 dst, u8 src, s16 off, u8 code) emit_atomic_r() argument 445 emit_cmpxchg_r(struct jit_context *ctx, u8 dst, u8 src, u8 res, s16 off) emit_cmpxchg_r() argument 458 emit_bswap_r(struct jit_context *ctx, u8 dst, u32 width) emit_bswap_r() argument 698 emit_jmp_i(struct jit_context *ctx, u8 dst, s32 imm, s32 off, u8 op) emit_jmp_i() argument 758 emit_jmp_r(struct jit_context *ctx, u8 dst, u8 src, s32 off, u8 op) emit_jmp_r() argument [all...] |
/third_party/skia/third_party/externals/tint/src/transform/ |
H A D | vertex_pulling.cc | 240 return ctx.dst->Symbols().New(kVertexBufferNamePrefix + in GetVertexBufferName() 249 struct_buffer_name = ctx.dst->Symbols().New(kStructBufferName); in GetStructBufferName() 258 auto* struct_type = ctx.dst->Structure( in AddVertexStorageBuffers() 259 ctx.dst->Symbols().New(kStructName), in AddVertexStorageBuffers() 261 ctx.dst->Member(GetStructBufferName(), in AddVertexStorageBuffers() 262 ctx.dst->ty.array<ProgramBuilder::u32>(4)), in AddVertexStorageBuffers() 265 ctx.dst->create<ast::StructBlockDecoration>(), in AddVertexStorageBuffers() 269 ctx.dst->Global( in AddVertexStorageBuffers() 270 GetVertexBufferName(i), ctx.dst->ty.Of(struct_type), in AddVertexStorageBuffers() 273 ctx.dst in AddVertexStorageBuffers() [all...] |
/kernel/linux/linux-5.10/drivers/phy/ |
H A D | phy-xgene.c | 94 #define REGSPEC_CFG_I_TX_WORDMODE0_SET(dst, src) \ 95 (((dst) & ~0x00070000) | (((u32) (src) << 16) & 0x00070000)) 96 #define REGSPEC_CFG_I_RX_WORDMODE0_SET(dst, src) \ 97 (((dst) & ~0x00e00000) | (((u32) (src) << 21) & 0x00e00000)) 99 #define REGSPEC_CFG_I_CUSTOMER_PIN_MODE0_SET(dst, src) \ 100 (((dst) & ~0x00007fff) | (((u32) (src)) & 0x00007fff)) 102 #define CFG_I_SPD_SEL_CDR_OVR1_SET(dst, src) \ 103 (((dst) & ~0x0000000f) | (((u32) (src)) & 0x0000000f)) 109 #define CFG_IND_ADDR_SET(dst, src) \ 110 (((dst) [all...] |
/kernel/linux/linux-6.6/drivers/phy/ |
H A D | phy-xgene.c | 95 #define REGSPEC_CFG_I_TX_WORDMODE0_SET(dst, src) \ 96 (((dst) & ~0x00070000) | (((u32) (src) << 16) & 0x00070000)) 97 #define REGSPEC_CFG_I_RX_WORDMODE0_SET(dst, src) \ 98 (((dst) & ~0x00e00000) | (((u32) (src) << 21) & 0x00e00000)) 100 #define REGSPEC_CFG_I_CUSTOMER_PIN_MODE0_SET(dst, src) \ 101 (((dst) & ~0x00007fff) | (((u32) (src)) & 0x00007fff)) 103 #define CFG_I_SPD_SEL_CDR_OVR1_SET(dst, src) \ 104 (((dst) & ~0x0000000f) | (((u32) (src)) & 0x0000000f)) 110 #define CFG_IND_ADDR_SET(dst, src) \ 111 (((dst) [all...] |
/kernel/linux/linux-5.10/net/dsa/ |
H A D | dsa2.c | 26 struct dsa_switch_tree *dst; in dsa_switch_find() local 29 list_for_each_entry(dst, &dsa_tree_list, list) { in dsa_switch_find() 30 if (dst->index != tree_index) in dsa_switch_find() 33 list_for_each_entry(dp, &dst->ports, list) { in dsa_switch_find() 47 struct dsa_switch_tree *dst; in dsa_tree_find() local 49 list_for_each_entry(dst, &dsa_tree_list, list) in dsa_tree_find() 50 if (dst->index == index) in dsa_tree_find() 51 return dst; in dsa_tree_find() 58 struct dsa_switch_tree *dst; in dsa_tree_alloc() local 60 dst in dsa_tree_alloc() 78 dsa_tree_free(struct dsa_switch_tree *dst) dsa_tree_free() argument 84 dsa_tree_get(struct dsa_switch_tree *dst) dsa_tree_get() argument 94 struct dsa_switch_tree *dst; dsa_tree_touch() local 105 struct dsa_switch_tree *dst; dsa_tree_release() local 112 dsa_tree_put(struct dsa_switch_tree *dst) dsa_tree_put() argument 133 dsa_tree_find_port_by_node(struct dsa_switch_tree *dst, struct device_node *dn) dsa_tree_find_port_by_node() argument 149 struct dsa_switch_tree *dst; dsa_link_touch() local 174 struct dsa_switch_tree *dst = ds->dst; dsa_port_setup_routing_table() local 198 dsa_tree_setup_routing_table(struct dsa_switch_tree *dst) dsa_tree_setup_routing_table() argument 214 dsa_tree_find_first_cpu(struct dsa_switch_tree *dst) dsa_tree_find_first_cpu() argument 225 dsa_tree_setup_default_cpu(struct dsa_switch_tree *dst) dsa_tree_setup_default_cpu() argument 243 dsa_tree_teardown_default_cpu(struct dsa_switch_tree *dst) dsa_tree_teardown_default_cpu() argument 315 struct dsa_switch_tree *dst = dp->ds->dst; dsa_port_devlink_setup() local 529 dsa_tree_setup_switches(struct dsa_switch_tree *dst) dsa_tree_setup_switches() argument 564 dsa_tree_teardown_switches(struct dsa_switch_tree *dst) dsa_tree_teardown_switches() argument 575 dsa_tree_setup_master(struct dsa_switch_tree *dst) dsa_tree_setup_master() argument 591 dsa_tree_teardown_master(struct dsa_switch_tree *dst) dsa_tree_teardown_master() argument 600 dsa_tree_setup(struct dsa_switch_tree *dst) dsa_tree_setup() argument 641 dsa_tree_teardown(struct dsa_switch_tree *dst) dsa_tree_teardown() argument 666 struct dsa_switch_tree *dst = ds->dst; dsa_port_touch() local 733 struct dsa_switch_tree *dst = ds->dst; dsa_port_parse_cpu() local 946 struct dsa_switch_tree *dst = ds->dst; dsa_switch_release_ports() local 959 struct dsa_switch_tree *dst; dsa_switch_probe() local 1014 struct dsa_switch_tree *dst = ds->dst; dsa_switch_remove() local [all...] |
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nv30_transfer.c | 28 struct nv30_rect *src, struct nv30_rect *dst 45 nv30_transfer_scaled(struct nv30_rect *src, struct nv30_rect *dst) in nv30_transfer_scaled() argument 47 if (src->x1 - src->x0 != dst->x1 - dst->x0) in nv30_transfer_scaled() 49 if (src->y1 - src->y0 != dst->y1 - dst->y0) in nv30_transfer_scaled() 59 if (dst->offset & 63 || dst->pitch & 63 || dst->d > 1) in nv30_transfer_blit() 61 if (dst in nv30_transfer_blit() 652 nv30_transfer_rect(struct nv30_context *nv30, enum nv30_transfer_filter filter, struct nv30_rect *src, struct nv30_rect *dst) nv30_transfer_rect() argument 687 nv30_transfer_copy_data(struct nouveau_context *nv, struct nouveau_bo *dst, unsigned d_off, unsigned d_dom, struct nouveau_bo *src, unsigned s_off, unsigned s_dom, unsigned size) nv30_transfer_copy_data() argument [all...] |
/third_party/ffmpeg/libavcodec/loongarch/ |
H A D | h264qpel_lasx.c | 67 uint8_t *dst, ptrdiff_t stride) in avc_luma_hv_qrt_and_aver_dst_16x16_lasx() 165 out0 = __lasx_xvld(dst, 0); in avc_luma_hv_qrt_and_aver_dst_16x16_lasx() 166 DUP2_ARG2(__lasx_xvldx, dst, stride, dst, stride_2x, out1, out2); in avc_luma_hv_qrt_and_aver_dst_16x16_lasx() 167 out3 = __lasx_xvldx(dst, stride_3x); in avc_luma_hv_qrt_and_aver_dst_16x16_lasx() 177 __lasx_xvstelm_d(tmp0, dst, 0, 0); in avc_luma_hv_qrt_and_aver_dst_16x16_lasx() 178 __lasx_xvstelm_d(tmp0, dst + stride, 0, 1); in avc_luma_hv_qrt_and_aver_dst_16x16_lasx() 179 __lasx_xvstelm_d(tmp1, dst + stride_2x, 0, 0); in avc_luma_hv_qrt_and_aver_dst_16x16_lasx() 180 __lasx_xvstelm_d(tmp1, dst + stride_3x, 0, 1); in avc_luma_hv_qrt_and_aver_dst_16x16_lasx() 182 __lasx_xvstelm_d(tmp0, dst, in avc_luma_hv_qrt_and_aver_dst_16x16_lasx() 65 avc_luma_hv_qrt_and_aver_dst_16x16_lasx(uint8_t *src_x, uint8_t *src_y, uint8_t *dst, ptrdiff_t stride) avc_luma_hv_qrt_and_aver_dst_16x16_lasx() argument 197 avc_luma_hv_qrt_16x16_lasx(uint8_t *src_x, uint8_t *src_y, uint8_t *dst, ptrdiff_t stride) avc_luma_hv_qrt_16x16_lasx() argument 317 put_pixels8_8_inline_asm(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) put_pixels8_8_inline_asm() argument 360 avg_pixels8_8_lsx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) avg_pixels8_8_lsx() argument 425 put_pixels8_l2_8_lsx(uint8_t *dst, const uint8_t *src, const uint8_t *half, ptrdiff_t dstStride, ptrdiff_t srcStride) put_pixels8_l2_8_lsx() argument 489 avg_pixels8_l2_8_lsx(uint8_t *dst, const uint8_t *src, const uint8_t *half, ptrdiff_t dstStride, ptrdiff_t srcStride) avg_pixels8_l2_8_lsx() argument 574 put_pixels16_8_lsx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) put_pixels16_8_lsx() argument 634 avg_pixels16_8_lsx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) avg_pixels16_8_lsx() argument 736 put_pixels16_l2_8_lsx(uint8_t *dst, const uint8_t *src, uint8_t *half, ptrdiff_t dstStride, ptrdiff_t srcStride) put_pixels16_l2_8_lsx() argument 840 avg_pixels16_l2_8_lsx(uint8_t *dst, const uint8_t *src, uint8_t *half, ptrdiff_t dstStride, ptrdiff_t srcStride) avg_pixels16_l2_8_lsx() argument 1001 put_h264_qpel8_h_lowpass_lasx(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride) put_h264_qpel8_h_lowpass_lasx() argument 1053 put_h264_qpel8_v_lowpass_lasx(uint8_t *dst, uint8_t *src, int dstStride, int srcStride) put_h264_qpel8_v_lowpass_lasx() argument 1100 avg_h264_qpel8_v_lowpass_lasx(uint8_t *dst, uint8_t *src, int dstStride, int srcStride) avg_h264_qpel8_v_lowpass_lasx() argument 1214 put_h264_qpel8_hv_lowpass_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride) put_h264_qpel8_hv_lowpass_lasx() argument 1274 avg_h264_qpel8_h_lowpass_lasx(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride) avg_h264_qpel8_h_lowpass_lasx() argument 1323 avg_h264_qpel8_hv_lowpass_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride) avg_h264_qpel8_hv_lowpass_lasx() argument 1402 put_h264_qpel16_h_lowpass_lasx(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride) put_h264_qpel16_h_lowpass_lasx() argument 1414 avg_h264_qpel16_h_lowpass_lasx(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride) avg_h264_qpel16_h_lowpass_lasx() argument 1425 put_h264_qpel16_v_lowpass_lasx(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride) put_h264_qpel16_v_lowpass_lasx() argument 1436 avg_h264_qpel16_v_lowpass_lasx(uint8_t *dst, const uint8_t *src, int dstStride, int srcStride) avg_h264_qpel16_v_lowpass_lasx() argument 1447 put_h264_qpel16_hv_lowpass_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride) put_h264_qpel16_hv_lowpass_lasx() argument 1458 avg_h264_qpel16_hv_lowpass_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t dstStride, ptrdiff_t srcStride) avg_h264_qpel16_hv_lowpass_lasx() argument 1469 ff_put_h264_qpel8_mc00_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc00_lasx() argument 1477 ff_put_h264_qpel8_mc10_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc10_lasx() argument 1487 ff_put_h264_qpel8_mc20_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc20_lasx() argument 1493 ff_put_h264_qpel8_mc30_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc30_lasx() argument 1502 ff_put_h264_qpel8_mc01_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc01_lasx() argument 1511 ff_put_h264_qpel8_mc11_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc11_lasx() argument 1522 ff_put_h264_qpel8_mc21_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc21_lasx() argument 1534 ff_put_h264_qpel8_mc31_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc31_lasx() argument 1545 ff_put_h264_qpel8_mc02_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc02_lasx() argument 1551 ff_put_h264_qpel8_mc12_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc12_lasx() argument 1563 ff_put_h264_qpel8_mc22_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc22_lasx() argument 1569 ff_put_h264_qpel8_mc32_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc32_lasx() argument 1581 ff_put_h264_qpel8_mc03_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc03_lasx() argument 1590 ff_put_h264_qpel8_mc13_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc13_lasx() argument 1601 ff_put_h264_qpel8_mc23_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc23_lasx() argument 1613 ff_put_h264_qpel8_mc33_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel8_mc33_lasx() argument 1624 ff_avg_h264_qpel8_mc00_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc00_lasx() argument 1632 ff_avg_h264_qpel8_mc10_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc10_lasx() argument 1641 ff_avg_h264_qpel8_mc20_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc20_lasx() argument 1647 ff_avg_h264_qpel8_mc30_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc30_lasx() argument 1656 ff_avg_h264_qpel8_mc11_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc11_lasx() argument 1667 ff_avg_h264_qpel8_mc21_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc21_lasx() argument 1679 ff_avg_h264_qpel8_mc31_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc31_lasx() argument 1690 ff_avg_h264_qpel8_mc02_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc02_lasx() argument 1696 ff_avg_h264_qpel8_mc12_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc12_lasx() argument 1708 ff_avg_h264_qpel8_mc22_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc22_lasx() argument 1714 ff_avg_h264_qpel8_mc32_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc32_lasx() argument 1726 ff_avg_h264_qpel8_mc13_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc13_lasx() argument 1737 ff_avg_h264_qpel8_mc23_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc23_lasx() argument 1749 ff_avg_h264_qpel8_mc33_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel8_mc33_lasx() argument 1760 ff_put_h264_qpel16_mc00_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc00_lasx() argument 1768 ff_put_h264_qpel16_mc10_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc10_lasx() argument 1777 ff_put_h264_qpel16_mc20_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc20_lasx() argument 1783 ff_put_h264_qpel16_mc30_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc30_lasx() argument 1792 ff_put_h264_qpel16_mc01_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc01_lasx() argument 1801 ff_put_h264_qpel16_mc11_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc11_lasx() argument 1808 ff_put_h264_qpel16_mc21_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc21_lasx() argument 1820 ff_put_h264_qpel16_mc31_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc31_lasx() argument 1827 ff_put_h264_qpel16_mc02_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc02_lasx() argument 1833 ff_put_h264_qpel16_mc12_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc12_lasx() argument 1845 ff_put_h264_qpel16_mc22_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc22_lasx() argument 1851 ff_put_h264_qpel16_mc32_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc32_lasx() argument 1863 ff_put_h264_qpel16_mc03_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc03_lasx() argument 1872 ff_put_h264_qpel16_mc13_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc13_lasx() argument 1879 ff_put_h264_qpel16_mc23_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc23_lasx() argument 1891 ff_put_h264_qpel16_mc33_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_put_h264_qpel16_mc33_lasx() argument 1898 ff_avg_h264_qpel16_mc00_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc00_lasx() argument 1906 ff_avg_h264_qpel16_mc10_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc10_lasx() argument 1915 ff_avg_h264_qpel16_mc20_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc20_lasx() argument 1921 ff_avg_h264_qpel16_mc30_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc30_lasx() argument 1930 ff_avg_h264_qpel16_mc01_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc01_lasx() argument 1939 ff_avg_h264_qpel16_mc11_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc11_lasx() argument 1947 ff_avg_h264_qpel16_mc21_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc21_lasx() argument 1959 ff_avg_h264_qpel16_mc31_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc31_lasx() argument 1967 ff_avg_h264_qpel16_mc02_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc02_lasx() argument 1973 ff_avg_h264_qpel16_mc12_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc12_lasx() argument 1985 ff_avg_h264_qpel16_mc22_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc22_lasx() argument 1991 ff_avg_h264_qpel16_mc32_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc32_lasx() argument 2003 ff_avg_h264_qpel16_mc03_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc03_lasx() argument 2012 ff_avg_h264_qpel16_mc13_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc13_lasx() argument 2020 ff_avg_h264_qpel16_mc23_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc23_lasx() argument 2032 ff_avg_h264_qpel16_mc33_lasx(uint8_t *dst, const uint8_t *src, ptrdiff_t stride) ff_avg_h264_qpel16_mc33_lasx() argument [all...] |
H A D | vp9dsp_loongarch.h | 26 void ff_put_8tap_##type##_##SIZE##h_lsx(uint8_t *dst, ptrdiff_t dststride, \ 31 void ff_put_8tap_##type##_##SIZE##v_lsx(uint8_t *dst, ptrdiff_t dststride, \ 36 void ff_put_8tap_##type##_##SIZE##hv_lsx(uint8_t *dst, ptrdiff_t dststride, \ 41 void ff_avg_8tap_##type##_##SIZE##h_lsx(uint8_t *dst, ptrdiff_t dststride, \ 46 void ff_avg_8tap_##type##_##SIZE##v_lsx(uint8_t *dst, ptrdiff_t dststride, \ 51 void ff_avg_8tap_##type##_##SIZE##hv_lsx(uint8_t *dst, ptrdiff_t dststride, \ 57 void ff_copy##SIZE##_lsx(uint8_t *dst, ptrdiff_t dststride, \ 61 void ff_avg##SIZE##_lsx(uint8_t *dst, ptrdiff_t dststride, \ 91 void ff_vert_16x16_lsx(uint8_t *dst, ptrdiff_t stride, const uint8_t *left, 93 void ff_vert_32x32_lsx(uint8_t *dst, ptrdiff_ [all...] |
H A D | vp9_lpf_lsx.c | 229 void ff_loop_filter_v_4_8_lsx(uint8_t *dst, ptrdiff_t stride, in ff_loop_filter_v_4_8_lsx() argument 240 DUP4_ARG2(__lsx_vldx, dst, -stride4, dst, -stride3, dst, -stride2, in ff_loop_filter_v_4_8_lsx() 241 dst, -stride, p3, p2, p1, p0); in ff_loop_filter_v_4_8_lsx() 242 q0 = __lsx_vld(dst, 0); in ff_loop_filter_v_4_8_lsx() 243 DUP2_ARG2(__lsx_vldx, dst, stride, dst, stride2, q1, q2); in ff_loop_filter_v_4_8_lsx() 244 q3 = __lsx_vldx(dst, stride3); in ff_loop_filter_v_4_8_lsx() 256 __lsx_vstelm_d(p1_out, dst in ff_loop_filter_v_4_8_lsx() 262 ff_loop_filter_v_44_16_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_v_44_16_lsx() argument 302 ff_loop_filter_v_8_8_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_v_8_8_lsx() argument 374 ff_loop_filter_v_88_16_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_v_88_16_lsx() argument 465 ff_loop_filter_v_84_16_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_v_84_16_lsx() argument 547 ff_loop_filter_v_48_16_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_v_48_16_lsx() argument 629 vp9_hz_lpf_t4_and_t8_16w(uint8_t *dst, ptrdiff_t stride, uint8_t *filter48, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) vp9_hz_lpf_t4_and_t8_16w() argument 716 vp9_hz_lpf_t16_16w(uint8_t *dst, ptrdiff_t stride, uint8_t *filter48) vp9_hz_lpf_t16_16w() argument 1080 ff_loop_filter_v_16_16_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_v_16_16_lsx() argument 1096 ff_loop_filter_v_16_8_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_v_16_8_lsx() argument 1350 ff_loop_filter_h_4_8_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_h_4_8_lsx() argument 1396 ff_loop_filter_h_44_16_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_h_44_16_lsx() argument 1476 ff_loop_filter_h_8_8_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_h_8_8_lsx() argument 1594 ff_loop_filter_h_88_16_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_h_88_16_lsx() argument 1779 ff_loop_filter_h_84_16_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_h_84_16_lsx() argument 1954 ff_loop_filter_h_48_16_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_h_48_16_lsx() argument 2356 vp9_vt_lpf_t16_8w(uint8_t *dst, uint8_t *dst_org, ptrdiff_t stride, uint8_t *filter48) vp9_vt_lpf_t16_8w() argument 2612 ff_loop_filter_h_16_8_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_h_16_8_lsx() argument 2637 vp9_vt_lpf_t4_and_t8_16w(uint8_t *dst, uint8_t *filter48, uint8_t *dst_org, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) vp9_vt_lpf_t4_and_t8_16w() argument 2749 vp9_vt_lpf_t16_16w(uint8_t *dst, uint8_t *dst_org, ptrdiff_t stride, uint8_t *filter48) vp9_vt_lpf_t16_16w() argument 3118 ff_loop_filter_h_16_16_lsx(uint8_t *dst, ptrdiff_t stride, int32_t b_limit_ptr, int32_t limit_ptr, int32_t thresh_ptr) ff_loop_filter_h_16_16_lsx() argument [all...] |
/third_party/vk-gl-cts/framework/egl/ |
H A D | egluConfigInfo.cpp | 21 * \brief EGL config dst-> 90 void queryCoreConfigInfo (const Library& egl, EGLDisplay display, EGLConfig config, ConfigInfo* dst) in queryCoreConfigInfo() argument 92 egl.getConfigAttrib(display, config, EGL_BUFFER_SIZE, &dst->bufferSize); in queryCoreConfigInfo() 93 egl.getConfigAttrib(display, config, EGL_RED_SIZE, &dst->redSize); in queryCoreConfigInfo() 94 egl.getConfigAttrib(display, config, EGL_GREEN_SIZE, &dst->greenSize); in queryCoreConfigInfo() 95 egl.getConfigAttrib(display, config, EGL_BLUE_SIZE, &dst->blueSize); in queryCoreConfigInfo() 96 egl.getConfigAttrib(display, config, EGL_LUMINANCE_SIZE, &dst->luminanceSize); in queryCoreConfigInfo() 97 egl.getConfigAttrib(display, config, EGL_ALPHA_SIZE, &dst->alphaSize); in queryCoreConfigInfo() 98 egl.getConfigAttrib(display, config, EGL_ALPHA_MASK_SIZE, &dst->alphaMaskSize); in queryCoreConfigInfo() 99 egl.getConfigAttrib(display, config, EGL_BIND_TO_TEXTURE_RGB, (EGLint*)&dst in queryCoreConfigInfo() 126 queryExtConfigInfo(const eglw::Library& egl, eglw::EGLDisplay display, eglw::EGLConfig config, ConfigInfo* dst) queryExtConfigInfo() argument [all...] |
/third_party/ffmpeg/libavcodec/mips/ |
H A D | vp8dsp_mips.h | 30 void ff_put_vp8_pixels4_msa(uint8_t *dst, ptrdiff_t dststride, 33 void ff_put_vp8_pixels8_msa(uint8_t *dst, ptrdiff_t dststride, 36 void ff_put_vp8_pixels16_msa(uint8_t *dst, ptrdiff_t dststride, 40 void ff_put_vp8_epel16_h4_msa(uint8_t *dst, ptrdiff_t dststride, 43 void ff_put_vp8_epel16_h6_msa(uint8_t *dst, ptrdiff_t dststride, 46 void ff_put_vp8_epel16_v4_msa(uint8_t *dst, ptrdiff_t dststride, 49 void ff_put_vp8_epel16_v6_msa(uint8_t *dst, ptrdiff_t dststride, 52 void ff_put_vp8_epel16_h4v4_msa(uint8_t *dst, ptrdiff_t dststride, 55 void ff_put_vp8_epel16_h6v4_msa(uint8_t *dst, ptrdiff_t dststride, 58 void ff_put_vp8_epel16_h4v6_msa(uint8_t *dst, ptrdiff_ [all...] |
H A D | vp9dsp_mips.h | 28 void ff_put_8tap_##type##_##SIZE##h_msa(uint8_t *dst, ptrdiff_t dststride, \ 33 void ff_put_8tap_##type##_##SIZE##v_msa(uint8_t *dst, ptrdiff_t dststride, \ 38 void ff_put_8tap_##type##_##SIZE##hv_msa(uint8_t *dst, ptrdiff_t dststride, \ 43 void ff_avg_8tap_##type##_##SIZE##h_msa(uint8_t *dst, ptrdiff_t dststride, \ 48 void ff_avg_8tap_##type##_##SIZE##v_msa(uint8_t *dst, ptrdiff_t dststride, \ 53 void ff_avg_8tap_##type##_##SIZE##hv_msa(uint8_t *dst, ptrdiff_t dststride, \ 59 void ff_put_bilin_##SIZE##h_msa(uint8_t *dst, ptrdiff_t dststride, \ 63 void ff_put_bilin_##SIZE##v_msa(uint8_t *dst, ptrdiff_t dststride, \ 67 void ff_put_bilin_##SIZE##hv_msa(uint8_t *dst, ptrdiff_t dststride, \ 71 void ff_avg_bilin_##SIZE##h_msa(uint8_t *dst, ptrdiff_ [all...] |
/third_party/node/deps/v8/src/wasm/baseline/loong64/ |
H A D | liftoff-assembler-loong64.h | 99 inline void Load(LiftoffAssembler* assm, LiftoffRegister dst, MemOperand src, in Load() argument 103 assm->Ld_w(dst.gp(), src); in Load() 109 assm->Ld_d(dst.gp(), src); in Load() 112 assm->Fld_s(dst.fp(), src); in Load() 115 assm->Fld_d(dst.fp(), src); in Load() 127 MemOperand dst(base, offset); in Store() 130 assm->St_w(src.gp(), dst); in Store() 136 assm->St_d(src.gp(), dst); in Store() 139 assm->Fst_s(src.fp(), dst); in Store() 142 assm->Fst_d(src.fp(), dst); in Store() 332 LoadInstanceFromFrame(Register dst) LoadInstanceFromFrame() argument 336 LoadFromInstance(Register dst, Register instance, int offset, int size) LoadFromInstance() argument 354 LoadTaggedPointerFromInstance(Register dst, Register instance, int32_t offset) LoadTaggedPointerFromInstance() argument 367 LoadTaggedPointer(Register dst, Register src_addr, Register offset_reg, int32_t offset_imm, LiftoffRegList pinned) LoadTaggedPointer() argument 376 LoadFullPointer(Register dst, Register src_addr, int32_t offset_imm) LoadFullPointer() argument 422 Load(LiftoffRegister dst, Register src_addr, Register offset_reg, uintptr_t offset_imm, LoadType type, LiftoffRegList pinned, uint32_t* protected_load_pc, bool is_load_mem, bool i64_offset) Load() argument 508 AtomicLoad(LiftoffRegister dst, Register src_addr, Register offset_reg, uintptr_t offset_imm, LoadType type, LiftoffRegList pinned) AtomicLoad() argument 827 LoadCallerFrameSlot(LiftoffRegister dst, uint32_t caller_slot_idx, ValueKind kind) LoadCallerFrameSlot() argument 841 LoadReturnStackSlot(LiftoffRegister dst, int offset, ValueKind kind) LoadReturnStackSlot() argument 854 Move(Register dst, Register src, ValueKind kind) Move() argument 860 Move(DoubleRegister dst, DoubleRegister src, ValueKind kind) Move() argument 872 MemOperand dst = liftoff::GetStackSlot(offset); Spill() local 899 MemOperand dst = liftoff::GetStackSlot(offset); Spill() local 985 emit_i64_clz(LiftoffRegister dst, LiftoffRegister src) emit_i64_clz() argument 989 emit_i64_ctz(LiftoffRegister dst, LiftoffRegister src) emit_i64_ctz() argument 993 emit_i64_popcnt(LiftoffRegister dst, LiftoffRegister src) emit_i64_popcnt() argument 999 IncrementSmi(LiftoffRegister dst, int offset) IncrementSmi() argument 1008 emit_i32_mul(Register dst, Register lhs, Register rhs) emit_i32_mul() argument 1012 emit_i32_divs(Register dst, Register lhs, Register rhs, Label* trap_div_by_zero, Label* trap_div_unrepresentable) emit_i32_divs() argument 1029 emit_i32_divu(Register dst, Register lhs, Register rhs, Label* trap_div_by_zero) emit_i32_divu() argument 1035 emit_i32_rems(Register dst, Register lhs, Register rhs, Label* trap_div_by_zero) emit_i32_rems() argument 1041 emit_i32_remu(Register dst, Register lhs, Register rhs, Label* trap_div_by_zero) emit_i32_remu() argument 1079 emit_i32_clz(Register dst, Register src) emit_i32_clz() argument 1083 emit_i32_ctz(Register dst, Register src) emit_i32_ctz() argument 1087 emit_i32_popcnt(Register dst, Register src) emit_i32_popcnt() argument 1111 emit_i64_addi(LiftoffRegister dst, LiftoffRegister lhs, int64_t imm) emit_i64_addi() argument 1116 emit_i64_mul(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i64_mul() argument 1121 emit_i64_divs(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs, Label* trap_div_by_zero, Label* trap_div_unrepresentable) emit_i64_divs() argument 1141 emit_i64_divu(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs, Label* trap_div_by_zero) emit_i64_divu() argument 1149 emit_i64_rems(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs, Label* trap_div_by_zero) emit_i64_rems() argument 1157 emit_i64_remu(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs, Label* trap_div_by_zero) emit_i64_remu() argument 1214 emit_u32_to_uintptr(Register dst, Register src) emit_u32_to_uintptr() argument 1218 emit_f32_neg(DoubleRegister dst, DoubleRegister src) emit_f32_neg() argument 1222 emit_f64_neg(DoubleRegister dst, DoubleRegister src) emit_f64_neg() argument 1226 emit_f32_min(DoubleRegister dst, DoubleRegister lhs, DoubleRegister rhs) emit_f32_min() argument 1237 emit_f32_max(DoubleRegister dst, DoubleRegister lhs, DoubleRegister rhs) emit_f32_max() argument 1248 emit_f32_copysign(DoubleRegister dst, DoubleRegister lhs, DoubleRegister rhs) emit_f32_copysign() argument 1253 emit_f64_min(DoubleRegister dst, DoubleRegister lhs, DoubleRegister rhs) emit_f64_min() argument 1264 emit_f64_max(DoubleRegister dst, DoubleRegister lhs, DoubleRegister rhs) emit_f64_max() argument 1275 emit_f64_copysign(DoubleRegister dst, DoubleRegister lhs, DoubleRegister rhs) emit_f64_copysign() argument 1320 emit_type_conversion(WasmOpcode opcode, LiftoffRegister dst, LiftoffRegister src, Label* trap) emit_type_conversion() argument 1565 emit_i32_signextend_i8(Register dst, Register src) emit_i32_signextend_i8() argument 1569 emit_i32_signextend_i16(Register dst, Register src) emit_i32_signextend_i16() argument 1573 emit_i64_signextend_i8(LiftoffRegister dst, LiftoffRegister src) emit_i64_signextend_i8() argument 1578 emit_i64_signextend_i16(LiftoffRegister dst, LiftoffRegister src) emit_i64_signextend_i16() argument 1583 emit_i64_signextend_i32(LiftoffRegister dst, LiftoffRegister src) emit_i64_signextend_i32() argument 1625 emit_i32_eqz(Register dst, Register src) emit_i32_eqz() argument 1629 emit_i32_set_cond(LiftoffCondition liftoff_cond, Register dst, Register lhs, Register rhs) emit_i32_set_cond() argument 1648 emit_i64_eqz(Register dst, LiftoffRegister src) emit_i64_eqz() argument 1652 emit_i64_set_cond(LiftoffCondition liftoff_cond, Register dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i64_set_cond() argument 1704 emit_f32_set_cond(LiftoffCondition liftoff_cond, Register dst, DoubleRegister lhs, DoubleRegister rhs) emit_f32_set_cond() argument 1735 emit_f64_set_cond(LiftoffCondition liftoff_cond, Register dst, DoubleRegister lhs, DoubleRegister rhs) emit_f64_set_cond() argument 1766 emit_select(LiftoffRegister dst, Register condition, LiftoffRegister true_value, LiftoffRegister false_value, ValueKind kind) emit_select() argument 1782 LoadTransform(LiftoffRegister dst, Register src_addr, Register offset_reg, uintptr_t offset_imm, LoadType type, LoadTransformationKind transform, uint32_t* protected_load_pc) LoadTransform() argument 1790 LoadLane(LiftoffRegister dst, LiftoffRegister src, Register addr, Register offset_reg, uintptr_t offset_imm, LoadType type, uint8_t laneidx, uint32_t* protected_load_pc) LoadLane() argument 1797 StoreLane(Register dst, Register offset, uintptr_t offset_imm, LiftoffRegister src, StoreType type, uint8_t lane, uint32_t* protected_store_pc) StoreLane() argument 1804 emit_i8x16_shuffle(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs, const uint8_t shuffle[16], bool is_swizzle) emit_i8x16_shuffle() argument 1812 emit_i8x16_swizzle(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_swizzle() argument 1818 emit_i8x16_splat(LiftoffRegister dst, LiftoffRegister src) emit_i8x16_splat() argument 1823 emit_i16x8_splat(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_splat() argument 1828 emit_i32x4_splat(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_splat() argument 1833 emit_i64x2_splat(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_splat() argument 1838 emit_f32x4_splat(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_splat() argument 1843 emit_f64x2_splat(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_splat() argument 1881 emit_i16x8_q15mulr_sat_s(LiftoffRegister dst, LiftoffRegister src1, LiftoffRegister src2) emit_i16x8_q15mulr_sat_s() argument 1887 emit_i8x16_eq(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_eq() argument 1892 emit_i8x16_ne(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_ne() argument 1897 emit_i8x16_gt_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_gt_s() argument 1902 emit_i8x16_gt_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_gt_u() argument 1907 emit_i8x16_ge_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_ge_s() argument 1912 emit_i8x16_ge_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_ge_u() argument 1917 emit_i16x8_eq(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_eq() argument 1922 emit_i16x8_ne(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_ne() argument 1927 emit_i16x8_gt_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_gt_s() argument 1932 emit_i16x8_gt_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_gt_u() argument 1937 emit_i16x8_ge_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_ge_s() argument 1942 emit_i16x8_ge_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_ge_u() argument 1947 emit_i32x4_eq(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_eq() argument 1952 emit_i32x4_ne(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_ne() argument 1957 emit_i32x4_gt_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_gt_s() argument 1962 emit_i32x4_gt_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_gt_u() argument 1967 emit_i32x4_ge_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_ge_s() argument 1972 emit_i32x4_ge_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_ge_u() argument 1977 emit_f32x4_eq(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f32x4_eq() argument 1982 emit_f32x4_ne(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f32x4_ne() argument 1987 emit_f32x4_lt(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f32x4_lt() argument 1992 emit_f32x4_le(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f32x4_le() argument 1997 emit_i64x2_eq(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i64x2_eq() argument 2002 emit_i64x2_ne(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i64x2_ne() argument 2007 emit_i64x2_abs(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_abs() argument 2012 emit_f64x2_eq(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f64x2_eq() argument 2017 emit_f64x2_ne(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f64x2_ne() argument 2022 emit_f64x2_lt(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f64x2_lt() argument 2027 emit_f64x2_le(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f64x2_le() argument 2032 emit_s128_const(LiftoffRegister dst, const uint8_t imms[16]) emit_s128_const() argument 2037 emit_s128_not(LiftoffRegister dst, LiftoffRegister src) emit_s128_not() argument 2041 emit_s128_and(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_s128_and() argument 2046 emit_s128_or(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_s128_or() argument 2051 emit_s128_xor(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_s128_xor() argument 2056 emit_s128_and_not(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_s128_and_not() argument 2062 emit_s128_select(LiftoffRegister dst, LiftoffRegister src1, LiftoffRegister src2, LiftoffRegister mask) emit_s128_select() argument 2069 emit_i8x16_neg(LiftoffRegister dst, LiftoffRegister src) emit_i8x16_neg() argument 2074 emit_v128_anytrue(LiftoffRegister dst, LiftoffRegister src) emit_v128_anytrue() argument 2079 emit_i8x16_alltrue(LiftoffRegister dst, LiftoffRegister src) emit_i8x16_alltrue() argument 2084 emit_i8x16_bitmask(LiftoffRegister dst, LiftoffRegister src) emit_i8x16_bitmask() argument 2089 emit_i8x16_shl(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_shl() argument 2094 emit_i8x16_shli(LiftoffRegister dst, LiftoffRegister lhs, int32_t rhs) emit_i8x16_shli() argument 2099 emit_i8x16_shr_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_shr_s() argument 2105 emit_i8x16_shri_s(LiftoffRegister dst, LiftoffRegister lhs, int32_t rhs) emit_i8x16_shri_s() argument 2110 emit_i8x16_shr_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_shr_u() argument 2116 emit_i8x16_shri_u(LiftoffRegister dst, LiftoffRegister lhs, int32_t rhs) emit_i8x16_shri_u() argument 2121 emit_i8x16_add(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_add() argument 2126 emit_i8x16_add_sat_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_add_sat_s() argument 2132 emit_i8x16_add_sat_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_add_sat_u() argument 2138 emit_i8x16_sub(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_sub() argument 2143 emit_i8x16_sub_sat_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_sub_sat_s() argument 2149 emit_i8x16_sub_sat_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_sub_sat_u() argument 2155 emit_i8x16_min_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_min_s() argument 2161 emit_i8x16_min_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_min_u() argument 2167 emit_i8x16_max_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_max_s() argument 2173 emit_i8x16_max_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_max_u() argument 2179 emit_i8x16_popcnt(LiftoffRegister dst, LiftoffRegister src) emit_i8x16_popcnt() argument 2184 emit_i16x8_neg(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_neg() argument 2189 emit_i16x8_alltrue(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_alltrue() argument 2194 emit_i16x8_bitmask(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_bitmask() argument 2199 emit_i16x8_shl(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_shl() argument 2204 emit_i16x8_shli(LiftoffRegister dst, LiftoffRegister lhs, int32_t rhs) emit_i16x8_shli() argument 2209 emit_i16x8_shr_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_shr_s() argument 2215 emit_i16x8_shri_s(LiftoffRegister dst, LiftoffRegister lhs, int32_t rhs) emit_i16x8_shri_s() argument 2220 emit_i16x8_shr_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_shr_u() argument 2226 emit_i16x8_shri_u(LiftoffRegister dst, LiftoffRegister lhs, int32_t rhs) emit_i16x8_shri_u() argument 2231 emit_i16x8_add(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_add() argument 2236 emit_i16x8_add_sat_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_add_sat_s() argument 2242 emit_i16x8_add_sat_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_add_sat_u() argument 2248 emit_i16x8_sub(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_sub() argument 2253 emit_i16x8_sub_sat_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_sub_sat_s() argument 2259 emit_i16x8_sub_sat_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_sub_sat_u() argument 2265 emit_i16x8_mul(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_mul() argument 2270 emit_i16x8_min_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_min_s() argument 2276 emit_i16x8_min_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_min_u() argument 2282 emit_i16x8_max_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_max_s() argument 2288 emit_i16x8_max_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_max_u() argument 2294 emit_i32x4_neg(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_neg() argument 2299 emit_i32x4_alltrue(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_alltrue() argument 2304 emit_i32x4_bitmask(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_bitmask() argument 2309 emit_i32x4_shl(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_shl() argument 2314 emit_i32x4_shli(LiftoffRegister dst, LiftoffRegister lhs, int32_t rhs) emit_i32x4_shli() argument 2319 emit_i32x4_shr_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_shr_s() argument 2325 emit_i32x4_shri_s(LiftoffRegister dst, LiftoffRegister lhs, int32_t rhs) emit_i32x4_shri_s() argument 2330 emit_i32x4_shr_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_shr_u() argument 2336 emit_i32x4_shri_u(LiftoffRegister dst, LiftoffRegister lhs, int32_t rhs) emit_i32x4_shri_u() argument 2341 emit_i32x4_add(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_add() argument 2346 emit_i32x4_sub(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_sub() argument 2351 emit_i32x4_mul(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_mul() argument 2356 emit_i32x4_min_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_min_s() argument 2362 emit_i32x4_min_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_min_u() argument 2368 emit_i32x4_max_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_max_s() argument 2374 emit_i32x4_max_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_max_u() argument 2380 emit_i32x4_dot_i16x8_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i32x4_dot_i16x8_s() argument 2386 emit_i64x2_neg(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_neg() argument 2391 emit_i64x2_alltrue(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_alltrue() argument 2396 emit_i64x2_bitmask(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_bitmask() argument 2401 emit_i64x2_shl(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i64x2_shl() argument 2406 emit_i64x2_shli(LiftoffRegister dst, LiftoffRegister lhs, int32_t rhs) emit_i64x2_shli() argument 2411 emit_i64x2_shr_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i64x2_shr_s() argument 2417 emit_i64x2_shri_s(LiftoffRegister dst, LiftoffRegister lhs, int32_t rhs) emit_i64x2_shri_s() argument 2422 emit_i64x2_shr_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i64x2_shr_u() argument 2428 emit_i64x2_shri_u(LiftoffRegister dst, LiftoffRegister lhs, int32_t rhs) emit_i64x2_shri_u() argument 2433 emit_i64x2_add(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i64x2_add() argument 2438 emit_i64x2_sub(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i64x2_sub() argument 2443 emit_i64x2_mul(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i64x2_mul() argument 2448 emit_i64x2_gt_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i64x2_gt_s() argument 2453 emit_i64x2_ge_s(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i64x2_ge_s() argument 2458 emit_f32x4_abs(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_abs() argument 2463 emit_f32x4_neg(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_neg() argument 2468 emit_f32x4_sqrt(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_sqrt() argument 2473 emit_f32x4_ceil(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_ceil() argument 2479 emit_f32x4_floor(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_floor() argument 2485 emit_f32x4_trunc(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_trunc() argument 2491 emit_f32x4_nearest_int(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_nearest_int() argument 2497 emit_f32x4_add(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f32x4_add() argument 2502 emit_f32x4_sub(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f32x4_sub() argument 2507 emit_f32x4_mul(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f32x4_mul() argument 2512 emit_f32x4_div(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f32x4_div() argument 2517 emit_f32x4_min(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f32x4_min() argument 2522 emit_f32x4_max(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f32x4_max() argument 2527 emit_f32x4_pmin(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f32x4_pmin() argument 2532 emit_f32x4_pmax(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f32x4_pmax() argument 2537 emit_f64x2_abs(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_abs() argument 2542 emit_f64x2_neg(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_neg() argument 2547 emit_f64x2_sqrt(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_sqrt() argument 2552 emit_f64x2_ceil(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_ceil() argument 2558 emit_f64x2_floor(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_floor() argument 2564 emit_f64x2_trunc(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_trunc() argument 2570 emit_f64x2_nearest_int(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_nearest_int() argument 2576 emit_f64x2_add(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f64x2_add() argument 2581 emit_f64x2_sub(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f64x2_sub() argument 2586 emit_f64x2_mul(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f64x2_mul() argument 2591 emit_f64x2_div(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f64x2_div() argument 2596 emit_f64x2_min(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f64x2_min() argument 2601 emit_f64x2_max(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f64x2_max() argument 2606 emit_f64x2_pmin(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f64x2_pmin() argument 2611 emit_f64x2_pmax(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_f64x2_pmax() argument 2616 emit_f64x2_convert_low_i32x4_s(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_convert_low_i32x4_s() argument 2621 emit_f64x2_convert_low_i32x4_u(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_convert_low_i32x4_u() argument 2626 emit_f64x2_promote_low_f32x4(LiftoffRegister dst, LiftoffRegister src) emit_f64x2_promote_low_f32x4() argument 2631 emit_i32x4_sconvert_f32x4(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_sconvert_f32x4() argument 2636 emit_i32x4_uconvert_f32x4(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_uconvert_f32x4() argument 2641 emit_i32x4_trunc_sat_f64x2_s_zero(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_trunc_sat_f64x2_s_zero() argument 2646 emit_i32x4_trunc_sat_f64x2_u_zero(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_trunc_sat_f64x2_u_zero() argument 2651 emit_f32x4_sconvert_i32x4(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_sconvert_i32x4() argument 2656 emit_f32x4_uconvert_i32x4(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_uconvert_i32x4() argument 2661 emit_f32x4_demote_f64x2_zero(LiftoffRegister dst, LiftoffRegister src) emit_f32x4_demote_f64x2_zero() argument 2666 emit_i8x16_sconvert_i16x8(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_sconvert_i16x8() argument 2672 emit_i8x16_uconvert_i16x8(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_uconvert_i16x8() argument 2678 emit_i16x8_sconvert_i32x4(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_sconvert_i32x4() argument 2684 emit_i16x8_uconvert_i32x4(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_uconvert_i32x4() argument 2690 emit_i16x8_sconvert_i8x16_low(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_sconvert_i8x16_low() argument 2695 emit_i16x8_sconvert_i8x16_high(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_sconvert_i8x16_high() argument 2700 emit_i16x8_uconvert_i8x16_low(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_uconvert_i8x16_low() argument 2705 emit_i16x8_uconvert_i8x16_high(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_uconvert_i8x16_high() argument 2710 emit_i32x4_sconvert_i16x8_low(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_sconvert_i16x8_low() argument 2715 emit_i32x4_sconvert_i16x8_high(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_sconvert_i16x8_high() argument 2720 emit_i32x4_uconvert_i16x8_low(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_uconvert_i16x8_low() argument 2725 emit_i32x4_uconvert_i16x8_high(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_uconvert_i16x8_high() argument 2730 emit_i64x2_sconvert_i32x4_low(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_sconvert_i32x4_low() argument 2735 emit_i64x2_sconvert_i32x4_high(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_sconvert_i32x4_high() argument 2740 emit_i64x2_uconvert_i32x4_low(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_uconvert_i32x4_low() argument 2745 emit_i64x2_uconvert_i32x4_high(LiftoffRegister dst, LiftoffRegister src) emit_i64x2_uconvert_i32x4_high() argument 2750 emit_i8x16_rounding_average_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i8x16_rounding_average_u() argument 2756 emit_i16x8_rounding_average_u(LiftoffRegister dst, LiftoffRegister lhs, LiftoffRegister rhs) emit_i16x8_rounding_average_u() argument 2762 emit_i8x16_abs(LiftoffRegister dst, LiftoffRegister src) emit_i8x16_abs() argument 2767 emit_i16x8_abs(LiftoffRegister dst, LiftoffRegister src) emit_i16x8_abs() argument 2772 emit_i32x4_abs(LiftoffRegister dst, LiftoffRegister src) emit_i32x4_abs() argument 2777 emit_i8x16_extract_lane_s(LiftoffRegister dst, LiftoffRegister lhs, uint8_t imm_lane_idx) emit_i8x16_extract_lane_s() argument 2783 emit_i8x16_extract_lane_u(LiftoffRegister dst, LiftoffRegister lhs, uint8_t imm_lane_idx) emit_i8x16_extract_lane_u() argument 2789 emit_i16x8_extract_lane_s(LiftoffRegister dst, LiftoffRegister lhs, uint8_t imm_lane_idx) emit_i16x8_extract_lane_s() argument 2795 emit_i16x8_extract_lane_u(LiftoffRegister dst, LiftoffRegister lhs, uint8_t imm_lane_idx) emit_i16x8_extract_lane_u() argument 2801 emit_i32x4_extract_lane(LiftoffRegister dst, LiftoffRegister lhs, uint8_t imm_lane_idx) emit_i32x4_extract_lane() argument 2807 emit_i64x2_extract_lane(LiftoffRegister dst, LiftoffRegister lhs, uint8_t imm_lane_idx) emit_i64x2_extract_lane() argument 2813 emit_f32x4_extract_lane(LiftoffRegister dst, LiftoffRegister lhs, uint8_t imm_lane_idx) emit_f32x4_extract_lane() argument 2819 emit_f64x2_extract_lane(LiftoffRegister dst, LiftoffRegister lhs, uint8_t imm_lane_idx) emit_f64x2_extract_lane() argument 2825 emit_i8x16_replace_lane(LiftoffRegister dst, LiftoffRegister src1, LiftoffRegister src2, uint8_t imm_lane_idx) emit_i8x16_replace_lane() argument 2832 emit_i16x8_replace_lane(LiftoffRegister dst, LiftoffRegister src1, LiftoffRegister src2, uint8_t imm_lane_idx) emit_i16x8_replace_lane() argument 2839 emit_i32x4_replace_lane(LiftoffRegister dst, LiftoffRegister src1, LiftoffRegister src2, uint8_t imm_lane_idx) emit_i32x4_replace_lane() argument 2846 emit_i64x2_replace_lane(LiftoffRegister dst, LiftoffRegister src1, LiftoffRegister src2, uint8_t imm_lane_idx) emit_i64x2_replace_lane() argument 2853 emit_f32x4_replace_lane(LiftoffRegister dst, LiftoffRegister src1, LiftoffRegister src2, uint8_t imm_lane_idx) emit_f32x4_replace_lane() argument 2860 emit_f64x2_replace_lane(LiftoffRegister dst, LiftoffRegister src1, LiftoffRegister src2, uint8_t imm_lane_idx) emit_f64x2_replace_lane() argument 3044 emit_set_if_nan(Register dst, FPURegister src, ValueKind kind) emit_set_if_nan() argument 3061 emit_s128_set_if_nan(Register dst, LiftoffRegister src, Register tmp_gp, LiftoffRegister tmp_s128, ValueKind lane_kind) emit_s128_set_if_nan() argument [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | af_asoftclip.c | 64 void (*filter)(struct ASoftClipContext *s, void **dst, const void **src, 129 float dst; in run_lowpassf() local 131 dst = src * s->fb0 + w[0]; in run_lowpassf() 132 w[0] = s->fb1 * src + w[1] - s->fa1 * dst; in run_lowpassf() 133 w[1] = s->fb2 * src - s->fa2 * dst; in run_lowpassf() 135 return dst; in run_lowpassf() 154 float *dst = dptr[c]; in filter_flt() local 157 dst[oversample * n] = src[n]; in filter_flt() 160 dst[oversample * n + m] = 0.f; in filter_flt() 164 dst[ in filter_flt() 254 double dst; run_lowpassd() local 279 double *dst = dptr[c]; filter_dbl() local [all...] |
H A D | vf_deblock.c | 58 void (*deblockh)(uint8_t *dst, ptrdiff_t dst_linesize, int block, 60 void (*deblockv)(uint8_t *dst, ptrdiff_t dst_linesize, int block, 90 type *dst; \ 93 dst = (type *)dstp; \ 97 int delta = dst[x] - dst[x - dst_linesize]; \ 101 FFABS(dst[x - 1 * dst_linesize] - dst[x - 2 * dst_linesize]) >= bth || \ 102 FFABS(dst[x + 0 * dst_linesize] - dst[ 326 uint8_t *dst = (uint8_t *)out->data[plane]; filter_frame() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/tests/ |
H A D | drm_rect_test.c | 27 struct drm_rect src, dst, clip; in drm_test_rect_clip_scaled_div_by_zero() local 31 * Make sure we don't divide by zero when dst in drm_test_rect_clip_scaled_div_by_zero() 32 * width/height is zero and dst and clip do not intersect. in drm_test_rect_clip_scaled_div_by_zero() 35 drm_rect_init(&dst, 0, 0, 0, 0); in drm_test_rect_clip_scaled_div_by_zero() 37 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_div_by_zero() 43 drm_rect_init(&dst, 3, 3, 0, 0); in drm_test_rect_clip_scaled_div_by_zero() 45 visible = drm_rect_clip_scaled(&src, &dst, &clip); in drm_test_rect_clip_scaled_div_by_zero() 53 struct drm_rect src, dst, clip; in drm_test_rect_clip_scaled_not_clipped() local 58 drm_rect_init(&dst, 0, 0, 1, 1); in drm_test_rect_clip_scaled_not_clipped() 61 visible = drm_rect_clip_scaled(&src, &dst, in drm_test_rect_clip_scaled_not_clipped() 101 struct drm_rect src, dst, clip; drm_test_rect_clip_scaled_clipped() local 191 struct drm_rect src, dst, clip; drm_test_rect_clip_scaled_signed_vs_unsigned() local 350 struct drm_rect src, dst; global() member [all...] |
/third_party/vixl/src/aarch64/ |
H A D | logic-aarch64.cc | 185 void Simulator::ld1(VectorFormat vform, LogicVRegister dst, uint64_t addr) { in ld1() argument 186 dst.ClearForWrite(vform); in ld1() 188 LoadLane(dst, vform, i, addr); in ld1() 195 LogicVRegister dst, in ld1() 198 LoadLane(dst, vform, index, addr); in ld1() 204 LogicVRegister dst, in ld1r() 208 dst.ClearForWrite(vform); in ld1r() 211 LoadIntToLane(dst, vform, unpack_size, i, addr); in ld1r() 213 LoadUintToLane(dst, vform, unpack_size, i, addr); in ld1r() 219 void Simulator::ld1r(VectorFormat vform, LogicVRegister dst, uint64_ argument 194 ld1(VectorFormat vform, LogicVRegister dst, int index, uint64_t addr) ld1() argument 202 ld1r(VectorFormat vform, VectorFormat unpack_vform, LogicVRegister dst, uint64_t addr, bool is_signed) ld1r() argument 507 cmp(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, Condition cond) cmp() argument 551 cmp(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, int imm, Condition cond) cmp() argument 562 cmptst(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) cmptst() argument 576 add(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) add() argument 606 add_uint(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, uint64_t value) add_uint() argument 635 addp(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) addp() argument 649 sdiv(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) sdiv() argument 671 udiv(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) udiv() argument 691 mla(VectorFormat vform, LogicVRegister dst, const LogicVRegister& srca, const LogicVRegister& src1, const LogicVRegister& src2) mla() argument 703 mls(VectorFormat vform, LogicVRegister dst, const LogicVRegister& srca, const LogicVRegister& src1, const LogicVRegister& src2) mls() argument 715 mul(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) mul() argument 728 mul(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, int index) mul() argument 739 smulh(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) smulh() argument 770 umulh(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) umulh() argument 801 mla(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, int index) mla() argument 812 mls(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, int index) mls() argument 822 sqdmull(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, int index) sqdmull() argument 833 sqdmlal(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, int index) sqdmlal() argument 844 sqdmlsl(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, int index) sqdmlsl() argument 855 sqdmulh(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, int index) sqdmulh() argument 866 sqrdmulh(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, int index) sqrdmulh() argument 877 sqrdmlah(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, int index) sqrdmlah() argument 888 sqrdmlsh(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, int index) sqrdmlsh() argument 915 pmul(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) pmul() argument 931 pmull(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) pmull() argument 950 pmull2(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) pmull2() argument 968 sub(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) sub() argument 998 sub_uint(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, uint64_t value) sub_uint() argument 1027 and_(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) and_() argument 1039 orr(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) orr() argument 1051 orn(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) orn() argument 1063 eor(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) eor() argument 1075 bic(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) bic() argument 1087 bic(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src, uint64_t imm) bic() argument 1104 bif(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) bif() argument 1120 bit(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) bit() argument 1136 bsl(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src_mask, const LogicVRegister& src1, const LogicVRegister& src2) bsl() argument 1153 sminmax(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, bool max) sminmax() argument 1174 smax(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) smax() argument 1182 smin(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) smin() argument 1190 sminmaxp(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, bool max) sminmaxp() argument 1221 smaxp(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) smaxp() argument 1229 sminp(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) sminp() argument 1237 addp(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src) addp() argument 1249 addv(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src) addv() argument 1267 saddlv(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src) saddlv() argument 1284 uaddlv(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src) uaddlv() argument 1301 sminmaxv(VectorFormat vform, LogicVRegister dst, const LogicPRegister& pg, const LogicVRegister& src, bool max) sminmaxv() argument 1323 smaxv(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src) smaxv() argument 1331 sminv(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src) sminv() argument 1339 smaxv(VectorFormat vform, LogicVRegister dst, const LogicPRegister& pg, const LogicVRegister& src) smaxv() argument 1349 sminv(VectorFormat vform, LogicVRegister dst, const LogicPRegister& pg, const LogicVRegister& src) sminv() argument 1359 uminmax(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, bool max) uminmax() argument 1380 umax(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) umax() argument 1388 umin(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) umin() argument 1396 uminmaxp(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2, bool max) uminmaxp() argument 1427 umaxp(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) umaxp() argument 1435 uminp(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src1, const LogicVRegister& src2) uminp() argument 1443 uminmaxv(VectorFormat vform, LogicVRegister dst, const LogicPRegister& pg, const LogicVRegister& src, bool max) uminmaxv() argument 1465 umaxv(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src) umaxv() argument 1473 uminv(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src) uminv() argument 1481 umaxv(VectorFormat vform, LogicVRegister dst, const LogicPRegister& pg, const LogicVRegister& src) umaxv() argument 1491 uminv(VectorFormat vform, LogicVRegister dst, const LogicPRegister& pg, const LogicVRegister& src) uminv() argument 1501 shl(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src, int shift) shl() argument 1512 sshll(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src, int shift) sshll() argument 1524 sshll2(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src, int shift) sshll2() argument 1536 shll(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src) shll() argument 1544 shll2(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src) shll2() argument 1552 ushll(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src, int shift) ushll() argument 1564 ushll2(VectorFormat vform, LogicVRegister dst, const LogicVRegister& src, int shift) ushll2() argument 1589 compact(VectorFormat vform, LogicVRegister dst, const LogicPRegister& pg, const LogicVRegister& src) compact() argument 1605 splice(VectorFormat vform, LogicVRegister dst, const LogicPRegister& pg, const LogicVRegister& src1, const LogicVRegister& src2) splice() argument [all...] |
/third_party/mesa3d/src/util/format/ |
H A D | u_format_s3tc.c | 46 util_format_dxt1_rgb_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j) in util_format_dxt1_rgb_fetch_rgba_8unorm() argument 48 util_format_dxt1_rgb_fetch(0, src, i, j, dst); in util_format_dxt1_rgb_fetch_rgba_8unorm() 52 util_format_dxt1_rgba_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j) in util_format_dxt1_rgba_fetch_rgba_8unorm() argument 54 util_format_dxt1_rgba_fetch(0, src, i, j, dst); in util_format_dxt1_rgba_fetch_rgba_8unorm() 58 util_format_dxt3_rgba_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j) in util_format_dxt3_rgba_fetch_rgba_8unorm() argument 60 util_format_dxt3_rgba_fetch(0, src, i, j, dst); in util_format_dxt3_rgba_fetch_rgba_8unorm() 64 util_format_dxt5_rgba_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j) in util_format_dxt5_rgba_fetch_rgba_8unorm() argument 66 util_format_dxt5_rgba_fetch(0, src, i, j, dst); in util_format_dxt5_rgba_fetch_rgba_8unorm() 72 float *dst = in_dst; in util_format_dxt1_rgb_fetch_rgba() local 75 dst[ in util_format_dxt1_rgb_fetch_rgba() 84 float *dst = in_dst; util_format_dxt1_rgba_fetch_rgba() local 96 float *dst = in_dst; util_format_dxt3_rgba_fetch_rgba() local 108 float *dst = in_dst; util_format_dxt5_rgba_fetch_rgba() local 136 uint8_t *dst = dst_row + (y + j)*dst_stride/sizeof(*dst_row) + (x + i)*comps; util_format_dxtn_rgb_unpack_rgba_8unorm() local 212 float *dst = dst_row + (y + j)*dst_stride/sizeof(*dst_row) + (x + i)*4; util_format_dxtn_rgb_unpack_rgba_float() local 297 uint8_t *dst = dst_row; util_format_dxtn_pack_rgba_8unorm() local 374 uint8_t *dst = dst_row; util_format_dxtn_pack_rgba_float() local 447 util_format_dxt1_srgb_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j) util_format_dxt1_srgb_fetch_rgba_8unorm() argument 458 util_format_dxt1_srgba_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j) util_format_dxt1_srgba_fetch_rgba_8unorm() argument 469 util_format_dxt3_srgba_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j) util_format_dxt3_srgba_fetch_rgba_8unorm() argument 480 util_format_dxt5_srgba_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j) util_format_dxt5_srgba_fetch_rgba_8unorm() argument 493 float *dst = in_dst; util_format_dxt1_srgb_fetch_rgba() local 505 float *dst = in_dst; util_format_dxt1_srgba_fetch_rgba() local 517 float *dst = in_dst; util_format_dxt3_srgba_fetch_rgba() local 529 float *dst = in_dst; util_format_dxt5_srgba_fetch_rgba() local [all...] |
/third_party/alsa-lib/src/pcm/ |
H A D | plugin_ops.h | 231 conv_xxx1_xxx1: as_u8(dst) = as_u8c(src); goto CONV_END; variable 232 conv_xxx1_xx10: as_u16(dst) = (uint16_t)as_u8c(src) << 8; goto CONV_END; variable 233 conv_xxx1_xx01: as_u16(dst) = (uint16_t)as_u8c(src); goto CONV_END; variable 234 conv_xxx1_x100: as_u32(dst) = sx24((uint32_t)as_u8c(src) << 16); goto CONV_END; variable 235 conv_xxx1_001x: as_u32(dst) = sx24s((uint32_t)as_u8c(src) << 8); goto CONV_END; variable 236 conv_xxx1_1000: as_u32(dst) = (uint32_t)as_u8c(src) << 24; goto CONV_END; variable 237 conv_xxx1_0001: as_u32(dst) = (uint32_t)as_u8c(src); goto CONV_END; variable 238 conv_xxx1_xxx9: as_u8(dst) = as_u8c(src) ^ 0x80; goto CONV_END; variable 239 conv_xxx1_xx90: as_u16(dst) = (uint16_t)(as_u8c(src) ^ 0x80) << 8; goto CONV_END; variable 240 conv_xxx1_xx09: as_u16(dst) variable 241 conv_xxx1_x900: as_u32(dst) = sx24((uint32_t)(as_u8c(src) ^ 0x80) << 16); goto CONV_END; global() variable 242 conv_xxx1_009x: as_u32(dst) = sx24s((uint32_t)(as_u8c(src) ^ 0x80) << 8); goto CONV_END; global() variable 243 conv_xxx1_9000: as_u32(dst) = (uint32_t)(as_u8c(src) ^ 0x80) << 24; goto CONV_END; global() variable 244 conv_xxx1_0009: as_u32(dst) = (uint32_t)(as_u8c(src) ^ 0x80); goto CONV_END; global() variable 245 conv_xx12_xxx1: as_u8(dst) = as_u16c(src) >> 8; goto CONV_END; global() variable 246 conv_xx12_xx12: as_u16(dst) = as_u16c(src); goto CONV_END; global() variable 247 conv_xx12_xx21: as_u16(dst) = bswap_16(as_u16c(src)); goto CONV_END; global() variable 248 conv_xx12_x120: as_u32(dst) = sx24((uint32_t)as_u16c(src) << 8); goto CONV_END; global() variable 249 conv_xx12_021x: as_u32(dst) = sx24s((uint32_t)bswap_16(as_u16c(src)) << 8); goto CONV_END; global() variable 250 conv_xx12_1200: as_u32(dst) = (uint32_t)as_u16c(src) << 16; goto CONV_END; global() variable 251 conv_xx12_0021: as_u32(dst) = (uint32_t)bswap_16(as_u16c(src)); goto CONV_END; global() variable 252 conv_xx12_xxx9: as_u8(dst) = (as_u16c(src) >> 8) ^ 0x80; goto CONV_END; global() variable 253 conv_xx12_xx92: as_u16(dst) = as_u16c(src) ^ 0x8000; goto CONV_END; global() variable 254 conv_xx12_xx29: as_u16(dst) = bswap_16(as_u16c(src)) ^ 0x80; goto CONV_END; global() variable 255 conv_xx12_x920: as_u32(dst) = sx24((uint32_t)(as_u16c(src) ^ 0x8000) << 8); goto CONV_END; global() variable 256 conv_xx12_029x: as_u32(dst) = sx24s((uint32_t)(bswap_16(as_u16c(src)) ^ 0x80) << 8); goto CONV_END; global() variable 257 conv_xx12_9200: as_u32(dst) = (uint32_t)(as_u16c(src) ^ 0x8000) << 16; goto CONV_END; global() variable 258 conv_xx12_0029: as_u32(dst) = (uint32_t)(bswap_16(as_u16c(src)) ^ 0x80); goto CONV_END; global() variable 259 conv_xx12_xxx2: as_u8(dst) = as_u16c(src) & 0xff; goto CONV_END; global() variable 260 conv_xx12_x210: as_u32(dst) = sx24((uint32_t)bswap_16(as_u16c(src)) << 8); goto CONV_END; global() variable 261 conv_xx12_012x: as_u32(dst) = sx24s((uint32_t)as_u16c(src) << 8); goto CONV_END; global() variable 262 conv_xx12_2100: as_u32(dst) = (uint32_t)bswap_16(as_u16c(src)) << 16; goto CONV_END; global() variable 263 conv_xx12_0012: as_u32(dst) = (uint32_t)as_u16c(src); goto CONV_END; global() variable 264 conv_xx12_xxxA: as_u8(dst) = (as_u16c(src) ^ 0x80) & 0xff; goto CONV_END; global() variable 265 conv_xx12_xxA1: as_u16(dst) = bswap_16(as_u16c(src) ^ 0x80); goto CONV_END; global() variable 266 conv_xx12_xx1A: as_u16(dst) = as_u16c(src) ^ 0x80; goto CONV_END; global() variable 267 conv_xx12_xA10: as_u32(dst) = sx24((uint32_t)bswap_16(as_u16c(src) ^ 0x80) << 8); goto CONV_END; global() variable 268 conv_xx12_01Ax: as_u32(dst) = sx24s((uint32_t)(as_u16c(src) ^ 0x80) << 8); goto CONV_END; global() variable 269 conv_xx12_A100: as_u32(dst) = (uint32_t)bswap_16(as_u16c(src) ^ 0x80) << 16; goto CONV_END; global() variable 270 conv_xx12_001A: as_u32(dst) = (uint32_t)(as_u16c(src) ^ 0x80); goto CONV_END; global() variable 271 conv_x123_xxx1: as_u8(dst) = as_u32c(src) >> 16; goto CONV_END; global() variable 272 conv_x123_xx12: as_u16(dst) = as_u32c(src) >> 8; goto CONV_END; global() variable 273 conv_x123_xx21: as_u16(dst) = bswap_16(as_u32c(src) >> 8); goto CONV_END; global() variable 274 conv_x123_x123: as_u32(dst) = sx24(as_u32c(src)); goto CONV_END; global() variable 275 conv_x123_321x: as_u32(dst) = sx24s(bswap_32(as_u32c(src))); goto CONV_END; global() variable 276 conv_x123_1230: as_u32(dst) = as_u32c(src) << 8; goto CONV_END; global() variable 277 conv_x123_0321: as_u32(dst) = bswap_32(as_u32c(src)) >> 8; goto CONV_END; global() variable 278 conv_x123_xxx9: as_u8(dst) = (as_u32c(src) >> 16) ^ 0x80; goto CONV_END; global() variable 279 conv_x123_xx92: as_u16(dst) = (as_u32c(src) >> 8) ^ 0x8000; goto CONV_END; global() variable 280 conv_x123_xx29: as_u16(dst) = bswap_16(as_u32c(src) >> 8) ^ 0x80; goto CONV_END; global() variable 281 conv_x123_x923: as_u32(dst) = sx24(as_u32c(src) ^ 0x800000); goto CONV_END; global() variable 282 conv_x123_329x: as_u32(dst) = sx24s(bswap_32(as_u32c(src)) ^ 0x8000); goto CONV_END; global() variable 283 conv_x123_9230: as_u32(dst) = (as_u32c(src) ^ 0x800000) << 8; goto CONV_END; global() variable 284 conv_x123_0329: as_u32(dst) = (bswap_32(as_u32c(src)) >> 8) ^ 0x80; goto CONV_END; global() variable 285 conv_123x_xxx3: as_u8(dst) = (as_u32c(src) >> 8) & 0xff; goto CONV_END; global() variable 286 conv_123x_xx32: as_u16(dst) = bswap_16(as_u32c(src) >> 8); goto CONV_END; global() variable 287 conv_123x_xx23: as_u16(dst) = (as_u32c(src) >> 8) & 0xffff; goto CONV_END; global() variable 288 conv_123x_x321: as_u32(dst) = sx24(bswap_32(as_u32c(src))); goto CONV_END; global() variable 289 conv_123x_123x: as_u32(dst) = sx24s(as_u32c(src)); goto CONV_END; global() variable 290 conv_123x_3210: as_u32(dst) = bswap_32(as_u32c(src)) << 8; goto CONV_END; global() variable 291 conv_123x_0123: as_u32(dst) = as_u32c(src) >> 8; goto CONV_END; global() variable 292 conv_123x_xxxB: as_u8(dst) = ((as_u32c(src) >> 8) & 0xff) ^ 0x80; goto CONV_END; global() variable 293 conv_123x_xxB2: as_u16(dst) = bswap_16((as_u32c(src) >> 8) ^ 0x80); goto CONV_END; global() variable 294 conv_123x_xx2B: as_u16(dst) = ((as_u32c(src) >> 8) & 0xffff) ^ 0x80; goto CONV_END; global() variable 295 conv_123x_xB21: as_u32(dst) = sx24(bswap_32(as_u32c(src)) ^ 0x800000); goto CONV_END; global() variable 296 conv_123x_12Bx: as_u32(dst) = sx24s(as_u32c(src) ^ 0x8000); goto CONV_END; global() variable 297 conv_123x_B210: as_u32(dst) = bswap_32(as_u32c(src) ^ 0x8000) << 8; goto CONV_END; global() variable 298 conv_123x_012B: as_u32(dst) = (as_u32c(src) >> 8) ^ 0x80; goto CONV_END; global() variable 299 conv_1234_xxx1: as_u8(dst) = as_u32c(src) >> 24; goto CONV_END; global() variable 300 conv_1234_xx12: as_u16(dst) = as_u32c(src) >> 16; goto CONV_END; global() variable 301 conv_1234_xx21: as_u16(dst) = bswap_16(as_u32c(src) >> 16); goto CONV_END; global() variable 302 conv_1234_x123: as_u32(dst) = sx24(as_u32c(src) >> 8); goto CONV_END; global() variable 303 conv_1234_321x: as_u32(dst) = sx24s(bswap_32(as_u32c(src)) << 8); goto CONV_END; global() variable 304 conv_1234_1234: as_u32(dst) = as_u32c(src); goto CONV_END; global() variable 305 conv_1234_4321: as_u32(dst) = bswap_32(as_u32c(src)); goto CONV_END; global() variable 306 conv_1234_xxx9: as_u8(dst) = (as_u32c(src) >> 24) ^ 0x80; goto CONV_END; global() variable 307 conv_1234_xx92: as_u16(dst) = (as_u32c(src) >> 16) ^ 0x8000; goto CONV_END; global() variable 308 conv_1234_xx29: as_u16(dst) = bswap_16(as_u32c(src) >> 16) ^ 0x80; goto CONV_END; global() variable 309 conv_1234_x923: as_u32(dst) = sx24((as_u32c(src) >> 8) ^ 0x800000); goto CONV_END; global() variable 310 conv_1234_329x: as_u32(dst) = sx24s((bswap_32(as_u32c(src)) ^ 0x80) << 8); goto CONV_END; global() variable 311 conv_1234_9234: as_u32(dst) = as_u32c(src) ^ 0x80000000; goto CONV_END; global() variable 312 conv_1234_4329: as_u32(dst) = bswap_32(as_u32c(src)) ^ 0x80; goto CONV_END; global() variable 313 conv_1234_xxx4: as_u8(dst) = as_u32c(src) & 0xff; goto CONV_END; global() variable 314 conv_1234_xx43: as_u16(dst) = bswap_16(as_u32c(src)); goto CONV_END; global() variable 315 conv_1234_xx34: as_u16(dst) = as_u32c(src) & 0xffff; goto CONV_END; global() variable 316 conv_1234_x432: as_u32(dst) = sx24(bswap_32(as_u32c(src)) >> 8); goto CONV_END; global() variable 317 conv_1234_234x: as_u32(dst) = sx24s(as_u32c(src) << 8); goto CONV_END; global() variable 318 conv_1234_xxxC: as_u8(dst) = (as_u32c(src) & 0xff) ^ 0x80; goto CONV_END; global() variable 319 conv_1234_xxC3: as_u16(dst) = bswap_16(as_u32c(src) ^ 0x80); goto CONV_END; global() variable 320 conv_1234_xx3C: as_u16(dst) = (as_u32c(src) & 0xffff) ^ 0x80; goto CONV_END; global() variable 321 conv_1234_xC32: as_u32(dst) = sx24((bswap_32(as_u32c(src)) >> 8) ^ 0x800000); goto CONV_END; global() variable 322 conv_1234_23Cx: as_u32(dst) = sx24s((as_u32c(src) ^ 0x80) << 8); goto CONV_END; global() variable 323 conv_1234_C321: as_u32(dst) = bswap_32(as_u32c(src) ^ 0x80); goto CONV_END; global() variable 324 conv_1234_123C: as_u32(dst) = as_u32c(src) ^ 0x80; goto CONV_END; global() variable 445 put16_12_1: as_u8(dst) = sample >> 8; goto PUT16_END; global() variable 446 put16_12_9: as_u8(dst) = (sample >> 8) ^ 0x80; goto PUT16_END; global() variable 447 put16_12_12: as_u16(dst) = sample; goto PUT16_END; global() variable 448 put16_12_92: as_u16(dst) = sample ^ 0x8000; goto PUT16_END; global() variable 449 put16_12_21: as_u16(dst) = bswap_16(sample); goto PUT16_END; global() variable 450 put16_12_29: as_u16(dst) = bswap_16(sample) ^ 0x80; goto PUT16_END; global() variable 451 put16_12_0120: as_u32(dst) = sx24((uint32_t)sample << 8); goto PUT16_END; global() variable 452 put16_12_0920: as_u32(dst) = sx24((uint32_t)(sample ^ 0x8000) << 8); goto PUT16_END; global() variable 453 put16_12_0210: as_u32(dst) = sx24s((uint32_t)bswap_16(sample) << 8); goto PUT16_END; global() variable 454 put16_12_0290: as_u32(dst) = sx24s((uint32_t)(bswap_16(sample) ^ 0x80) << 8); goto PUT16_END; global() variable 455 put16_12_1200: as_u32(dst) = (uint32_t)sample << 16; goto PUT16_END; global() variable 456 put16_12_9200: as_u32(dst) = (uint32_t)(sample ^ 0x8000) << 16; goto PUT16_END; global() variable 457 put16_12_0021: as_u32(dst) = (uint32_t)bswap_16(sample); goto PUT16_END; global() variable 458 put16_12_0029: as_u32(dst) = (uint32_t)bswap_16(sample) ^ 0x80; goto PUT16_END; global() variable 459 put16_12_0120_20: as_u32(dst) = sx20((uint32_t)sample << 4); goto PUT16_END; global() variable 460 put16_12_0920_20: as_u32(dst) = sx20((uint32_t)(sample ^ 0x8000) << 4); goto PUT16_END; global() variable 461 put16_12_0210_20: as_u32(dst) = bswap_32(sx20((uint32_t)sample << 4)); goto PUT16_END; global() variable 462 put16_12_0290_20: as_u32(dst) = bswap_32(sx20((uint32_t)(sample ^ 0x8000) << 4)); goto PUT16_END; global() variable 614 put32_1234_1: as_u8(dst) = sample >> 24; goto PUT32_END; global() variable 615 put32_1234_9: as_u8(dst) = (sample >> 24) ^ 0x80; goto PUT32_END; global() variable 616 put32_1234_12: as_u16(dst) = sample >> 16; goto PUT32_END; global() variable 617 put32_1234_92: as_u16(dst) = (sample >> 16) ^ 0x8000; goto PUT32_END; global() variable 618 put32_1234_21: as_u16(dst) = bswap_16(sample >> 16); goto PUT32_END; global() variable 619 put32_1234_29: as_u16(dst) = bswap_16(sample >> 16) ^ 0x80; goto PUT32_END; global() variable 620 put32_1234_0123: as_u32(dst) = sx24(sample >> 8); goto PUT32_END; global() variable 621 put32_1234_0923: as_u32(dst) = sx24((sample >> 8) ^ 0x800000); goto PUT32_END; global() variable 622 put32_1234_3210: as_u32(dst) = sx24s(bswap_32(sample) << 8); goto PUT32_END; global() variable 623 put32_1234_3290: as_u32(dst) = sx24s((bswap_32(sample) ^ 0x80) << 8); goto PUT32_END; global() variable 624 put32_1234_1234: as_u32(dst) = sample; goto PUT32_END; global() variable 625 put32_1234_9234: as_u32(dst) = sample ^ 0x80000000; goto PUT32_END; global() variable 626 put32_1234_4321: as_u32(dst) = bswap_32(sample); goto PUT32_END; global() variable 627 put32_1234_4329: as_u32(dst) = bswap_32(sample) ^ 0x80; goto PUT32_END; global() variable 628 put32_1234_0123_20: as_u32(dst) = sx20(sample >> 12); goto PUT32_END; global() variable 629 put32_1234_0923_20: as_u32(dst) = sx20((sample ^ 0x80000000) >> 12); goto PUT32_END; global() variable 630 put32_1234_3210_20: as_u32(dst) = bswap_32(sx20(sample >> 12)); goto PUT32_END; global() variable 631 put32_1234_3290_20: as_u32(dst) = bswap_32(sx20((sample ^ 0x80000000) >> 12)); goto PUT32_END; global() variable 663 put32f_1234_1234F: as_float(dst) = (float_t)((int32_t)sample) / (float_t)0x80000000UL; goto PUT32F_END; global() variable 665 as_u32(dst) = bswap_32(tmp_float.i); goto PUT32F_END; global() variable 668 as_u64(dst) = bswap_64(tmp_double.l); goto PUT32F_END; global() variable [all...] |
/third_party/skia/src/core/ |
H A D | SkBlurMask.cpp | 38 static void merge_src_with_blur(uint8_t dst[], int dstRB, in merge_src_with_blur() argument 47 *dst = SkToU8(SkAlphaMul(*blur, SkAlpha255To256(*rowSrc))); in merge_src_with_blur() 48 ++dst; in merge_src_with_blur() 52 dst += dstRB; in merge_src_with_blur() 59 static void clamp_solid_with_orig(uint8_t dst[], int dstRowBytes, in clamp_solid_with_orig() argument 67 int d = *dst; in clamp_solid_with_orig() 68 *dst = SkToU8(s + d - SkMulDiv255Round(s, d)); in clamp_solid_with_orig() 69 ++dst; in clamp_solid_with_orig() 72 dst += dstRowBytes - sw; in clamp_solid_with_orig() 78 static void clamp_outer_with_orig(uint8_t dst[], in argument 105 BoxBlur(SkMask* dst, const SkMask& src, SkScalar sigma, SkBlurStyle style, SkIPoint* margin) BoxBlur() argument 395 BlurRect(SkScalar sigma, SkMask *dst, const SkRect &src, SkBlurStyle style, SkIPoint *margin, SkMask::CreateMode createMode) BlurRect() argument 493 BlurRRect(SkScalar sigma, SkMask *dst, const SkRRect &src, SkBlurStyle style, SkIPoint *margin, SkMask::CreateMode createMode) BlurRRect() argument 506 BlurGroundTruth(SkScalar sigma, SkMask* dst, const SkMask& src, SkBlurStyle style, SkIPoint* margin) BlurGroundTruth() argument [all...] |
/third_party/ffmpeg/libavresample/x86/ |
H A D | audio_convert_init.c | 28 void ff_conv_s16_to_s32_sse2(int16_t *dst, const int32_t *src, int len); 30 void ff_conv_s16_to_flt_sse2(float *dst, const int16_t *src, int len); 31 void ff_conv_s16_to_flt_sse4(float *dst, const int16_t *src, int len); 33 void ff_conv_s32_to_s16_mmx (int16_t *dst, const int32_t *src, int len); 34 void ff_conv_s32_to_s16_sse2(int16_t *dst, const int32_t *src, int len); 36 void ff_conv_s32_to_flt_sse2(float *dst, const int32_t *src, int len); 37 void ff_conv_s32_to_flt_avx (float *dst, const int32_t *src, int len); 39 void ff_conv_flt_to_s16_sse2(int16_t *dst, const float *src, int len); 41 void ff_conv_flt_to_s32_sse2(int32_t *dst, const float *src, int len); 42 void ff_conv_flt_to_s32_avx (int32_t *dst, cons [all...] |
/third_party/ffmpeg/libswscale/ |
H A D | rgb2rgb.h | 32 extern void (*rgb24tobgr32)(const uint8_t *src, uint8_t *dst, int src_size); 33 extern void (*rgb24tobgr16)(const uint8_t *src, uint8_t *dst, int src_size); 34 extern void (*rgb24tobgr15)(const uint8_t *src, uint8_t *dst, int src_size); 35 extern void (*rgb32tobgr24)(const uint8_t *src, uint8_t *dst, int src_size); 36 extern void (*rgb32to16)(const uint8_t *src, uint8_t *dst, int src_size); 37 extern void (*rgb32to15)(const uint8_t *src, uint8_t *dst, int src_size); 38 extern void (*rgb15to16)(const uint8_t *src, uint8_t *dst, int src_size); 39 extern void (*rgb15tobgr24)(const uint8_t *src, uint8_t *dst, int src_size); 40 extern void (*rgb15to32)(const uint8_t *src, uint8_t *dst, int src_size); 41 extern void (*rgb16to15)(const uint8_t *src, uint8_t *dst, in [all...] |
/third_party/selinux/libsepol/tests/ |
H A D | test-ebitmap.c | 325 ebitmap_t dst; in test_ebitmap_or() local 327 CU_ASSERT_EQUAL(ebitmap_or(&dst, &e1, &e1), 0); in test_ebitmap_or() 328 CU_ASSERT(ebitmap_cmp(&dst, &e1)); in test_ebitmap_or() 330 ebitmap_destroy(&dst); in test_ebitmap_or() 334 ebitmap_t dst; in test_ebitmap_or() local 336 CU_ASSERT_EQUAL(ebitmap_or(&dst, &e2, &e2), 0); in test_ebitmap_or() 337 CU_ASSERT(ebitmap_cmp(&dst, &e2)); in test_ebitmap_or() 339 ebitmap_destroy(&dst); in test_ebitmap_or() 343 ebitmap_t dst; in test_ebitmap_or() local 345 CU_ASSERT_EQUAL(ebitmap_or(&dst, in test_ebitmap_or() 352 ebitmap_t dst; test_ebitmap_or() local 361 ebitmap_t dst; test_ebitmap_or() local 370 ebitmap_t dst; test_ebitmap_or() local 427 ebitmap_t dst; test_ebitmap_and() local 436 ebitmap_t dst; test_ebitmap_and() local 445 ebitmap_t dst; test_ebitmap_and() local 454 ebitmap_t dst; test_ebitmap_and() local 463 ebitmap_t dst; test_ebitmap_and() local 472 ebitmap_t dst; test_ebitmap_and() local 481 ebitmap_t dst; test_ebitmap_and() local 490 ebitmap_t dst; test_ebitmap_and() local 509 ebitmap_t dst; test_ebitmap_and() local 577 ebitmap_t dst; test_ebitmap_xor() local 586 ebitmap_t dst; test_ebitmap_xor() local 595 ebitmap_t dst; test_ebitmap_xor() local 604 ebitmap_t dst; test_ebitmap_xor() local 613 ebitmap_t dst; test_ebitmap_xor() local 631 ebitmap_t dst; test_ebitmap_xor() local 714 ebitmap_t dst; test_ebitmap_not() local 724 ebitmap_t dst; test_ebitmap_not() local 759 ebitmap_t dst; test_ebitmap_not() local 768 ebitmap_t dst; test_ebitmap_not() local 780 ebitmap_t dst; test_ebitmap_not() local 828 ebitmap_t dst; test_ebitmap_andnot() local 837 ebitmap_t dst; test_ebitmap_andnot() local 846 ebitmap_t dst; test_ebitmap_andnot() local 855 ebitmap_t dst; test_ebitmap_andnot() local 864 ebitmap_t dst; test_ebitmap_andnot() local 873 ebitmap_t dst; test_ebitmap_andnot() local 882 ebitmap_t dst; test_ebitmap_andnot() local 891 ebitmap_t dst; test_ebitmap_andnot() local 930 ebitmap_t dst; test_ebitmap_andnot() local 939 ebitmap_t dst; test_ebitmap_andnot() local 948 ebitmap_t dst; test_ebitmap_andnot() local 960 ebitmap_t dst; test_ebitmap_andnot() local [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | vp3dsp.c | 50 static av_always_inline void idct(uint8_t *dst, ptrdiff_t stride, in idct() argument 147 dst[0 * stride] = av_clip_uint8((Gd + Cd) >> 4); in idct() 148 dst[7 * stride] = av_clip_uint8((Gd - Cd) >> 4); in idct() 150 dst[1 * stride] = av_clip_uint8((Add + Hd) >> 4); in idct() 151 dst[2 * stride] = av_clip_uint8((Add - Hd) >> 4); in idct() 153 dst[3 * stride] = av_clip_uint8((Ed + Dd) >> 4); in idct() 154 dst[4 * stride] = av_clip_uint8((Ed - Dd) >> 4); in idct() 156 dst[5 * stride] = av_clip_uint8((Fd + Bdd) >> 4); in idct() 157 dst[6 * stride] = av_clip_uint8((Fd - Bdd) >> 4); in idct() 159 dst[ in idct() 201 idct10(uint8_t *dst, ptrdiff_t stride, int16_t *input, int type) idct10() argument 431 put_no_rnd_pixels_l2(uint8_t *dst, const uint8_t *src1, const uint8_t *src2, ptrdiff_t stride, int h) put_no_rnd_pixels_l2() argument [all...] |