Home
last modified time | relevance | path

Searched refs:dst1 (Results 126 - 150 of 205) sorted by relevance

123456789

/kernel/linux/linux-5.10/tools/testing/selftests/net/
H A Dpmtu.sh907 dst1="${prefix4}.${b_r1}.1"
911 dst1="${prefix6}:${b_r1}::1"
927 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1800 ${dst1}
931 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})"
939 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})"
948 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})"
1805 dst1="${prefix4}.${b_r1}.1"
1810 dst1="${prefix6}:${b_r1}::1"
1827 run_cmd ${ns_a} ${ping} -q -M want -i 0.1 -w 1 -s 1800 ${dst1}
1831 pmtu_1="$(route_get_dst_pmtu_from_exception "${ns_a}" ${dst1})"
[all...]
/third_party/vixl/src/aarch64/
H A Dmacro-assembler-aarch64.cc2212 const CPURegister& dst1, in Emit()
2218 VIXL_ASSERT(!AreAliased(dst0, dst1, dst2, dst3)); in Emit()
2219 VIXL_ASSERT(AreSameSizeAndType(dst0, dst1, dst2, dst3)); in Emit()
2222 int count = 1 + dst1.IsValid() + dst2.IsValid() + dst3.IsValid(); in Emit()
2226 PopHelper(count, size, dst0, dst1, dst2, dst3); in Emit()
2278 const CPURegister& dst1 = registers.PopLowestIndex(); in Emit() local
2279 if (dst1.IsValid()) { in Emit()
2280 Ldp(dst0, dst1, MemOperand(StackPointer(), offset)); in Emit()
2367 const CPURegister& dst1, in Emit()
2376 VIXL_ASSERT(AreSameSizeAndType(dst0, dst1, dst in Emit()
2211 Pop(const CPURegister& dst0, const CPURegister& dst1, const CPURegister& dst2, const CPURegister& dst3) Emit() argument
2364 PopHelper(int count, int size, const CPURegister& dst0, const CPURegister& dst1, const CPURegister& dst2, const CPURegister& dst3) Emit() argument
2590 const CPURegister& dst1 = registers.PopLowestIndex(); Emit() local
[all...]
H A Dlogic-aarch64.cc225 LogicVRegister dst1, in ld2()
228 dst1.ClearForWrite(vform); in ld2()
233 LoadLane(dst1, vform, i, addr1); in ld2()
242 LogicVRegister dst1, in ld2()
246 dst1.ClearForWrite(vform); in ld2()
249 LoadLane(dst1, vform, index, addr1); in ld2()
255 LogicVRegister dst1, in ld2r()
258 dst1.ClearForWrite(vform); in ld2r()
262 LoadLane(dst1, vform, i, addr); in ld2r()
269 LogicVRegister dst1, in ld3()
224 ld2(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, uint64_t addr1) ld2() argument
241 ld2(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, int index, uint64_t addr1) ld2() argument
254 ld2r(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, uint64_t addr) ld2r() argument
268 ld3(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, LogicVRegister dst3, uint64_t addr1) ld3() argument
290 ld3(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, LogicVRegister dst3, int index, uint64_t addr1) ld3() argument
307 ld3r(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, LogicVRegister dst3, uint64_t addr) ld3r() argument
325 ld4(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, LogicVRegister dst3, LogicVRegister dst4, uint64_t addr1) ld4() argument
352 ld4(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, LogicVRegister dst3, LogicVRegister dst4, int index, uint64_t addr1) ld4() argument
373 ld4r(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, LogicVRegister dst3, LogicVRegister dst4, uint64_t addr) ld4r() argument
[all...]
/third_party/ffmpeg/libpostproc/
H A Dpostprocess_template.c1991 * Transpose and shift the given 8x8 Block into dst1 and dst2.
1993 static inline void RENAME(transpose1)(uint8_t *dst1, uint8_t *dst2, const uint8_t *src, int srcStride) in transpose1() argument
2070 :: "r" (src), "r" ((x86_reg)srcStride), "r" (dst1), "r" (dst2) in transpose1()
3103 #define REAL_SCALED_CPY(src1, src2, dst1, dst2) \ in blockCopy()
3122 "movq %%mm0, " #dst1 " \n\t"\ in blockCopy()
3126 #define REAL_SCALED_CPY(src1, src2, dst1, dst2) \ in blockCopy()
3149 "movq %%mm0, " #dst1 " \n\t"\ in blockCopy()
3153 #define SCALED_CPY(src1, src2, dst1, dst2)\ in blockCopy()
3154 REAL_SCALED_CPY(src1, src2, dst1, dst2) in blockCopy()
3183 #define REAL_SIMPLE_CPY(src1, src2, dst1, dst in blockCopy()
[all...]
/third_party/ffmpeg/libswscale/
H A Drgb2rgb.h138 extern void (*deinterleaveBytes)(const uint8_t *src, uint8_t *dst1, uint8_t *dst2,
143 uint8_t *dst1, uint8_t *dst2,
H A Dswscale_internal.h607 int16_t *dst1, int16_t *dst2, int dstWidth,
654 void (*chrConvertRange)(int16_t *dst1, int16_t *dst2, int width);
974 void ff_hcscale_fast_c(SwsContext *c, int16_t *dst1, int16_t *dst2,
983 void ff_hcscale_fast_mmxext(SwsContext *c, int16_t *dst1, int16_t *dst2,
H A Drgb2rgb.c91 void (*deinterleaveBytes)(const uint8_t *src, uint8_t *dst1, uint8_t *dst2,
95 uint8_t *dst1, uint8_t *dst2,
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_flatshade.c72 /** Copy all the color attributes from src vertex to dst0 & dst1 vertices */
75 struct vertex_header *dst1, in copy_flats2()
83 COPY_4FV(dst1->data[attr], src->data[attr]); in copy_flats2()
73 copy_flats2( struct draw_stage *stage, struct vertex_header *dst0, struct vertex_header *dst1, const struct vertex_header *src ) copy_flats2() argument
/third_party/skia/third_party/externals/libwebp/src/dsp/
H A Drescaler_msa.c61 dst0, dst1, dst2, dst3) do { \
69 PCKEV_W2_UW(out1, out0, out3, out2, dst0, dst1); \
88 dst0, dst1) do { \
99 PCKEV_B2_UB(out1, out0, out3, out2, dst0, dst1); \
H A Dlossless_enc_sse2.c352 const __m128i dst1 = _mm_unpackhi_epi16(in_lo, ff); in BundleColorMap_SSE2() local
357 _mm_storeu_si128((__m128i*)&dst[4], dst1); in BundleColorMap_SSE2()
372 const __m128i dst1 = _mm_unpackhi_epi16(pack, ff); in BundleColorMap_SSE2() local
374 _mm_storeu_si128((__m128i*)&dst[4], dst1); in BundleColorMap_SSE2()
/third_party/ffmpeg/libavcodec/mips/
H A Dvp8dsp_mmi.c1200 MMI_LWC1(%[ftmp6], %[dst1], 0x00) in ff_vp8_idct_add_mmi()
1220 MMI_SWC1(%[ftmp2], %[dst1], 0x00) in ff_vp8_idct_add_mmi()
1232 : [dst0]"r"(dst), [dst1]"r"(dst+stride), in ff_vp8_idct_add_mmi()
1286 MMI_LWC1(%[ftmp2], %[dst1], 0x00) in ff_vp8_idct_dc_add_mmi()
1303 MMI_SWC1(%[ftmp2], %[dst1], 0x00) in ff_vp8_idct_dc_add_mmi()
1311 : [dst0]"r"(dst), [dst1]"r"(dst+stride), in ff_vp8_idct_dc_add_mmi()
1580 mips_reg src1, dst1; in ff_put_vp8_epel16_h4_mmi() local
1615 PTR_ADDIU "%[dst1], %[dst], 0x08 \n\t" in ff_put_vp8_epel16_h4_mmi()
1617 PUT_VP8_EPEL8_H4_MMI(%[src1], %[dst1]) in ff_put_vp8_epel16_h4_mmi()
1630 [dst1]" in ff_put_vp8_epel16_h4_mmi()
1794 mips_reg src1, dst1; ff_put_vp8_epel16_h6_mmi() local
[all...]
H A Dvp9_idct_msa.c87 dst0, dst1, dst2, dst3) \
101 dst0, dst1, dst2, dst3); \
713 v16u8 dst0, dst1, dst2, dst3, dst4, dst5, dst6, dst7; in vp9_iadst8x8_colcol_addblk_msa() local
792 dst1 = LD_UB(dst + 1 * dst_stride); in vp9_iadst8x8_colcol_addblk_msa()
794 ILVR_B2_SH(zero, dst1, zero, dst6, res1, res6); in vp9_iadst8x8_colcol_addblk_msa()
1177 v16u8 dst0, dst1, dst2, dst3, tmp0, tmp1, tmp2, tmp3; in vp9_idct16x16_1_add_msa() local
1187 LD_UB4(dst, dst_stride, dst0, dst1, dst2, dst3); in vp9_idct16x16_1_add_msa()
1189 UNPCK_UB_SH(dst1, res1, res5); in vp9_idct16x16_1_add_msa()
1310 v16u8 dst0, dst1, dst2, dst3, dst4, dst5, dst6, dst7; in vp9_iadst16_1d_columns_addblk_msa() local
1364 dst1 in vp9_iadst16_1d_columns_addblk_msa()
1962 v16u8 dst0, dst1, dst2, dst3, tmp0, tmp1, tmp2, tmp3; vp9_idct32x32_1_add_msa() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Ddcadsp.h74 void (*dmix_sub_xch)(int32_t *dst1, int32_t *dst2,
H A Ddcadsp.c306 static void dmix_sub_xch_c(int32_t *dst1, int32_t *dst2, in dmix_sub_xch_c() argument
313 dst1[i] -= cs; in dmix_sub_xch_c()
/third_party/ffmpeg/libavcodec/loongarch/
H A Dvc1dsp_lasx.c443 uint8_t *dst1 = dest + stride; in ff_vc1_inv_trans_4x4_dc_lasx() local
444 uint8_t *dst2 = dst1 + stride; in ff_vc1_inv_trans_4x4_dc_lasx()
453 DUP4_ARG2(__lasx_xvldrepl_w, dest, 0, dst1, 0, dst2, 0, dst3, 0, in ff_vc1_inv_trans_4x4_dc_lasx()
461 __lasx_xvstelm_w(temp0, dst1, 0, 1); in ff_vc1_inv_trans_4x4_dc_lasx()
468 uint8_t *dst1 = dest + stride; in ff_vc1_inv_trans_4x4_lasx() local
469 uint8_t *dst2 = dst1 + stride; in ff_vc1_inv_trans_4x4_lasx()
505 DUP4_ARG2(__lasx_xvldrepl_w, dest, 0, dst1, 0, dst2, 0, dst3, 0, in ff_vc1_inv_trans_4x4_lasx()
517 __lasx_xvstelm_w(temp0, dst1, 0, 5); in ff_vc1_inv_trans_4x4_lasx()
H A Dvp9_idct_lsx.c643 __m128i dst0, dst1, dst2, dst3, tmp0, tmp1, tmp2, tmp3; in vp9_idct16x16_1_add_lsx() local
656 DUP2_ARG2(__lsx_vldx, dst, dst_stride, dst, stride2, dst1, dst2); in vp9_idct16x16_1_add_lsx()
659 VP9_UNPCK_UB_SH(dst1, res5, res1); in vp9_idct16x16_1_add_lsx()
1277 __m128i dst0, dst1, dst2, dst3, tmp0, tmp1, tmp2, tmp3; in vp9_idct32x32_1_add_lsx() local
1288 DUP2_ARG2(__lsx_vld, dst, 0, dst, 16, dst0, dst1); in vp9_idct32x32_1_add_lsx()
1291 DUP4_ARG2(__lsx_vilvl_b, zero, dst0, zero, dst1, zero, dst2, zero, dst3, in vp9_idct32x32_1_add_lsx()
1293 DUP4_ARG2(__lsx_vilvh_b, zero, dst0, zero, dst1, zero, dst2, zero, dst3, in vp9_idct32x32_1_add_lsx()
/kernel/linux/linux-5.10/net/xfrm/
H A Dxfrm_policy.c2565 struct dst_entry *dst1 = &xdst->u.dst; in xfrm_bundle_create() local
2578 * No need to do dst_clone() on dst1 in xfrm_bundle_create()
2594 dst_copy_metrics(dst1, dst); in xfrm_bundle_create()
2611 dst1->xfrm = xfrm[i]; in xfrm_bundle_create()
2614 dst1->obsolete = DST_OBSOLETE_FORCE_CHK; in xfrm_bundle_create()
2615 dst1->lastuse = now; in xfrm_bundle_create()
2617 dst1->input = dst_discard; in xfrm_bundle_create()
2622 dst1->output = afinfo->output; in xfrm_bundle_create()
2624 dst1->output = dst_discard_out; in xfrm_bundle_create()
2894 struct dst_entry *dst1; in xfrm_create_dummy_bundle() local
[all...]
/kernel/linux/linux-6.6/net/xfrm/
H A Dxfrm_policy.c2644 struct dst_entry *dst1 = &xdst->u.dst; in xfrm_bundle_create() local
2657 * No need to do dst_clone() on dst1 in xfrm_bundle_create()
2673 dst_copy_metrics(dst1, dst); in xfrm_bundle_create()
2694 dst1->xfrm = xfrm[i]; in xfrm_bundle_create()
2697 dst1->obsolete = DST_OBSOLETE_FORCE_CHK; in xfrm_bundle_create()
2698 dst1->lastuse = now; in xfrm_bundle_create()
2700 dst1->input = dst_discard; in xfrm_bundle_create()
2705 dst1->output = afinfo->output; in xfrm_bundle_create()
2707 dst1->output = dst_discard_out; in xfrm_bundle_create()
2977 struct dst_entry *dst1; in xfrm_create_dummy_bundle() local
[all...]
/third_party/node/deps/v8/src/execution/arm64/
H A Dsimulator-logic-arm64.cc366 void Simulator::ld2(VectorFormat vform, LogicVRegister dst1, in ld2() argument
368 dst1.ClearForWrite(vform); in ld2()
373 dst1.ReadUintFromMem(vform, i, addr1); in ld2()
380 void Simulator::ld2(VectorFormat vform, LogicVRegister dst1, in ld2() argument
382 dst1.ClearForWrite(vform); in ld2()
385 dst1.ReadUintFromMem(vform, index, addr1); in ld2()
389 void Simulator::ld2r(VectorFormat vform, LogicVRegister dst1, in ld2r() argument
391 dst1.ClearForWrite(vform); in ld2r()
395 dst1.ReadUintFromMem(vform, i, addr); in ld2r()
400 void Simulator::ld3(VectorFormat vform, LogicVRegister dst1, in ld3() argument
418 ld3(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, LogicVRegister dst3, int index, uint64_t addr1) ld3() argument
431 ld3r(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, LogicVRegister dst3, uint64_t addr) ld3r() argument
445 ld4(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, LogicVRegister dst3, LogicVRegister dst4, uint64_t addr1) ld4() argument
468 ld4(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, LogicVRegister dst3, LogicVRegister dst4, int index, uint64_t addr1) ld4() argument
484 ld4r(VectorFormat vform, LogicVRegister dst1, LogicVRegister dst2, LogicVRegister dst3, LogicVRegister dst4, uint64_t addr) ld4r() argument
[all...]
/third_party/ffmpeg/libavcodec/x86/
H A Dvp8dsp_loopfilter.asm198 DEFINE_ARGS dst1, mstride, stride, dst3, dst2
368 DEFINE_ARGS dst1, dst8, mstride, stride, dst2
370 DEFINE_ARGS dst1, mstride, stride, dst2, dst8
702 cglobal vp8_%1_loop_filter8uv_mbedge, 6, 6, 15, stack_size, dst1, dst8, stride, flimE, flimI, hevthr
704 cglobal vp8_%1_loop_filter16y_mbedge, 5, 5, 15, stack_size, dst1, stride, flimE, flimI, hevthr
754 DEFINE_ARGS dst1, dst8, mstride, stride, dst2
756 DEFINE_ARGS dst1, mstride, stride, dst2, dst8
/third_party/node/deps/v8/src/codegen/arm64/
H A Dmacro-assembler-arm64-inl.h1178 void TurboAssembler::Pop(const CPURegister& dst0, const CPURegister& dst1, in Pop() argument
1182 DCHECK(!AreAliased(dst0, dst1, dst2, dst3)); in Pop()
1183 DCHECK(AreSameSizeAndType(dst0, dst1, dst2, dst3)); in Pop()
1186 int count = 1 + dst1.is_valid() + dst2.is_valid() + dst3.is_valid(); in Pop()
1190 PopHelper(count, size, dst0, dst1, dst2, dst3); in Pop()
1192 DCHECK_IMPLIES((lr_mode == kAuthLR), ((dst0 == lr) || (dst1 == lr) || in Pop()
1194 DCHECK_IMPLIES((lr_mode == kDontLoadLR), ((dst0 != lr) && (dst1 != lr)) && in Pop()
/third_party/ffmpeg/libavfilter/
H A Dvf_waveform.c753 uint16_t *dst0, *dst1; in lowpass16() local
759 dst1 = (uint16_t *)(out->data[2]) + offset_y * dst_linesize + offset_x; in lowpass16()
764 dst1[x] = t1; in lowpass16()
770 dst1 += dst_linesize; in lowpass16()
777 uint16_t *dst0, *dst1; in lowpass16() local
783 dst1 = (uint16_t *)(out->data[2]) + (offset_y + sliceh_start * step) * dst_linesize + offset_x; in lowpass16()
788 dst1[x] = t1; in lowpass16()
794 dst1 += dst_linesize; in lowpass16()
890 uint8_t *dst0, *dst1; in lowpass() local
896 dst1 in lowpass()
914 uint8_t *dst0, *dst1; lowpass() local
[all...]
/third_party/ffmpeg/libswscale/x86/
H A Dswscale_template.c61 #define YSCALEYUV2PACKEDX_YA(offset,coeff,src1,src2,dst1,dst2) \
64 "movq "VROUNDER_OFFSET"(%0), "#dst1" \n\t"\
65 "movq "#dst1", "#dst2" \n\t"\
75 "paddw "#src1", "#dst1" \n\t"\
/third_party/mesa3d/src/amd/vulkan/
H A Dradv_meta_blit.c439 flip_coords(unsigned *src0, unsigned *src1, unsigned *dst0, unsigned *dst1) in flip_coords() argument
449 if (*dst0 > *dst1) { in flip_coords()
451 *dst0 = *dst1; in flip_coords()
452 *dst1 = tmp; in flip_coords()
/third_party/mesa3d/src/gallium/drivers/iris/
H A Diris_blit.c119 * \param dst1 the opposite dst rect coordinate (for example dst_x1)
128 float *src, float *dst0, float *dst1, in clip_coordinates()
146 *dst1 -= clipped_dst1 * mult; in clip_coordinates()
127 clip_coordinates(bool mirror, float *src, float *dst0, float *dst1, float clipped_dst0, float clipped_dst1, float scale, bool is_left_or_bottom) clip_coordinates() argument

Completed in 59 milliseconds

123456789