/third_party/mesa3d/src/util/format/ |
H A D | u_format_zs.c | 147 const uint16_t *src = (const uint16_t *)src_row; in util_format_z16_unorm_unpack_z_float() local 149 *dst++ = z16_unorm_to_z32_float(*src++); in util_format_z16_unorm_unpack_z_float() 163 const float *src = src_row; in util_format_z16_unorm_pack_z_float() local 166 *dst++ = z32_float_to_z16_unorm(*src++); in util_format_z16_unorm_pack_z_float() 181 const uint16_t *src = (const uint16_t *)src_row; in util_format_z16_unorm_unpack_z_32unorm() local 183 *dst++ = z16_unorm_to_z32_unorm(*src++); in util_format_z16_unorm_unpack_z_32unorm() 197 const uint32_t *src = src_row; in util_format_z16_unorm_pack_z_32unorm() local 200 *dst++ = z32_unorm_to_z16_unorm(*src++); in util_format_z16_unorm_pack_z_32unorm() 215 const uint32_t *src = (const uint32_t *)src_row; in util_format_z32_unorm_unpack_z_float() local 217 *dst++ = z32_unorm_to_z32_float(*src in util_format_z32_unorm_unpack_z_float() 231 const float *src = src_row; util_format_z32_unorm_pack_z_float() local 301 const float *src = (const float *)src_row; util_format_z32_float_unpack_z_32unorm() local 318 const uint32_t *src = src_row; util_format_z32_float_pack_z_32unorm() local 384 const uint32_t *src = (const uint32_t *)src_row; util_format_z24_unorm_s8_uint_unpack_z_float() local 400 const float *src = src_row; util_format_z24_unorm_s8_uint_pack_z_float() local 422 const uint32_t *src = (const uint32_t *)src_row; util_format_z24_unorm_s8_uint_unpack_z24() local 438 const uint32_t *src = (const uint32_t *)src_row; util_format_z24_unorm_s8_uint_pack_z24() local 460 const uint32_t *src = (const uint32_t *)src_row; util_format_z24_unorm_s8_uint_unpack_z_32unorm() local 476 const uint32_t *src = src_row; util_format_z24_unorm_s8_uint_pack_z_32unorm() local 497 const uint32_t *src = (const uint32_t *)src_row; util_format_z24_unorm_s8_uint_unpack_s_8uint() local 513 const uint8_t *src = src_row; util_format_z24_unorm_s8_uint_pack_s_8uint() local 574 const uint32_t *src = (const uint32_t *)src_row; util_format_s8_uint_z24_unorm_unpack_z_float() local 590 const float *src = src_row; util_format_s8_uint_z24_unorm_pack_z_float() local 611 const uint32_t *src = (const uint32_t *)src_row; util_format_s8_uint_z24_unorm_unpack_z_32unorm() local 628 const uint32_t *src = src_row; util_format_s8_uint_z24_unorm_pack_z_32unorm() local 649 const uint32_t *src = (const uint32_t *)src_row; util_format_s8_uint_z24_unorm_unpack_s_8uint() local 665 const uint8_t *src = src_row; util_format_s8_uint_z24_unorm_pack_s_8uint() local 686 const uint32_t *src = (const uint32_t *)src_row; util_format_z24x8_unorm_unpack_z_float() local 702 const float *src = src_row; util_format_z24x8_unorm_pack_z_float() local 720 const uint32_t *src = (const uint32_t *)src_row; util_format_z24x8_unorm_unpack_z_32unorm() local 736 const uint32_t *src = src_row; util_format_z24x8_unorm_pack_z_32unorm() local 754 const uint32_t *src = (uint32_t *)src_row; util_format_x8z24_unorm_unpack_z_float() local 770 const float *src = src_row; util_format_x8z24_unorm_pack_z_float() local 788 const uint32_t *src = (const uint32_t *)src_row; util_format_x8z24_unorm_unpack_z_32unorm() local 804 const uint32_t *src = src_row; util_format_x8z24_unorm_pack_z_32unorm() local 822 const float *src = (const float *)src_row; util_format_z32_float_s8x24_uint_unpack_z_float() local 840 const float *src = src_row; util_format_z32_float_s8x24_uint_pack_z_float() local 860 const float *src = (const float *)src_row; util_format_z32_float_s8x24_uint_unpack_z_32unorm() local 878 const uint32_t *src = src_row; util_format_z32_float_s8x24_uint_pack_z_32unorm() local 897 const uint32_t *src = (uint32_t *)(src_row + 4); util_format_z32_float_s8x24_uint_unpack_s_8uint() local 915 const uint8_t *src = src_row; util_format_z32_float_s8x24_uint_pack_s_8uint() local [all...] |
/kernel/linux/linux-5.10/arch/mips/lib/ |
H A D | memcpy.S | 41 #define src a1 define 47 * memcpy copies len bytes from src to dst and sets v0 to dst. 49 * - src and dst don't overlap 50 * - src is readable 54 * __copy_user copies up to len bytes from src to dst and sets a2 (len) to 56 * __copy_user assumes that src and dst don't overlap, and that the call is 59 * - src is readable (no exceptions when reading src) 78 * 2- src_entry <= src < AT, and 79 * 3- (dst - src) [all...] |
/kernel/linux/linux-6.6/arch/mips/lib/ |
H A D | memcpy.S | 41 #define src a1 define 47 * memcpy copies len bytes from src to dst and sets v0 to dst. 49 * - src and dst don't overlap 50 * - src is readable 54 * __copy_user copies up to len bytes from src to dst and sets a2 (len) to 56 * __copy_user assumes that src and dst don't overlap, and that the call is 59 * - src is readable (no exceptions when reading src) 78 * 2- src_entry <= src < AT, and 79 * 3- (dst - src) [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceAssemblerX8664.h | 1 //===- subzero/src/IceAssemblerX8664.h - Assembler for x86-64 ---*- C++ -*-===// 494 void mov(Type Ty, GPRRegister dst, const Immediate &src); 495 void mov(Type Ty, GPRRegister dst, GPRRegister src); 496 void mov(Type Ty, GPRRegister dst, const AsmAddress &src); 497 void mov(Type Ty, const AsmAddress &dst, GPRRegister src); 502 void movzx(Type Ty, GPRRegister dst, GPRRegister src); 503 void movzx(Type Ty, GPRRegister dst, const AsmAddress &src); 504 void movsx(Type Ty, GPRRegister dst, GPRRegister src); 505 void movsx(Type Ty, GPRRegister dst, const AsmAddress &src); 507 void lea(Type Ty, GPRRegister dst, const AsmAddress &src); [all...] |
/third_party/protobuf/csharp/compatibility_tests/v3.0.0/ |
H A D | test.sh | 5 $1 -Iprotos/src -I../../../src/ --csharp_out=src/Google.Protobuf.Test \ 7 protos/src/google/protobuf/unittest_import_proto3.proto \ 8 protos/src/google/protobuf/unittest_import_public_proto3.proto \ 9 protos/src/google/protobuf/unittest_well_known_types.proto 11 $1 -Iprotos/csharp --csharp_out=src/Google.Protobuf.Test \ 15 $2 -Iprotos/src --csharp_out=src/Google.Protobuf.Test \ 17 protos/src/googl [all...] |
/third_party/jerryscript/tests/jerry/ |
H A D | regression-test-issue-1556.js | 16 var src = "(function ("; variable 18 src += "a" + i + ", "; 19 src += "b) { var c = 1; })()"; 21 eval(src); 24 var src = "(function ("; variable 26 src += "a" + i + ", "; 27 src += "b) { })()"; 30 eval(src); 38 var src = "(function () {"; variable 40 src [all...] |
/third_party/node/deps/v8/src/codegen/shared-ia32-x64/ |
H A D | macro-assembler-shared-ia32-x64.cc | 5 #include "src/codegen/shared-ia32-x64/macro-assembler-shared-ia32-x64.h" 7 #include "src/codegen/assembler.h" 8 #include "src/codegen/cpu-features.h" 9 #include "src/codegen/register.h" 12 #include "src/codegen/ia32/register-ia32.h" 14 #include "src/codegen/x64/register-x64.h" 20 // should call I8x16Splat |src| being Register. 30 void SharedTurboAssembler::Move(Register dst, uint32_t src) { in Move() argument 33 mov(dst, Immediate(src)); in Move() 35 movl(dst, Immediate(src)); in Move() 41 Move(Register dst, Register src) Move() argument 54 Add(Register dst, Immediate src) Add() argument 65 And(Register dst, Immediate src) And() argument 132 F64x2ExtractLane(DoubleRegister dst, XMMRegister src, uint8_t lane) F64x2ExtractLane() argument 151 F64x2ReplaceLane(XMMRegister dst, XMMRegister src, DoubleRegister rep, uint8_t lane) F64x2ReplaceLane() argument 185 XMMRegister src = dst == lhs ? rhs : lhs; F32x4Min() local 214 XMMRegister src = dst == lhs ? rhs : lhs; F32x4Max() local 256 XMMRegister src = dst == lhs ? rhs : lhs; F64x2Min() local 295 XMMRegister src = dst == lhs ? rhs : lhs; F64x2Max() local 314 F32x4Splat(XMMRegister dst, DoubleRegister src) F32x4Splat() argument 332 F32x4ExtractLane(FloatRegister dst, XMMRegister src, uint8_t lane) F32x4ExtractLane() argument 354 S128Store32Lane(Operand dst, XMMRegister src, uint8_t laneidx) S128Store32Lane() argument 366 I8x16SplatPreAvx2(XMMRegister dst, Op src, XMMRegister scratch) I8x16SplatPreAvx2() argument 376 I8x16Splat(XMMRegister dst, Register src, XMMRegister scratch) I8x16Splat() argument 388 I8x16Splat(XMMRegister dst, Operand src, XMMRegister scratch) I8x16Splat() argument 528 I16x8SplatPreAvx2(XMMRegister dst, Op src) I16x8SplatPreAvx2() argument 535 I16x8Splat(XMMRegister dst, Register src) I16x8Splat() argument 546 I16x8Splat(XMMRegister dst, Operand src) I16x8Splat() argument 640 I16x8SConvertI8x16High(XMMRegister dst, XMMRegister src) I16x8SConvertI8x16High() argument 663 I16x8UConvertI8x16High(XMMRegister dst, XMMRegister src, XMMRegister scratch) I16x8UConvertI8x16High() argument 707 I32x4ExtAddPairwiseI16x8U(XMMRegister dst, XMMRegister src, XMMRegister tmp) I32x4ExtAddPairwiseI16x8U() argument 769 I32x4SConvertI16x8High(XMMRegister dst, XMMRegister src) I32x4SConvertI16x8High() argument 792 I32x4UConvertI16x8High(XMMRegister dst, XMMRegister src, XMMRegister scratch) I32x4UConvertI16x8High() argument 818 I64x2Neg(XMMRegister dst, XMMRegister src, XMMRegister scratch) I64x2Neg() argument 835 I64x2Abs(XMMRegister dst, XMMRegister src, XMMRegister scratch) I64x2Abs() argument 925 I64x2ShrS(XMMRegister dst, XMMRegister src, uint8_t shift, XMMRegister xmm_tmp) I64x2ShrS() argument 958 I64x2ShrS(XMMRegister dst, XMMRegister src, Register shift, XMMRegister xmm_tmp, XMMRegister xmm_shift, Register tmp_shift) I64x2ShrS() argument 1069 I64x2SConvertI32x4High(XMMRegister dst, XMMRegister src) I64x2SConvertI32x4High() argument 1087 I64x2UConvertI32x4High(XMMRegister dst, XMMRegister src, XMMRegister scratch) I64x2UConvertI32x4High() argument 1109 S128Not(XMMRegister dst, XMMRegister src, XMMRegister scratch) S128Not() argument 1142 S128Load8Splat(XMMRegister dst, Operand src, XMMRegister scratch) S128Load8Splat() argument 1165 S128Load16Splat(XMMRegister dst, Operand src, XMMRegister scratch) S128Load16Splat() argument 1187 S128Load32Splat(XMMRegister dst, Operand src) S128Load32Splat() argument 1201 S128Store64Lane(Operand dst, XMMRegister src, uint8_t laneidx) S128Store64Lane() argument [all...] |
/kernel/linux/linux-5.10/crypto/ |
H A D | pcbc.c | 25 u8 *src = walk->src.virt.addr; in crypto_pcbc_encrypt_segment() local 30 crypto_xor(iv, src, bsize); in crypto_pcbc_encrypt_segment() 32 crypto_xor_cpy(iv, dst, src, bsize); in crypto_pcbc_encrypt_segment() 34 src += bsize; in crypto_pcbc_encrypt_segment() 47 u8 *src = walk->src.virt.addr; in crypto_pcbc_encrypt_inplace() local 52 memcpy(tmpbuf, src, bsize); in crypto_pcbc_encrypt_inplace() 53 crypto_xor(iv, src, bsize); in crypto_pcbc_encrypt_inplace() 54 crypto_cipher_encrypt_one(tfm, src, i in crypto_pcbc_encrypt_inplace() 92 u8 *src = walk->src.virt.addr; crypto_pcbc_decrypt_segment() local 114 u8 *src = walk->src.virt.addr; crypto_pcbc_decrypt_inplace() local [all...] |
/kernel/linux/linux-6.6/crypto/ |
H A D | pcbc.c | 26 u8 *src = walk->src.virt.addr; in crypto_pcbc_encrypt_segment() local 31 crypto_xor(iv, src, bsize); in crypto_pcbc_encrypt_segment() 33 crypto_xor_cpy(iv, dst, src, bsize); in crypto_pcbc_encrypt_segment() 35 src += bsize; in crypto_pcbc_encrypt_segment() 48 u8 *src = walk->src.virt.addr; in crypto_pcbc_encrypt_inplace() local 53 memcpy(tmpbuf, src, bsize); in crypto_pcbc_encrypt_inplace() 54 crypto_xor(iv, src, bsize); in crypto_pcbc_encrypt_inplace() 55 crypto_cipher_encrypt_one(tfm, src, i in crypto_pcbc_encrypt_inplace() 93 u8 *src = walk->src.virt.addr; crypto_pcbc_decrypt_segment() local 115 u8 *src = walk->src.virt.addr; crypto_pcbc_decrypt_inplace() local [all...] |
/kernel/linux/linux-6.6/lib/zstd/compress/ |
H A D | zstd_lazy.h | 34 void const* src, size_t srcSize); 37 void const* src, size_t srcSize); 40 void const* src, size_t srcSize); 43 void const* src, size_t srcSize); 46 void const* src, size_t srcSize); 49 void const* src, size_t srcSize); 52 void const* src, size_t srcSize); 56 void const* src, size_t srcSize); 59 void const* src, size_t srcSize); 62 void const* src, size_ [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_opt_memcpy.c | 58 if (!nir_src_is_const(cpy->src[2])) in opt_memcpy_deref_cast() 64 if (nir_src_as_uint(cpy->src[2]) < (uint64_t)parent_type_size) in opt_memcpy_deref_cast() 129 nir_deref_instr *dst = nir_src_as_deref(cpy->src[0]); in try_lower_memcpy() 130 nir_deref_instr *src = nir_src_as_deref(cpy->src[1]); in try_lower_memcpy() local 133 if (dst == src) { in try_lower_memcpy() 138 if (!nir_src_is_const(cpy->src[2])) in try_lower_memcpy() 141 uint64_t size = nir_src_as_uint(cpy->src[2]); in try_lower_memcpy() 147 if (glsl_type_is_vector_or_scalar(src->type) && in try_lower_memcpy() 150 glsl_get_explicit_size(src in try_lower_memcpy() [all...] |
H A D | nir_opt_offsets.c | 47 !alu->src[0].src.is_ssa || in try_extract_const_addition() 48 !alu->src[1].src.is_ssa || in try_extract_const_addition() 49 alu->src[0].negate || alu->src[0].abs || in try_extract_const_addition() 50 alu->src[1].negate || alu->src[1].abs) in try_extract_const_addition() 53 nir_ssa_scalar src[2] = { in try_extract_const_addition() 54 {alu->src[ in try_extract_const_addition() [all...] |
/third_party/skia/src/core/ |
H A D | SkLineClipper.cpp | 9 #include "src/core/SkLineClipper.h" 30 static SkScalar sect_with_horizontal(const SkPoint src[2], SkScalar Y) { in sect_with_horizontal() argument 31 SkScalar dy = src[1].fY - src[0].fY; in sect_with_horizontal() 33 return SkScalarAve(src[0].fX, src[1].fX); in sect_with_horizontal() 37 double X0 = src[0].fX; in sect_with_horizontal() 38 double Y0 = src[0].fY; in sect_with_horizontal() 39 double X1 = src[1].fX; in sect_with_horizontal() 40 double Y1 = src[ in sect_with_horizontal() 51 sect_with_vertical(const SkPoint src[2], SkScalar X) sect_with_vertical() argument 67 sect_clamp_with_vertical(const SkPoint src[2], SkScalar x) sect_clamp_with_vertical() argument 90 IntersectLine(const SkPoint src[2], const SkRect& clip, SkPoint dst[2]) IntersectLine() argument [all...] |
/third_party/mesa3d/src/gallium/auxiliary/nir/ |
H A D | nir_to_tgsi.c | 44 struct ureg_src src[4]; member 141 .src = { src0, src1, src2, src3 }, in ntt_insn() 217 * Interprets a nir_load_const used as a NIR src as a uint. 229 ntt_src_as_uint(struct ntt_compile *c, nir_src src) in ntt_src_as_uint() argument 231 uint32_t val = nir_src_as_uint(src); in ntt_src_as_uint() 311 if (insn->src[i].File != TGSI_FILE_TEMPORARY) in ntt_live_reg_setup_def_use() 313 int index = insn->src[i].Index; in ntt_live_reg_setup_def_use() 317 insn->src[i].SwizzleX, in ntt_live_reg_setup_def_use() 318 insn->src[i].SwizzleY, in ntt_live_reg_setup_def_use() 319 insn->src[ in ntt_live_reg_setup_def_use() 541 ntt_extract_const_src_offset(nir_src *src) ntt_extract_const_src_offset() argument 1144 ntt_get_src(struct ntt_compile *c, nir_src src) ntt_get_src() argument 1169 nir_alu_src src = instr->src[i]; ntt_get_alu_src() local 1210 ntt_swizzle_for_write_mask(struct ureg_src src, uint32_t write_mask) ntt_swizzle_for_write_mask() argument 1267 ntt_store_def(struct ntt_compile *c, nir_ssa_def *def, struct ureg_src src) ntt_store_def() argument 1284 ntt_store(struct ntt_compile *c, nir_dest *dest, struct ureg_src src) ntt_store() argument 1320 struct ureg_src src[4]; ntt_emit_alu() local 1727 ntt_ureg_src_indirect(struct ntt_compile *c, struct ureg_src usrc, nir_src src, int addr_reg) ntt_ureg_src_indirect() argument 1739 ntt_ureg_dst_indirect(struct ntt_compile *c, struct ureg_dst dst, nir_src src) ntt_ureg_dst_indirect() argument 1751 ntt_ureg_src_dimension_indirect(struct ntt_compile *c, struct ureg_src usrc, nir_src src) ntt_ureg_src_dimension_indirect() argument 1766 ntt_ureg_dst_dimension_indirect(struct ntt_compile *c, struct ureg_dst udst, nir_src src) ntt_ureg_dst_dimension_indirect() argument 1781 ntt_shift_by_frac(struct ureg_src src, unsigned frac, unsigned num_components) ntt_shift_by_frac() argument 1797 struct ureg_src src = ureg_src_register(TGSI_FILE_CONSTANT, 0); ntt_emit_load_ubo() local 1881 struct ureg_src src[4]; ntt_emit_mem() local 1898 nir_src src = instr->src[0]; ntt_emit_mem() local 2249 struct ureg_src src = ntt_get_src(c, instr->src[0]); ntt_emit_store_output() local [all...] |
/kernel/linux/linux-6.6/arch/x86/crypto/ |
H A D | sm4_aesni_avx_glue.c | 23 const u8 *src, int nblocks); 25 const u8 *src, int nblocks); 27 const u8 *src, u8 *iv); 29 const u8 *src, u8 *iv); 31 const u8 *src, u8 *iv); 50 const u8 *src = walk.src.virt.addr; in ecb_do_crypt() local 55 sm4_aesni_avx_crypt8(rkey, dst, src, 8); in ecb_do_crypt() 57 src += SM4_CRYPT8_BLOCK_SIZE; in ecb_do_crypt() 62 sm4_aesni_avx_crypt4(rkey, dst, src, nblock in ecb_do_crypt() 105 const u8 *src = walk.src.virt.addr; sm4_cbc_encrypt() local 138 const u8 *src = walk.src.virt.addr; sm4_avx_cbc_decrypt() local 204 const u8 *src = walk.src.virt.addr; sm4_cfb_encrypt() local 244 const u8 *src = walk.src.virt.addr; sm4_avx_cfb_decrypt() local 313 const u8 *src = walk.src.virt.addr; sm4_avx_ctr_crypt() local [all...] |
H A D | camellia.h | 27 asmlinkage void __camellia_enc_blk(const void *ctx, u8 *dst, const u8 *src, 29 asmlinkage void camellia_dec_blk(const void *ctx, u8 *dst, const u8 *src); 32 asmlinkage void __camellia_enc_blk_2way(const void *ctx, u8 *dst, const u8 *src, 34 asmlinkage void camellia_dec_blk_2way(const void *ctx, u8 *dst, const u8 *src); 37 asmlinkage void camellia_ecb_enc_16way(const void *ctx, u8 *dst, const u8 *src); 38 asmlinkage void camellia_ecb_dec_16way(const void *ctx, u8 *dst, const u8 *src); 40 asmlinkage void camellia_cbc_dec_16way(const void *ctx, u8 *dst, const u8 *src); 42 static inline void camellia_enc_blk(const void *ctx, u8 *dst, const u8 *src) in camellia_enc_blk() argument 44 __camellia_enc_blk(ctx, dst, src, false); in camellia_enc_blk() 47 static inline void camellia_enc_blk_xor(const void *ctx, u8 *dst, const u8 *src) in camellia_enc_blk_xor() argument 52 camellia_enc_blk_2way(const void *ctx, u8 *dst, const u8 *src) camellia_enc_blk_2way() argument 58 camellia_enc_blk_xor_2way(const void *ctx, u8 *dst, const u8 *src) camellia_enc_blk_xor_2way() argument [all...] |
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | picture_rescale_enc.c | 14 #include "src/webp/encode.h" 21 #include "src/enc/vp8i_enc.h" 22 #include "src/utils/rescaler_utils.h" 23 #include "src/utils/utils.h" 27 // Grab the 'specs' (writer, *opaque, width, height...) from 'src' and copy them 29 static void PictureGrabSpecs(const WebPPicture* const src, in PictureGrabSpecs() argument 31 assert(src != NULL && dst != NULL); in PictureGrabSpecs() 32 *dst = *src; in PictureGrabSpecs() 59 int WebPPictureCopy(const WebPPicture* src, WebPPicture* dst) { in WebPPictureCopy() argument 60 if (src in WebPPictureCopy() 93 WebPPictureView(const WebPPicture* src, int left, int top, int width, int height, WebPPicture* dst) WebPPictureView() argument 154 const uint8_t* const src = WebPPictureCrop() local 167 RescalePlane(const uint8_t* src, int src_width, int src_height, int src_stride, uint8_t* dst, int dst_width, int dst_height, int dst_stride, rescaler_t* const work, int num_channels) RescalePlane() argument 277 WebPPictureCopy(const WebPPicture* src, WebPPicture* dst) WebPPictureCopy() argument 288 WebPPictureView(const WebPPicture* src, int left, int top, int width, int height, WebPPicture* dst) WebPPictureView() argument [all...] |
/third_party/typescript/tests/baselines/reference/tsbuildWatch/reexport/ |
H A D | Reports-errors-correctly.js | 2 //// [/user/username/projects/reexport/src/tsconfig.json]
10 //// [/user/username/projects/reexport/src/main/tsconfig.json]
21 //// [/user/username/projects/reexport/src/main/index.ts]
29 //// [/user/username/projects/reexport/src/pure/tsconfig.json]
40 //// [/user/username/projects/reexport/src/pure/index.ts]
44 //// [/user/username/projects/reexport/src/pure/session.ts]
67 /a/lib/tsc.js -b -w -verbose src
73 * src/pure/tsconfig.json
74 * src/main/tsconfig.json
75 * src/tsconfi [all...] |
/kernel/linux/linux-5.10/drivers/misc/vmw_vmci/ |
H A D | vmci_route.c | 20 int vmci_route(struct vmci_handle *src, in vmci_route() argument 64 if (VMCI_HOST_CONTEXT_ID == src->context) in vmci_route() 75 if (VMCI_INVALID_ID == src->context && in vmci_route() 76 VMCI_INVALID_ID != src->resource) in vmci_route() 77 src->context = vmci_get_context_id(); in vmci_route() 94 if (src->context == VMCI_HYPERVISOR_CONTEXT_ID) { in vmci_route() 113 if (VMCI_INVALID_ID == src->context) in vmci_route() 114 src->context = vmci_get_context_id(); in vmci_route() 130 if (VMCI_INVALID_ID == src->context) { in vmci_route() 139 src in vmci_route() [all...] |
/kernel/linux/linux-6.6/drivers/misc/vmw_vmci/ |
H A D | vmci_route.c | 20 int vmci_route(struct vmci_handle *src, in vmci_route() argument 64 if (VMCI_HOST_CONTEXT_ID == src->context) in vmci_route() 75 if (VMCI_INVALID_ID == src->context && in vmci_route() 76 VMCI_INVALID_ID != src->resource) in vmci_route() 77 src->context = vmci_get_context_id(); in vmci_route() 94 if (src->context == VMCI_HYPERVISOR_CONTEXT_ID) { in vmci_route() 113 if (VMCI_INVALID_ID == src->context) in vmci_route() 114 src->context = vmci_get_context_id(); in vmci_route() 130 if (VMCI_INVALID_ID == src->context) { in vmci_route() 139 src in vmci_route() [all...] |
/kernel/liteos_a/arch/arm/arm/src/ |
H A D | user_copy.c | 40 size_t arch_copy_from_user(void *dst, const void *src, size_t len) in arch_copy_from_user() argument 42 return LOS_ArchCopyFromUser(dst, src, len); in arch_copy_from_user() 45 size_t LOS_ArchCopyFromUser(void *dst, const void *src, size_t len) in LOS_ArchCopyFromUser() argument 47 if (!LOS_IsUserAddressRange((VADDR_T)(UINTPTR)src, len)) { in LOS_ArchCopyFromUser() 51 return _arm_user_copy(dst, src, len); in LOS_ArchCopyFromUser() 54 size_t arch_copy_to_user(void *dst, const void *src, size_t len) in arch_copy_to_user() argument 56 return LOS_ArchCopyToUser(dst, src, len); in arch_copy_to_user() 59 size_t LOS_ArchCopyToUser(void *dst, const void *src, size_t len) in LOS_ArchCopyToUser() argument 65 return _arm_user_copy(dst, src, len); in LOS_ArchCopyToUser() 68 INT32 LOS_CopyFromKernel(VOID *dest, UINT32 max, const VOID *src, UINT3 argument 81 LOS_CopyToKernel(VOID *dest, UINT32 max, const VOID *src, UINT32 count) LOS_CopyToKernel() argument [all...] |
/third_party/mesa3d/src/panfrost/util/ |
H A D | nir_mod_helpers.c | 40 pan_has_source_mod(nir_alu_src *src, nir_op op) in pan_has_source_mod() argument 42 if (!src->src.is_ssa || src->src.ssa->parent_instr->type != nir_instr_type_alu) in pan_has_source_mod() 45 nir_alu_instr *alu = nir_instr_as_alu(src->src.ssa->parent_instr); in pan_has_source_mod() 54 if (!alu->src[0].src.is_ssa) in pan_has_source_mod() 58 * src in pan_has_source_mod() [all...] |
/third_party/skia/third_party/externals/libwebp/src/dsp/ |
H A D | lossless_neon.c | 14 #include "src/dsp/dsp.h" 20 #include "src/dsp/lossless.h" 21 #include "src/dsp/neon.h" 29 static void ConvertBGRAToRGBA_NEON(const uint32_t* src, in ConvertBGRAToRGBA_NEON() argument 31 const uint32_t* const end = src + (num_pixels & ~15); in ConvertBGRAToRGBA_NEON() 32 for (; src < end; src += 16) { in ConvertBGRAToRGBA_NEON() 33 uint8x16x4_t pixel = vld4q_u8((uint8_t*)src); in ConvertBGRAToRGBA_NEON() 41 VP8LConvertBGRAToRGBA_C(src, num_pixels & 15, dst); // left-overs in ConvertBGRAToRGBA_NEON() 44 static void ConvertBGRAToBGR_NEON(const uint32_t* src, in ConvertBGRAToBGR_NEON() argument 56 ConvertBGRAToRGB_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToRGB_NEON() argument 74 ConvertBGRAToRGBA_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToRGBA_NEON() argument 92 ConvertBGRAToBGR_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToBGR_NEON() argument 119 ConvertBGRAToRGB_NEON(const uint32_t* src, int num_pixels, uint8_t* dst) ConvertBGRAToRGB_NEON() argument 212 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd0_NEON() local 226 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd1_NEON() local 279 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd5_NEON() local 304 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd6_NEON() local 320 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd7_NEON() local 366 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd10_NEON() local 402 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd11_NEON() local 431 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd12_NEON() local 471 const uint8x16_t src = LOADQ_U32P_AS_U8(&in[i]); PredictorAdd13_NEON() local 524 AddGreenToBlueAndRed_NEON(const uint32_t* src, int num_pixels, uint32_t* dst) AddGreenToBlueAndRed_NEON() argument 544 TransformColorInverse_NEON(const VP8LMultipliers* const m, const uint32_t* const src, int num_pixels, uint32_t* dst) TransformColorInverse_NEON() argument [all...] |
/third_party/ffmpeg/libavcodec/aarch64/ |
H A D | vc1dsp_init_aarch64.c | 39 void ff_vc1_v_loop_filter4_neon(uint8_t *src, ptrdiff_t stride, int pq); 40 void ff_vc1_h_loop_filter4_neon(uint8_t *src, ptrdiff_t stride, int pq); 41 void ff_vc1_v_loop_filter8_neon(uint8_t *src, ptrdiff_t stride, int pq); 42 void ff_vc1_h_loop_filter8_neon(uint8_t *src, ptrdiff_t stride, int pq); 43 void ff_vc1_v_loop_filter16_neon(uint8_t *src, ptrdiff_t stride, int pq); 44 void ff_vc1_h_loop_filter16_neon(uint8_t *src, ptrdiff_t stride, int pq); 46 void ff_put_vc1_chroma_mc8_neon(uint8_t *dst, uint8_t *src, ptrdiff_t stride, 48 void ff_avg_vc1_chroma_mc8_neon(uint8_t *dst, uint8_t *src, ptrdiff_t stride, 50 void ff_put_vc1_chroma_mc4_neon(uint8_t *dst, uint8_t *src, ptrdiff_t stride, 52 void ff_avg_vc1_chroma_mc4_neon(uint8_t *dst, uint8_t *src, ptrdiff_ 57 vc1_unescape_buffer_neon(const uint8_t *src, int size, uint8_t *dst) vc1_unescape_buffer_neon() argument [all...] |
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
H A D | ngtcp2_cid.c | 67 void ngtcp2_scid_copy(ngtcp2_scid *dest, const ngtcp2_scid *src) { in ngtcp2_scid_copy() argument 68 ngtcp2_scid_init(dest, src->seq, &src->cid); in ngtcp2_scid_copy() 69 dest->retired_ts = src->retired_ts; in ngtcp2_scid_copy() 70 dest->flags = src->flags; in ngtcp2_scid_copy() 102 void ngtcp2_dcid_copy(ngtcp2_dcid *dest, const ngtcp2_dcid *src) { in ngtcp2_dcid_copy() argument 103 ngtcp2_dcid_init(dest, src->seq, &src->cid, in ngtcp2_dcid_copy() 104 (src->flags & NGTCP2_DCID_FLAG_TOKEN_PRESENT) ? src in ngtcp2_dcid_copy() 115 ngtcp2_dcid_copy_cid_token(ngtcp2_dcid *dest, const ngtcp2_dcid *src) ngtcp2_dcid_copy_cid_token() argument [all...] |