/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
H A D | lp_surface.c | 43 struct pipe_resource *src, unsigned src_level, in lp_resource_copy_ms() 52 src_format = src->format; in lp_resource_copy_ms() 54 for (unsigned i = 0; i < MAX2(src->nr_samples, dst->nr_samples); i++) { in lp_resource_copy_ms() 57 src, 0, PIPE_MAP_READ, MIN2(i, src->nr_samples - 1), in lp_resource_copy_ms() 88 struct pipe_resource *src, unsigned src_level, in lp_resource_copy() 99 src, src_level, in lp_resource_copy() 103 "blit src"); in lp_resource_copy() 106 (dst->nr_samples == src->nr_samples || in lp_resource_copy() 107 (src in lp_resource_copy() 40 lp_resource_copy_ms(struct pipe_context *pipe, struct pipe_resource *dst, unsigned dst_level, unsigned dstx, unsigned dsty, unsigned dstz, struct pipe_resource *src, unsigned src_level, const struct pipe_box *src_box) lp_resource_copy_ms() argument 85 lp_resource_copy(struct pipe_context *pipe, struct pipe_resource *dst, unsigned dst_level, unsigned dstx, unsigned dsty, unsigned dstz, struct pipe_resource *src, unsigned src_level, const struct pipe_box *src_box) lp_resource_copy() argument [all...] |
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | amifb.c | 2602 static void bitcpy(unsigned long *dst, int dst_idx, const unsigned long *src, in bitcpy() argument 2624 *dst = comp(*src, *dst, first); in bitcpy() 2629 *dst = comp(*src, *dst, first); in bitcpy() 2631 src++; in bitcpy() 2638 *dst++ = *src++; in bitcpy() 2639 *dst++ = *src++; in bitcpy() 2640 *dst++ = *src++; in bitcpy() 2641 *dst++ = *src++; in bitcpy() 2642 *dst++ = *src++; in bitcpy() 2643 *dst++ = *src in bitcpy() 2742 bitcpy_rev(unsigned long *dst, int dst_idx, const unsigned long *src, int src_idx, u32 n) bitcpy_rev() argument 2894 bitcpy_not(unsigned long *dst, int dst_idx, const unsigned long *src, int src_idx, u32 n) bitcpy_not() argument 3211 copy_one_line(int bpp, unsigned long next_plane, unsigned long *dst, int dst_idx, unsigned long *src, int src_idx, u32 n) copy_one_line() argument 3228 copy_one_line_rev(int bpp, unsigned long next_plane, unsigned long *dst, int dst_idx, unsigned long *src, int src_idx, u32 n) copy_one_line_rev() argument 3252 unsigned long *dst, *src; amifb_copyarea() local 3314 const unsigned long *src; expand_one_line() local 3346 const char *src; amifb_imageblit() local [all...] |
/kernel/linux/linux-6.6/drivers/video/fbdev/ |
H A D | amifb.c | 2591 static void bitcpy(unsigned long *dst, int dst_idx, const unsigned long *src, in bitcpy() argument 2613 *dst = comp(*src, *dst, first); in bitcpy() 2618 *dst = comp(*src, *dst, first); in bitcpy() 2620 src++; in bitcpy() 2627 *dst++ = *src++; in bitcpy() 2628 *dst++ = *src++; in bitcpy() 2629 *dst++ = *src++; in bitcpy() 2630 *dst++ = *src++; in bitcpy() 2631 *dst++ = *src++; in bitcpy() 2632 *dst++ = *src in bitcpy() 2731 bitcpy_rev(unsigned long *dst, int dst_idx, const unsigned long *src, int src_idx, u32 n) bitcpy_rev() argument 2883 bitcpy_not(unsigned long *dst, int dst_idx, const unsigned long *src, int src_idx, u32 n) bitcpy_not() argument 3200 copy_one_line(int bpp, unsigned long next_plane, unsigned long *dst, int dst_idx, unsigned long *src, int src_idx, u32 n) copy_one_line() argument 3217 copy_one_line_rev(int bpp, unsigned long next_plane, unsigned long *dst, int dst_idx, unsigned long *src, int src_idx, u32 n) copy_one_line_rev() argument 3241 unsigned long *dst, *src; amifb_copyarea() local 3303 const unsigned long *src; expand_one_line() local 3335 const char *src; amifb_imageblit() local [all...] |
/base/global/i18n/frameworks/intl/src/ |
H A D | utils.cpp | 47 void Split(const string &src, const string &sep, vector<string> &dest) in Split() argument 49 if (src == "") { in Split() 53 string::size_type end = src.find(sep); in Split() 55 dest.push_back(src.substr(begin, end - begin)); in Split() 57 end = src.find(sep, begin); in Split() 59 if (begin != src.size()) { in Split() 60 dest.push_back(src.substr(begin)); in Split() 64 void Merge(const std::vector<std::string>& src, const std::string& sep, std::string& dest) in Merge() argument 66 if (src.size() == 0) { in Merge() 70 dest = src[ in Merge() [all...] |
/base/telephony/core_service/utils/codec/src/ |
H A D | asn1_utils.cpp | 106 void Asn1Utils::BchToString(const std::vector<uint8_t> &src, std::string &destStr) in BchToString() argument 108 std::string hexStr = BytesToHexStr(src); in BchToString() 130 uint32_t Asn1Utils::ByteToHexStr(uint8_t src, std::string &dest) in ByteToHexStr() argument 133 oss << std::hex << std::uppercase << std::setw(BYTE_TO_HEX_LEN) << std::setfill('0') << (src & MAX_UINT8); in ByteToHexStr() 157 int32_t Asn1Utils::BytesToInt(const std::vector<uint8_t> &src, uint32_t offset, uint32_t length) in BytesToInt() argument 159 if (length > HEX_STR_MAX_LENGTH || (offset + length) > src.size()) { in BytesToInt() 160 TELEPHONY_LOGE("src length is more than four byte."); in BytesToInt() 163 std::vector<uint8_t> subByteStream(src.begin() + offset, src.begin() + offset + length); in BytesToInt() 189 std::string Asn1Utils::BytesToString(const std::vector<uint8_t> &src) in BytesToString() argument 218 StringToBytes(const std::string &src) StringToBytes() argument [all...] |
/kernel/linux/linux-5.10/crypto/ |
H A D | tea.c | 57 static void tea_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in tea_encrypt() argument 62 const __le32 *in = (const __le32 *)src; in tea_encrypt() 85 static void tea_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in tea_decrypt() argument 90 const __le32 *in = (const __le32 *)src; in tea_decrypt() 130 static void xtea_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in xtea_encrypt() argument 135 const __le32 *in = (const __le32 *)src; in xtea_encrypt() 151 static void xtea_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in xtea_decrypt() argument 155 const __le32 *in = (const __le32 *)src; in xtea_decrypt() 174 static void xeta_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in xeta_encrypt() argument 179 const __le32 *in = (const __le32 *)src; in xeta_encrypt() 195 xeta_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) xeta_decrypt() argument [all...] |
H A D | nhpoly1305.c | 94 const u8 *src, unsigned int srclen, nh_t nh_fn) in nhpoly1305_units() 102 nh_fn(key->nh_key, src, bytes, state->nh_hash); in nhpoly1305_units() 112 nh_fn(&key->nh_key[pos / 4], src, bytes, tmp_hash); in nhpoly1305_units() 120 src += bytes; in nhpoly1305_units() 156 const u8 *src, unsigned int srclen, in crypto_nhpoly1305_update_helper() 165 memcpy(&state->buffer[state->buflen], src, bytes); in crypto_nhpoly1305_update_helper() 172 src += bytes; in crypto_nhpoly1305_update_helper() 178 nhpoly1305_units(state, key, src, bytes, nh_fn); in crypto_nhpoly1305_update_helper() 179 src += bytes; in crypto_nhpoly1305_update_helper() 184 memcpy(state->buffer, src, srcle in crypto_nhpoly1305_update_helper() 92 nhpoly1305_units(struct nhpoly1305_state *state, const struct nhpoly1305_key *key, const u8 *src, unsigned int srclen, nh_t nh_fn) nhpoly1305_units() argument 155 crypto_nhpoly1305_update_helper(struct shash_desc *desc, const u8 *src, unsigned int srclen, nh_t nh_fn) crypto_nhpoly1305_update_helper() argument 191 crypto_nhpoly1305_update(struct shash_desc *desc, const u8 *src, unsigned int srclen) crypto_nhpoly1305_update() argument [all...] |
H A D | deflate.c | 176 static int __deflate_compress(const u8 *src, unsigned int slen, in __deflate_compress() argument 189 stream->next_in = (u8 *)src; in __deflate_compress() 205 static int deflate_compress(struct crypto_tfm *tfm, const u8 *src, in deflate_compress() argument 210 return __deflate_compress(src, slen, dst, dlen, dctx); in deflate_compress() 213 static int deflate_scompress(struct crypto_scomp *tfm, const u8 *src, in deflate_scompress() argument 217 return __deflate_compress(src, slen, dst, dlen, ctx); in deflate_scompress() 220 static int __deflate_decompress(const u8 *src, unsigned int slen, in __deflate_decompress() argument 234 stream->next_in = (u8 *)src; in __deflate_decompress() 261 static int deflate_decompress(struct crypto_tfm *tfm, const u8 *src, in deflate_decompress() argument 266 return __deflate_decompress(src, sle in deflate_decompress() 269 deflate_sdecompress(struct crypto_scomp *tfm, const u8 *src, unsigned int slen, u8 *dst, unsigned int *dlen, void *ctx) deflate_sdecompress() argument [all...] |
/kernel/linux/linux-5.10/arch/ia64/lib/ |
H A D | memcpy.S | 25 # define src r3 43 * First, check if everything (src, dst, len) is a multiple of eight. If 83 mov src=in1 // copy because of rotation 98 (p[0]) ld8 val[0]=[src],8 142 (p[0]) ld1 val[0]=[src],1 185 and t0=-8,src // t0 = src & ~7 186 and t2=7,src // t2 = src & 7 189 adds src2=7,src // src [all...] |
/kernel/linux/linux-5.10/arch/x86/crypto/ |
H A D | twofish_avx_glue.c | 25 asmlinkage void twofish_ecb_enc_8way(const void *ctx, u8 *dst, const u8 *src); 26 asmlinkage void twofish_ecb_dec_8way(const void *ctx, u8 *dst, const u8 *src); 28 asmlinkage void twofish_cbc_dec_8way(const void *ctx, u8 *dst, const u8 *src); 29 asmlinkage void twofish_ctr_8way(const void *ctx, u8 *dst, const u8 *src, 32 asmlinkage void twofish_xts_enc_8way(const void *ctx, u8 *dst, const u8 *src, 34 asmlinkage void twofish_xts_dec_8way(const void *ctx, u8 *dst, const u8 *src, 43 static inline void twofish_enc_blk_3way(const void *ctx, u8 *dst, const u8 *src) in twofish_enc_blk_3way() argument 45 __twofish_enc_blk_3way(ctx, dst, src, false); in twofish_enc_blk_3way() 48 static void twofish_xts_enc(const void *ctx, u8 *dst, const u8 *src, le128 *iv) in twofish_xts_enc() argument 50 glue_xts_crypt_128bit_one(ctx, dst, src, i in twofish_xts_enc() 53 twofish_xts_dec(const void *ctx, u8 *dst, const u8 *src, le128 *iv) twofish_xts_dec() argument [all...] |
H A D | serpent_avx_glue.c | 24 const u8 *src); 28 const u8 *src); 32 const u8 *src); 35 asmlinkage void serpent_ctr_8way_avx(const void *ctx, u8 *dst, const u8 *src, 40 const u8 *src, le128 *iv); 44 const u8 *src, le128 *iv); 51 const u128 *src = (const u128 *)s; in __serpent_crypt_ctr() local 57 u128_xor(dst, src, (u128 *)&ctrblk); in __serpent_crypt_ctr() 61 void serpent_xts_enc(const void *ctx, u8 *dst, const u8 *src, le128 *iv) in serpent_xts_enc() argument 63 glue_xts_crypt_128bit_one(ctx, dst, src, i in serpent_xts_enc() 67 serpent_xts_dec(const void *ctx, u8 *dst, const u8 *src, le128 *iv) serpent_xts_dec() argument [all...] |
H A D | cast6_avx_glue.c | 23 asmlinkage void cast6_ecb_enc_8way(const void *ctx, u8 *dst, const u8 *src); 24 asmlinkage void cast6_ecb_dec_8way(const void *ctx, u8 *dst, const u8 *src); 26 asmlinkage void cast6_cbc_dec_8way(const void *ctx, u8 *dst, const u8 *src); 27 asmlinkage void cast6_ctr_8way(const void *ctx, u8 *dst, const u8 *src, 30 asmlinkage void cast6_xts_enc_8way(const void *ctx, u8 *dst, const u8 *src, 32 asmlinkage void cast6_xts_dec_8way(const void *ctx, u8 *dst, const u8 *src, 41 static void cast6_xts_enc(const void *ctx, u8 *dst, const u8 *src, le128 *iv) in cast6_xts_enc() argument 43 glue_xts_crypt_128bit_one(ctx, dst, src, iv, __cast6_encrypt); in cast6_xts_enc() 46 static void cast6_xts_dec(const void *ctx, u8 *dst, const u8 *src, le128 *iv) in cast6_xts_dec() argument 48 glue_xts_crypt_128bit_one(ctx, dst, src, i in cast6_xts_dec() 55 const u128 *src = (const u128 *)s; cast6_crypt_ctr() local [all...] |
/kernel/linux/linux-6.6/arch/ia64/lib/ |
H A D | memcpy.S | 25 # define src r3 43 * First, check if everything (src, dst, len) is a multiple of eight. If 83 mov src=in1 // copy because of rotation 98 (p[0]) ld8 val[0]=[src],8 142 (p[0]) ld1 val[0]=[src],1 185 and t0=-8,src // t0 = src & ~7 186 and t2=7,src // t2 = src & 7 189 adds src2=7,src // src [all...] |
/kernel/linux/linux-5.10/drivers/pinctrl/bcm/ |
H A D | pinctrl-ns.c | 309 const struct pinctrl_pin_desc *src = &ns_pinctrl_pins[i]; in ns_pinctrl_probe() local 310 unsigned int chipsets = (uintptr_t)src->drv_data; in ns_pinctrl_probe() 313 memcpy(pin++, src, sizeof(*src)); in ns_pinctrl_probe() 325 const struct ns_pinctrl_group *src = &ns_pinctrl_groups[i]; in ns_pinctrl_probe() local 327 if (src->chipsets & ns_pinctrl->chipset_flag) { in ns_pinctrl_probe() 328 memcpy(group++, src, sizeof(*src)); in ns_pinctrl_probe() 341 const struct ns_pinctrl_function *src = &ns_pinctrl_functions[i]; in ns_pinctrl_probe() local 343 if (src in ns_pinctrl_probe() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn314/ |
H A D | dcn314_dccg.c | 149 enum streamclk_source src, in dccg314_set_dtbclk_p_src() 156 if (src == DTBCLK0) in dccg314_set_dtbclk_p_src() 161 if (src == REFCLK) in dccg314_set_dtbclk_p_src() 170 if (src == REFCLK) in dccg314_set_dtbclk_p_src() 179 if (src == REFCLK) in dccg314_set_dtbclk_p_src() 188 if (src == REFCLK) in dccg314_set_dtbclk_p_src() 250 enum streamclk_source src, in dccg314_set_dpstreamclk() 257 dccg314_set_dtbclk_p_src(dccg, src, otg_inst); in dccg314_set_dpstreamclk() 263 DPSTREAMCLK0_EN, (src == REFCLK) ? 0 : 1, in dccg314_set_dpstreamclk() 268 DPSTREAMCLK1_EN, (src in dccg314_set_dpstreamclk() 147 dccg314_set_dtbclk_p_src( struct dccg *dccg, enum streamclk_source src, uint32_t otg_inst) dccg314_set_dtbclk_p_src() argument 248 dccg314_set_dpstreamclk( struct dccg *dccg, enum streamclk_source src, int otg_inst, int dp_hpo_inst) dccg314_set_dpstreamclk() argument [all...] |
/kernel/linux/linux-6.6/crypto/ |
H A D | nhpoly1305.c | 94 const u8 *src, unsigned int srclen, nh_t nh_fn) in nhpoly1305_units() 102 nh_fn(key->nh_key, src, bytes, state->nh_hash); in nhpoly1305_units() 112 nh_fn(&key->nh_key[pos / 4], src, bytes, tmp_hash); in nhpoly1305_units() 120 src += bytes; in nhpoly1305_units() 156 const u8 *src, unsigned int srclen, in crypto_nhpoly1305_update_helper() 165 memcpy(&state->buffer[state->buflen], src, bytes); in crypto_nhpoly1305_update_helper() 172 src += bytes; in crypto_nhpoly1305_update_helper() 178 nhpoly1305_units(state, key, src, bytes, nh_fn); in crypto_nhpoly1305_update_helper() 179 src += bytes; in crypto_nhpoly1305_update_helper() 184 memcpy(state->buffer, src, srcle in crypto_nhpoly1305_update_helper() 92 nhpoly1305_units(struct nhpoly1305_state *state, const struct nhpoly1305_key *key, const u8 *src, unsigned int srclen, nh_t nh_fn) nhpoly1305_units() argument 155 crypto_nhpoly1305_update_helper(struct shash_desc *desc, const u8 *src, unsigned int srclen, nh_t nh_fn) crypto_nhpoly1305_update_helper() argument 191 crypto_nhpoly1305_update(struct shash_desc *desc, const u8 *src, unsigned int srclen) crypto_nhpoly1305_update() argument [all...] |
H A D | deflate.c | 176 static int __deflate_compress(const u8 *src, unsigned int slen, in __deflate_compress() argument 189 stream->next_in = (u8 *)src; in __deflate_compress() 205 static int deflate_compress(struct crypto_tfm *tfm, const u8 *src, in deflate_compress() argument 210 return __deflate_compress(src, slen, dst, dlen, dctx); in deflate_compress() 213 static int deflate_scompress(struct crypto_scomp *tfm, const u8 *src, in deflate_scompress() argument 217 return __deflate_compress(src, slen, dst, dlen, ctx); in deflate_scompress() 220 static int __deflate_decompress(const u8 *src, unsigned int slen, in __deflate_decompress() argument 234 stream->next_in = (u8 *)src; in __deflate_decompress() 261 static int deflate_decompress(struct crypto_tfm *tfm, const u8 *src, in deflate_decompress() argument 266 return __deflate_decompress(src, sle in deflate_decompress() 269 deflate_sdecompress(struct crypto_scomp *tfm, const u8 *src, unsigned int slen, u8 *dst, unsigned int *dlen, void *ctx) deflate_sdecompress() argument [all...] |
H A D | tea.c | 57 static void tea_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in tea_encrypt() argument 62 const __le32 *in = (const __le32 *)src; in tea_encrypt() 85 static void tea_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in tea_decrypt() argument 90 const __le32 *in = (const __le32 *)src; in tea_decrypt() 130 static void xtea_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in xtea_encrypt() argument 135 const __le32 *in = (const __le32 *)src; in xtea_encrypt() 151 static void xtea_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in xtea_decrypt() argument 155 const __le32 *in = (const __le32 *)src; in xtea_decrypt() 174 static void xeta_encrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) in xeta_encrypt() argument 179 const __le32 *in = (const __le32 *)src; in xeta_encrypt() 195 xeta_decrypt(struct crypto_tfm *tfm, u8 *dst, const u8 *src) xeta_decrypt() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/armada/ |
H A D | armada_plane.c | 43 unsigned int x = state->src.x1 >> 16; in armada_drm_plane_calc() 44 unsigned int y = state->src.y1 >> 16; in armada_drm_plane_calc() 113 st->src_hw = drm_rect_height(&new_plane_state->src) >> 17; in armada_drm_plane_atomic_check() 117 st->src_hw = drm_rect_height(&new_plane_state->src) >> 16; in armada_drm_plane_atomic_check() 123 st->src_hw |= drm_rect_width(&new_plane_state->src) >> 16; in armada_drm_plane_atomic_check() 178 if (old_state->src.x1 != new_state->src.x1 || in armada_drm_primary_plane_atomic_update() 179 old_state->src.y1 != new_state->src.y1 || in armada_drm_primary_plane_atomic_update() 211 if (drm_rect_width(&old_state->src) ! in armada_drm_primary_plane_atomic_update() [all...] |
/third_party/ffmpeg/libavcodec/mips/ |
H A D | h263dsp_msa.c | 29 static void h263_h_loop_filter_msa(uint8_t *src, int32_t stride, int32_t qscale) in h263_h_loop_filter_msa() argument 37 src -= 2; in h263_h_loop_filter_msa() 38 LD_UB8(src, stride, in0, in1, in2, in3, in4, in5, in6, in7); in h263_h_loop_filter_msa() 89 ST_W8(in0, in3, 0, 1, 2, 3, 0, 1, 2, 3, src, stride); in h263_h_loop_filter_msa() 92 static void h263_v_loop_filter_msa(uint8_t *src, int32_t stride, int32_t qscale) in h263_v_loop_filter_msa() argument 100 src -= 2 * stride; in h263_v_loop_filter_msa() 101 LD_UB4(src, stride, in0, in3, in2, in1); in h263_v_loop_filter_msa() 150 SD4(res0, res1, res2, res3, src, stride); in h263_v_loop_filter_msa() 153 void ff_h263_h_loop_filter_msa(uint8_t *src, int32_t stride, int32_t q_scale) in ff_h263_h_loop_filter_msa() argument 155 h263_h_loop_filter_msa(src, strid in ff_h263_h_loop_filter_msa() 158 ff_h263_v_loop_filter_msa(uint8_t *src, int32_t stride, int32_t q_scale) ff_h263_v_loop_filter_msa() argument [all...] |
/third_party/ffmpeg/libavutil/ |
H A D | bprint.c | 263 void av_bprint_escape(AVBPrint *dstbuf, const char *src, const char *special_chars, in av_bprint_escape() argument 266 const char *src0 = src; in av_bprint_escape() 275 for (; *src; src++) { in av_bprint_escape() 276 if (*src == '\'') in av_bprint_escape() 279 av_bprint_chars(dstbuf, *src, 1); in av_bprint_escape() 290 for (; *src; src++) { in av_bprint_escape() 291 switch (*src) { in av_bprint_escape() 308 default: av_bprint_chars(dstbuf, *src, in av_bprint_escape() [all...] |
/third_party/alsa-utils/topology/nhlt/intel/dmic/ |
H A D | dmic-debug.c | 17 void dmic_print_bytes_as_hex(uint8_t *src, size_t size) in dmic_print_bytes_as_hex() argument 27 fprintf(stdout, "0x%02x,", *src); in dmic_print_bytes_as_hex() 28 src++; in dmic_print_bytes_as_hex() 33 fprintf(stdout, "0x%02x,", *src); in dmic_print_bytes_as_hex() 34 src++; in dmic_print_bytes_as_hex() 41 void dmic_print_integers_as_hex(uint32_t *src, size_t size) in dmic_print_integers_as_hex() argument 51 fprintf(stdout, "0x%08x,", *src); in dmic_print_integers_as_hex() 52 src++; in dmic_print_integers_as_hex() 57 fprintf(stdout, "0x%08x,", *src); in dmic_print_integers_as_hex() 58 src in dmic_print_integers_as_hex() [all...] |
/third_party/alsa-lib/test/ |
H A D | mixtest.c | 89 const s16 *src, in mix_areas_srv() 93 src_step /= sizeof(*src); in mix_areas_srv() 96 atomic_add(sum, *src); in mix_areas_srv() 97 src += src_step; in mix_areas_srv() 122 volatile s16 *dst, s16 *src, in mix_areas0() 129 src_step /= sizeof(*src); in mix_areas0() 132 s32 sample = *dst + *src; in mix_areas0() 140 src += src_step; in mix_areas0() 152 #include "../src/pcm/pcm_dmix_i386.h" 158 volatile s16 *dst, const s16 *src, in mix_areas2() 88 mix_areas_srv(unsigned int size, const s16 *src, volatile s32 *sum, unsigned int src_step, unsigned int sum_step) mix_areas_srv() argument 121 mix_areas0(unsigned int size, volatile s16 *dst, s16 *src, volatile s32 *sum, unsigned int dst_step, unsigned int src_step, unsigned int sum_step) mix_areas0() argument 157 mix_areas2(unsigned int size, volatile s16 *dst, const s16 *src, volatile s32 *sum, unsigned int dst_step, unsigned int src_step) mix_areas2() argument [all...] |
/third_party/mesa3d/src/compiler/nir/ |
H A D | nir_split_64bit_vec3_and_vec4.c | 59 if (nir_src_bit_size(intr->src[1]) != 64) in nir_split_64bit_vec3_and_vec4_filter() 64 return nir_src_num_components(intr->src[1]) >= 3; in nir_split_64bit_vec3_and_vec4_filter() 210 nir_ssa_def *src_xy = nir_channels(b, intr->src[1].ssa, 3); in split_store_deref() 216 nir_ssa_def *src_zw = nir_channels(b, intr->src[1].ssa, write_mask_zw); in split_store_deref() 243 nir_foreach_phi_src(src, phi) { in split_phi() 246 nir_instr *pred_last_instr = nir_block_last_instr(src->pred); in split_phi() 251 b->cursor = nir_after_block(src->pred); in split_phi() 253 nir_ssa_def *new_src = nir_channels(b, src->src.ssa, in split_phi() 256 nir_phi_instr_add_src(new_phi[i], src in split_phi() [all...] |
/third_party/mesa3d/src/gallium/drivers/vc4/ |
H A D | vc4_nir_lower_io.c | 57 vc4_nir_unpack_8i(nir_builder *b, nir_ssa_def *src, unsigned chan) in vc4_nir_unpack_8i() argument 60 src, in vc4_nir_unpack_8i() 67 vc4_nir_unpack_16i(nir_builder *b, nir_ssa_def *src, unsigned chan) in vc4_nir_unpack_16i() argument 70 src, in vc4_nir_unpack_16i() 77 vc4_nir_unpack_16u(nir_builder *b, nir_ssa_def *src, unsigned chan) in vc4_nir_unpack_16u() argument 80 return nir_iand(b, src, nir_imm_int(b, 0xffff)); in vc4_nir_unpack_16u() 82 return nir_ushr(b, src, nir_imm_int(b, 16)); in vc4_nir_unpack_16u() 87 vc4_nir_unpack_8f(nir_builder *b, nir_ssa_def *src, unsigned chan) in vc4_nir_unpack_8f() argument 89 return nir_channel(b, nir_unpack_unorm_4x8(b, src), chan); in vc4_nir_unpack_8f() 184 assert(nir_src_as_uint(intr->src[ in vc4_nir_lower_vertex_attr() [all...] |