Home
last modified time | relevance | path

Searched refs:src (Results 1776 - 1800 of 13603) sorted by relevance

1...<<71727374757677787980>>...545

/kernel/linux/linux-6.6/arch/x86/lib/
H A Dstring_32.c19 char *strcpy(char *dest, const char *src) in strcpy() argument
27 : "0" (src), "1" (dest) : "memory"); in strcpy()
34 char *strncpy(char *dest, const char *src, size_t count) in strncpy() argument
47 : "0" (src), "1" (dest), "2" (count) : "memory"); in strncpy()
54 char *strcat(char *dest, const char *src) in strcat() argument
65 : "0" (src), "1" (dest), "2" (0), "3" (0xffffffffu) : "memory"); in strcat()
72 char *strncat(char *dest, const char *src, size_t count) in strncat() argument
88 : "0" (src), "1" (dest), "2" (0), "3" (0xffffffffu), "g" (count) in strncat()
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/pm/legacy-dpm/
H A Dkv_smc.c123 const u8 *src, u32 byte_count, u32 limit) in amdgpu_kv_copy_bytes_to_smc()
152 data = (data << 8) + *src++; in amdgpu_kv_copy_bytes_to_smc()
175 data = (src[0] << 24) + (src[1] << 16) + (src[2] << 8) + src[3]; in amdgpu_kv_copy_bytes_to_smc()
183 src += 4; in amdgpu_kv_copy_bytes_to_smc()
202 data = (data << 8) + *src++; in amdgpu_kv_copy_bytes_to_smc()
121 amdgpu_kv_copy_bytes_to_smc(struct amdgpu_device *adev, u32 smc_start_address, const u8 *src, u32 byte_count, u32 limit) amdgpu_kv_copy_bytes_to_smc() argument
/kernel/linux/linux-6.6/drivers/gpu/drm/radeon/
H A Dkv_smc.c119 const u8 *src, u32 byte_count, u32 limit) in kv_copy_bytes_to_smc()
148 data = (data << 8) + *src++; in kv_copy_bytes_to_smc()
171 data = (src[0] << 24) + (src[1] << 16) + (src[2] << 8) + src[3]; in kv_copy_bytes_to_smc()
179 src += 4; in kv_copy_bytes_to_smc()
198 data = (data << 8) + *src++; in kv_copy_bytes_to_smc()
117 kv_copy_bytes_to_smc(struct radeon_device *rdev, u32 smc_start_address, const u8 *src, u32 byte_count, u32 limit) kv_copy_bytes_to_smc() argument
/kernel/linux/linux-6.6/sound/firewire/motu/
H A Damdtp-motu-trace.h25 __field(int, src)
32 __entry->src = fw_parent_device(s->unit)->node_id;
35 __entry->src = fw_parent_device(s->unit)->card->node_id;
43 __entry->src,
54 __field(int, src)
61 __entry->src = fw_parent_device(s->unit)->node_id;
64 __entry->src = fw_parent_device(s->unit)->card->node_id;
72 __entry->src,
/kernel/linux/linux-6.6/net/netfilter/ipset/
H A Dip_set_getport.c26 bool src, __be16 *port, u8 *proto) in get_port()
38 *port = src ? th->source : th->dest; in get_port()
50 *port = src ? sh->source : sh->dest; in get_port()
63 *port = src ? uh->source : uh->dest; in get_port()
98 ip_set_get_ip4_port(const struct sk_buff *skb, bool src, in ip_set_get_ip4_port() argument
126 return get_port(skb, protocol, protooff, src, port, proto); in ip_set_get_ip4_port()
132 ip_set_get_ip6_port(const struct sk_buff *skb, bool src, in ip_set_get_ip6_port() argument
147 return get_port(skb, nexthdr, protoff, src, port, proto); in ip_set_get_ip6_port()
25 get_port(const struct sk_buff *skb, int protocol, unsigned int protooff, bool src, __be16 *port, u8 *proto) get_port() argument
/third_party/ffmpeg/libavcodec/
H A Ddca.c49 int avpriv_dca_convert_bitstream(const uint8_t *src, int src_size, uint8_t *dst, in avpriv_dca_convert_bitstream() argument
59 mrk = AV_RB32(src); in avpriv_dca_convert_bitstream()
63 memcpy(dst, src, src_size); in avpriv_dca_convert_bitstream()
67 AV_WB16(dst, AV_RL16(src)); in avpriv_dca_convert_bitstream()
68 src += 2; in avpriv_dca_convert_bitstream()
75 for (i = 0; i < (src_size + 1) >> 1; i++, src += 2) { in avpriv_dca_convert_bitstream()
76 tmp = ((mrk == DCA_SYNCWORD_CORE_14B_BE) ? AV_RB16(src) : AV_RL16(src)) & 0x3FFF; in avpriv_dca_convert_bitstream()
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_samplers.c36 nir_tex_src *src = &instr->src[src_idx]; in lower_tex_src_to_offset() local
37 bool is_sampler = src->src_type == nir_tex_src_sampler_deref; in lower_tex_src_to_offset()
40 nir_deref_instr *deref = nir_instr_as_deref(src->src.ssa->parent_instr); in lower_tex_src_to_offset()
100 nir_instr_rewrite_src(&instr->instr, &src->src, in lower_tex_src_to_offset()
103 src->src_type = is_sampler ? in lower_tex_src_to_offset()
H A Dnir_lower_var_copies.c103 assert(copy->src[0].is_ssa && copy->src[1].is_ssa); in nir_lower_deref_copy_instr()
104 nir_deref_instr *dst = nir_instr_as_deref(copy->src[0].ssa->parent_instr); in nir_lower_deref_copy_instr()
105 nir_deref_instr *src = nir_instr_as_deref(copy->src[1].ssa->parent_instr); in nir_lower_deref_copy_instr() local
109 nir_deref_path_init(&src_path, src, NULL); in nir_lower_deref_copy_instr()
141 nir_deref_instr_remove_if_unused(nir_src_as_deref(copy->src[0])); in lower_var_copies_impl()
142 nir_deref_instr_remove_if_unused(nir_src_as_deref(copy->src[1])); in lower_var_copies_impl()
H A Dnir_opt_rematerialize_compares.c64 if (!instr->src[i].src.is_ssa) in all_srcs_are_ssa()
90 if (alu->src[0].src.ssa != &instr->dest.dest.ssa) in all_uses_are_bcsel()
142 if (use_alu->src[i].src.ssa == &alu->dest.dest.ssa) { in nir_opt_rematerialize_compares_impl()
144 &use_alu->src[i].src, in nir_opt_rematerialize_compares_impl()
/third_party/mesa3d/src/broadcom/compiler/
H A Dv3d_nir_lower_robust_buffer_access.c39 size->src[0] = nir_src_for_ssa(nir_imm_int(b, buffer_idx)); in rewrite_offset()
49 nir_umin(b, instr->src[offset_src].ssa, aligned_buffer_size); in rewrite_offset()
50 nir_instr_rewrite_src(&instr->instr, &instr->src[offset_src], in rewrite_offset()
59 uint32_t index = nir_src_comp_as_uint(instr->src[0], 0); in lower_load()
78 uint32_t index = nir_src_comp_as_uint(instr->src[1], 0); in lower_store()
87 uint32_t index = nir_src_comp_as_uint(instr->src[0], 0); in lower_atomic()
99 nir_ssa_def *offset = nir_umin(b, instr->src[0].ssa, aligned_size); in lower_shared()
100 nir_instr_rewrite_src(&instr->instr, &instr->src[0], in lower_shared()
/third_party/mesa3d/src/util/format/
H A Du_format_rgtc.h34 util_format_rgtc1_unorm_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
49 util_format_rgtc1_unorm_fetch_rgba(void *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
54 util_format_rgtc1_snorm_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
69 util_format_rgtc1_snorm_fetch_rgba(void *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
73 util_format_rgtc2_unorm_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
91 util_format_rgtc2_unorm_fetch_rgba(void *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
95 util_format_rgtc2_snorm_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
113 util_format_rgtc2_snorm_fetch_rgba(void *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
H A Du_format_latc.h34 util_format_latc1_unorm_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
49 util_format_latc1_unorm_fetch_rgba(void *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
54 util_format_latc1_snorm_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
69 util_format_latc1_snorm_fetch_rgba(void *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
73 util_format_latc2_unorm_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
88 util_format_latc2_unorm_fetch_rgba(void *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
92 util_format_latc2_snorm_fetch_rgba_8unorm(uint8_t *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
107 util_format_latc2_snorm_fetch_rgba(void *restrict dst, const uint8_t *restrict src, unsigned i, unsigned j);
/third_party/icu/icu4c/source/test/perf/strsrchperf/
H A Dstrsrchperf.cpp29 src = getBuffer(srcLen, status); in StringSearchPerformanceTest()
33 UBreakIterator* brk = ubrk_open(UBRK_WORD, locale, src, srcLen, &status); in StringSearchPerformanceTest()
43 temp[i] = src[start++]; in StringSearchPerformanceTest()
52 UChar ch = src[end]; in StringSearchPerformanceTest()
62 temp[i] = src[start++]; in StringSearchPerformanceTest()
68 srch = usearch_open(pttrn, pttrnLen, src, srcLen, locale, NULL, &status); in StringSearchPerformanceTest()
99 StringSearchPerfFunction* func = new StringSearchPerfFunction(ICUForwardSearch, srch, src, srcLen, pttrn, pttrnLen); in Test_ICU_Forward_Search()
104 StringSearchPerfFunction* func = new StringSearchPerfFunction(ICUBackwardSearch, srch, src, srcLen, pttrn, pttrnLen); in Test_ICU_Backward_Search()
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_shader_module.c140 vk_shader_module_clone(void *mem_ctx, const struct vk_shader_module *src) in vk_shader_module_clone() argument
143 ralloc_size(mem_ctx, sizeof(struct vk_shader_module) + src->size); in vk_shader_module_clone()
145 vk_object_base_init(src->base.device, &dst->base, VK_OBJECT_TYPE_SHADER_MODULE); in vk_shader_module_clone()
149 memcpy(dst->sha1, src->sha1, sizeof(src->sha1)); in vk_shader_module_clone()
151 dst->size = src->size; in vk_shader_module_clone()
152 memcpy(dst->data, src->data, src->size); in vk_shader_module_clone()
/third_party/skia/src/effects/
H A DSkTrimPathEffect.cpp11 #include "src/core/SkReadBuffer.h"
12 #include "src/core/SkWriteBuffer.h"
13 #include "src/effects/SkTrimPE.h"
18 static size_t add_segments(const SkPath& src, SkScalar start, SkScalar stop, SkPath* dst, in add_segments() argument
22 SkPathMeasure measure(src, false); in add_segments()
51 bool SkTrimPE::onFilterPath(SkPath* dst, const SkPath& src, SkStrokeRec*, const SkRect*,
60 SkPathMeasure meas(src, false);
72 add_segments(src, arcStart, arcStop, dst);
85 const auto contour_count = add_segments(src, arcStop, len, dst);
89 if (contour_count == 1 && src
[all...]
/third_party/optimized-routines/string/aarch64/
H A Dmemchr-mte.S21 #define src x3 define
49 bic src, srcin, 15
51 ld1 {vdata.16b}, [src]
71 sub tmp, src, srcin
82 ldr qdata, [src, 16]!
89 ldr qdata, [src, 16]!
101 sub cntrem, tmp, src
107 add result, src, synd, lsr 2
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dhb-ot-name.cc75 const typename in_utf_t::codepoint_t *src = (const typename in_utf_t::codepoint_t *) bytes.arrayZ; in hb_ot_name_convert_utf() local
76 const typename in_utf_t::codepoint_t *src_end = src + src_len; in hb_ot_name_convert_utf()
88 while (src < src_end && dst < dst_end) in hb_ot_name_convert_utf()
90 const typename in_utf_t::codepoint_t *src_next = in_utf_t::next (src, src_end, &unicode, replacement); in hb_ot_name_convert_utf()
96 src = src_next; in hb_ot_name_convert_utf()
105 while (src < src_end) in hb_ot_name_convert_utf()
107 src = in_utf_t::next (src, src_end, &unicode, replacement); in hb_ot_name_convert_utf()
/third_party/skia/third_party/externals/tint/fuzzers/
H A Dtint_ast_clone_fuzzer.cc19 #include "src/reader/wgsl/parser_impl.h"
20 #include "src/writer/wgsl/generator.h"
58 // Parse the wgsl, create the src program in LLVMFuzzerTestOneInput()
64 auto src = parser.program(); in LLVMFuzzerTestOneInput() local
65 if (!src.IsValid()) { in LLVMFuzzerTestOneInput()
69 // Clone the src program to dst in LLVMFuzzerTestOneInput()
70 tint::Program dst(src.Clone()); in LLVMFuzzerTestOneInput()
73 ASSERT_EQ(tint::Program::printer(&src), tint::Program::printer(&dst)); in LLVMFuzzerTestOneInput()
75 // Check that none of the AST nodes or type pointers in dst are found in src in LLVMFuzzerTestOneInput()
77 for (auto* src_node : src in LLVMFuzzerTestOneInput()
[all...]
/third_party/typescript/tests/baselines/reference/tsbuild/moduleSpecifiers/
H A Dsynthesized-module-specifiers-across-projects-resolve-correctly.js30 //// [/src/src-dogs/dog.ts]
31 import { DogConfig } from 'src-types';
42 //// [/src/src-dogs/dogconfig.ts]
43 import { DogConfig } from 'src-types';
50 //// [/src/src-dogs/index.ts]
51 export * from 'src-types';
55 //// [/src/sr
[all...]
/third_party/skia/gm/
H A Dencode_platform.cpp29 #include "src/images/SkImageEncoderPriv.h"
64 SkPixmap src; in encode_data() local
65 if (!bitmap.peekPixels(&src)) { in encode_data()
70 return SkEncodeImageWithCG(&buf, src, type) ? buf.detachAsData() : nullptr; in encode_data()
72 return SkEncodeImageWithWIC(&buf, src, type, quality) ? buf.detachAsData() : nullptr; in encode_data()
74 return SkEncodeImageWithNDK(&buf, src, type, quality) ? buf.detachAsData() : nullptr; in encode_data()
78 bool success = SkPngEncoder::Encode(&buf, src, SkPngEncoder::Options()); in encode_data()
82 bool success = SkJpegEncoder::Encode(&buf, src, SkJpegEncoder::Options()); in encode_data()
86 bool success = SkWebpEncoder::Encode(&buf, src, SkWebpEncoder::Options()); in encode_data()
/third_party/vk-gl-cts/framework/delibs/deimage/
H A DdeTarga.c84 const deUint8* src = buffer; in deImage_loadTarga() local
93 deUint8 b = *src++; in deImage_loadTarga()
94 deUint8 g = *src++; in deImage_loadTarga()
95 deUint8 r = *src++; in deImage_loadTarga()
102 deUint8 a = *src++; in deImage_loadTarga()
103 deUint8 b = *src++; in deImage_loadTarga()
104 deUint8 g = *src++; in deImage_loadTarga()
105 deUint8 r = *src++; in deImage_loadTarga()
/kernel/linux/linux-6.6/arch/powerpc/crypto/
H A Dchacha-p10-glue.c20 asmlinkage void chacha_p10le_8x(u32 *state, u8 *dst, const u8 *src,
37 static void chacha_p10_do_8x(u32 *state, u8 *dst, const u8 *src, in chacha_p10_do_8x() argument
43 chacha_p10le_8x(state, dst, src, l, nrounds); in chacha_p10_do_8x()
45 src += l; in chacha_p10_do_8x()
51 chacha_crypt_generic(state, dst, src, bytes, nrounds); in chacha_p10_do_8x()
66 void chacha_crypt_arch(u32 *state, u8 *dst, const u8 *src, unsigned int bytes, in chacha_crypt_arch() argument
71 return chacha_crypt_generic(state, dst, src, bytes, nrounds); in chacha_crypt_arch()
77 chacha_p10_do_8x(state, dst, src, todo, nrounds); in chacha_crypt_arch()
81 src += todo; in chacha_crypt_arch()
108 walk.src in chacha_p10_stream_xor()
[all...]
/kernel/linux/linux-5.10/lib/raid6/
H A DMakefile52 cmd_unroll = $(AWK) -v N=$* -f $(srctree)/$(src)/unroll.awk < $< > $@
55 $(obj)/int%.c: $(src)/int.uc $(src)/unroll.awk FORCE
63 $(obj)/altivec%.c: $(src)/altivec.uc $(src)/unroll.awk FORCE
71 $(obj)/vpermxor%.c: $(src)/vpermxor.uc $(src)/unroll.awk FORCE
79 $(obj)/neon%.c: $(src)/neon.uc $(src)/unroll.awk FORCE
83 $(obj)/s390vx%.c: $(src)/s390v
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/selftests/
H A Dtest-drm_plane_helper.c28 if (plane_state->src.x1 < 0) { in check_src_eq()
29 pr_err("src x coordinate %x should never be below 0.\n", plane_state->src.x1); in check_src_eq()
30 drm_rect_debug_print("src: ", &plane_state->src, true); in check_src_eq()
33 if (plane_state->src.y1 < 0) { in check_src_eq()
34 pr_err("src y coordinate %x should never be below 0.\n", plane_state->src.y1); in check_src_eq()
35 drm_rect_debug_print("src: ", &plane_state->src, tru in check_src_eq()
[all...]
/kernel/linux/linux-6.6/fs/ntfs3/lib/
H A Ddecompress_common.h30 copy_unaligned_word(const void *src, void *dst) in copy_unaligned_word() argument
32 put_unaligned(get_unaligned((const size_t *)src), (size_t *)dst); in copy_unaligned_word()
257 const u8 *src = dst - offset; in lz_copy() local
287 copy_unaligned_word(src, dst); in lz_copy()
288 src += WORDBYTES; in lz_copy()
293 copy_unaligned_word(src, dst); in lz_copy()
294 src += WORDBYTES; in lz_copy()
309 src += WORDBYTES; in lz_copy()
329 *dst++ = *src++; in lz_copy()
333 *dst++ = *src in lz_copy()
[all...]

Completed in 12 milliseconds

1...<<71727374757677787980>>...545