Home
last modified time | relevance | path

Searched refs:src (Results 2476 - 2500 of 13877) sorted by relevance

1...<<919293949596979899100>>...556

/third_party/skia/third_party/externals/tint/src/ast/
H A Delse_statement.cc15 #include "src/ast/else_statement.h"
17 #include "src/program_builder.h"
25 const Source& src, in ElseStatement()
28 : Base(pid, src), condition(cond), body(b) { in ElseStatement()
40 auto src = ctx->Clone(source); in Clone() local
43 return ctx->dst->create<ElseStatement>(src, cond, b); in Clone()
24 ElseStatement(ProgramID pid, const Source& src, const Expression* cond, const BlockStatement* b) ElseStatement() argument
H A Dgroup_decoration.cc15 #include "src/ast/group_decoration.h"
19 #include "src/program_builder.h"
26 GroupDecoration::GroupDecoration(ProgramID pid, const Source& src, uint32_t val) in GroupDecoration() argument
27 : Base(pid, src), value(val) {} in GroupDecoration()
37 auto src = ctx->Clone(source); in Clone() local
38 return ctx->dst->create<GroupDecoration>(src, value); in Clone()
H A Didentifier_expression.cc15 #include "src/ast/identifier_expression.h"
17 #include "src/program_builder.h"
25 const Source& src, in IdentifierExpression()
27 : Base(pid, src), symbol(sym) { in IdentifierExpression()
39 auto src = ctx->Clone(source); in Clone() local
41 return ctx->dst->create<IdentifierExpression>(src, sym); in Clone()
24 IdentifierExpression(ProgramID pid, const Source& src, Symbol sym) IdentifierExpression() argument
H A Dlocation_decoration.cc15 #include "src/ast/location_decoration.h"
19 #include "src/program_builder.h"
27 const Source& src, in LocationDecoration()
29 : Base(pid, src), value(val) {} in LocationDecoration()
39 auto src = ctx->Clone(source); in Clone() local
40 return ctx->dst->create<LocationDecoration>(src, value); in Clone()
26 LocationDecoration(ProgramID pid, const Source& src, uint32_t val) LocationDecoration() argument
H A Dloop_statement.cc15 #include "src/ast/loop_statement.h"
17 #include "src/program_builder.h"
25 const Source& src, in LoopStatement()
28 : Base(pid, src), body(b), continuing(cont) { in LoopStatement()
40 auto src = ctx->Clone(source); in Clone() local
43 return ctx->dst->create<LoopStatement>(src, b, cont); in Clone()
24 LoopStatement(ProgramID pid, const Source& src, const BlockStatement* b, const BlockStatement* cont) LoopStatement() argument
H A Dsampler.cc15 #include "src/ast/sampler.h"
17 #include "src/program_builder.h"
36 Sampler::Sampler(ProgramID pid, const Source& src, SamplerKind k) in Sampler() argument
37 : Base(pid, src), kind(k) {} in Sampler()
48 auto src = ctx->Clone(source); in Clone() local
49 return ctx->dst->create<Sampler>(src, kind); in Clone()
H A Dsint_literal_expression.cc15 #include "src/ast/sint_literal_expression.h"
17 #include "src/program_builder.h"
25 const Source& src, in SintLiteralExpression()
27 : Base(pid, src), value(val) {} in SintLiteralExpression()
38 auto src = ctx->Clone(source); in Clone() local
39 return ctx->dst->create<SintLiteralExpression>(src, value); in Clone()
24 SintLiteralExpression(ProgramID pid, const Source& src, int32_t val) SintLiteralExpression() argument
H A Dstage_decoration.cc15 #include "src/ast/stage_decoration.h"
19 #include "src/program_builder.h"
27 const Source& src, in StageDecoration()
29 : Base(pid, src), stage(s) {} in StageDecoration()
39 auto src = ctx->Clone(source); in Clone() local
40 return ctx->dst->create<StageDecoration>(src, stage); in Clone()
26 StageDecoration(ProgramID pid, const Source& src, PipelineStage s) StageDecoration() argument
H A Dstride_decoration.cc15 #include "src/ast/stride_decoration.h"
19 #include "src/program_builder.h"
26 StrideDecoration::StrideDecoration(ProgramID pid, const Source& src, uint32_t s) in StrideDecoration() argument
27 : Base(pid, src), stride(s) {} in StrideDecoration()
37 auto src = ctx->Clone(source); in Clone() local
38 return ctx->dst->create<StrideDecoration>(src, stride); in Clone()
H A Dstruct_member_align_decoration.cc15 #include "src/ast/struct_member_align_decoration.h"
19 #include "src/clone_context.h"
20 #include "src/program_builder.h"
28 const Source& src, in StructMemberAlignDecoration()
30 : Base(pid, src), align(a) {} in StructMemberAlignDecoration()
41 auto src = ctx->Clone(source); in Clone() local
42 return ctx->dst->create<StructMemberAlignDecoration>(src, align); in Clone()
27 StructMemberAlignDecoration(ProgramID pid, const Source& src, uint32_t a) StructMemberAlignDecoration() argument
H A Dstruct_member_offset_decoration.cc15 #include "src/ast/struct_member_offset_decoration.h"
19 #include "src/program_builder.h"
27 const Source& src, in StructMemberOffsetDecoration()
29 : Base(pid, src), offset(o) {} in StructMemberOffsetDecoration()
40 auto src = ctx->Clone(source); in Clone() local
41 return ctx->dst->create<StructMemberOffsetDecoration>(src, offset); in Clone()
26 StructMemberOffsetDecoration(ProgramID pid, const Source& src, uint32_t o) StructMemberOffsetDecoration() argument
H A Dstruct_member_size_decoration.cc15 #include "src/ast/struct_member_size_decoration.h"
19 #include "src/clone_context.h"
20 #include "src/program_builder.h"
28 const Source& src, in StructMemberSizeDecoration()
30 : Base(pid, src), size(sz) {} in StructMemberSizeDecoration()
41 auto src = ctx->Clone(source); in Clone() local
42 return ctx->dst->create<StructMemberSizeDecoration>(src, size); in Clone()
27 StructMemberSizeDecoration(ProgramID pid, const Source& src, uint32_t sz) StructMemberSizeDecoration() argument
H A Dtype_name.cc15 #include "src/ast/type_name.h"
17 #include "src/program_builder.h"
24 TypeName::TypeName(ProgramID pid, const Source& src, Symbol n) in TypeName() argument
25 : Base(pid, src), name(n) {} in TypeName()
36 auto src = ctx->Clone(source); in Clone() local
38 return ctx->dst->create<TypeName>(src, n); in Clone()
H A Dunary_op_expression.cc15 #include "src/ast/unary_op_expression.h"
17 #include "src/program_builder.h"
25 const Source& src, in UnaryOpExpression()
28 : Base(pid, src), op(o), expr(e) { in UnaryOpExpression()
39 auto src = ctx->Clone(source); in Clone() local
41 return ctx->dst->create<UnaryOpExpression>(src, op, e); in Clone()
24 UnaryOpExpression(ProgramID pid, const Source& src, UnaryOp o, const Expression* e) UnaryOpExpression() argument
H A Dvariable_decl_statement.cc15 #include "src/ast/variable_decl_statement.h"
17 #include "src/program_builder.h"
25 const Source& src, in VariableDeclStatement()
27 : Base(pid, src), variable(var) { in VariableDeclStatement()
39 auto src = ctx->Clone(source); in Clone() local
41 return ctx->dst->create<VariableDeclStatement>(src, var); in Clone()
24 VariableDeclStatement(ProgramID pid, const Source& src, const Variable* var) VariableDeclStatement() argument
/third_party/typescript/tests/baselines/reference/tsbuild/projectReferenceWithRootDirInParent/
H A Dbuilds-correctly.js17 //// [/src/src/main/a.ts]
21 //// [/src/src/main/b.ts]
25 //// [/src/src/main/tsconfig.json]
33 //// [/src/src/other/other.ts]
37 //// [/src/src/othe
[all...]
/third_party/skia/gn/
H A Drun_sksllex.py15 src = sys.argv[4] variable
20 subprocess.check_output([sksllex, src + "/sksl/lex/sksl.lex", "Lexer",
21 "Token", src + "/sksl/SkSLLexer.h", src +
27 subprocess.check_call(clangFormat + " -i \"" + src + "/sksl/SkSLLexer.h\"",
29 subprocess.check_call(clangFormat + " -i \"" + src +
/third_party/vk-gl-cts/framework/opengl/
H A DgluPixelTransfer.hpp43 void texImage2D (const RenderContext& context, deUint32 target, int level, deUint32 internalFormat, const tcu::ConstPixelBufferAccess& src);
44 void texImage3D (const RenderContext& context, deUint32 target, int level, deUint32 internalFormat, const tcu::ConstPixelBufferAccess& src);
45 void texSubImage2D (const RenderContext& context, deUint32 target, int level, int x, int y, const tcu::ConstPixelBufferAccess& src);
46 void texSubImage3D (const RenderContext& context, deUint32 target, int level, int x, int y, int z, const tcu::ConstPixelBufferAccess& src);
/kernel/linux/linux-5.10/arch/sparc/lib/
H A Dmemcpy.S19 #define MOVE_BIGCHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, t7) \
20 ldd [%src + (offset) + 0x00], %t0; \
21 ldd [%src + (offset) + 0x08], %t2; \
22 ldd [%src + (offset) + 0x10], %t4; \
23 ldd [%src + (offset) + 0x18], %t6; \
33 #define MOVE_BIGALIGNCHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, t7) \
34 ldd [%src + (offset) + 0x00], %t0; \
35 ldd [%src + (offset) + 0x08], %t2; \
36 ldd [%src + (offset) + 0x10], %t4; \
37 ldd [%src
[all...]
/kernel/linux/linux-6.6/arch/sparc/lib/
H A Dmemcpy.S20 #define MOVE_BIGCHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, t7) \
21 ldd [%src + (offset) + 0x00], %t0; \
22 ldd [%src + (offset) + 0x08], %t2; \
23 ldd [%src + (offset) + 0x10], %t4; \
24 ldd [%src + (offset) + 0x18], %t6; \
34 #define MOVE_BIGALIGNCHUNK(src, dst, offset, t0, t1, t2, t3, t4, t5, t6, t7) \
35 ldd [%src + (offset) + 0x00], %t0; \
36 ldd [%src + (offset) + 0x08], %t2; \
37 ldd [%src + (offset) + 0x10], %t4; \
38 ldd [%src
[all...]
/third_party/ffmpeg/libavutil/
H A Dimgutils.c345 const uint8_t *src, ptrdiff_t src_linesize, in image_copy_plane()
348 if (!dst || !src) in image_copy_plane()
353 memcpy(dst, src, bytewidth); in image_copy_plane()
355 src += src_linesize; in image_copy_plane()
360 const uint8_t *src, ptrdiff_t src_linesize, in av_image_copy_plane_uc_from()
366 ret = ff_image_copy_plane_uc_from_x86(dst, dst_linesize, src, src_linesize, in av_image_copy_plane_uc_from()
371 image_copy_plane(dst, dst_linesize, src, src_linesize, bytewidth, height); in av_image_copy_plane_uc_from()
375 const uint8_t *src, int src_linesize, in av_image_copy_plane()
378 image_copy_plane(dst, dst_linesize, src, src_linesize, bytewidth, height); in av_image_copy_plane()
447 const uint8_t *src, enu in av_image_fill_arrays()
344 image_copy_plane(uint8_t *dst, ptrdiff_t dst_linesize, const uint8_t *src, ptrdiff_t src_linesize, ptrdiff_t bytewidth, int height) image_copy_plane() argument
359 av_image_copy_plane_uc_from(uint8_t *dst, ptrdiff_t dst_linesize, const uint8_t *src, ptrdiff_t src_linesize, ptrdiff_t bytewidth, int height) av_image_copy_plane_uc_from() argument
374 av_image_copy_plane(uint8_t *dst, int dst_linesize, const uint8_t *src, int src_linesize, int bytewidth, int height) av_image_copy_plane() argument
446 av_image_fill_arrays(uint8_t *dst_data[4], int dst_linesize[4], const uint8_t *src, enum AVPixelFormat pix_fmt, int width, int height, int align) av_image_fill_arrays() argument
525 const uint8_t *src = src_data[i]; av_image_copy_to_buffer() local
642 uint16_t src = 0; av_image_fill_black() local
[all...]
/third_party/mesa3d/src/gallium/drivers/lima/ir/gp/
H A Dnir.c115 static gpir_node *gpir_node_find(gpir_block *block, nir_src *src, in gpir_node_find() argument
120 if (src->is_ssa) { in gpir_node_find()
121 if (src->ssa->num_components > 1) { in gpir_node_find()
123 if (block->comp->vector_ssa[i].ssa == src->ssa->index) { in gpir_node_find()
128 gpir_node *pred = block->comp->node_for_ssa[src->ssa->index]; in gpir_node_find()
131 reg = block->comp->reg_for_ssa[src->ssa->index]; in gpir_node_find()
134 pred = block->comp->node_for_reg[src->reg.reg->index]; in gpir_node_find()
137 reg = reg_for_nir_reg(block->comp, src->reg.reg); in gpir_node_find()
180 gpir_node *child = gpir_node_find(block, &instr->src[0].src, in gpir_emit_alu()
202 nir_alu_src *src = instr->src + i; gpir_emit_alu() local
[all...]
/third_party/protobuf/src/google/protobuf/stubs/
H A Dstrutil.h303 // tasks such as printing debug messages. It is safe for src and dest
313 PROTOBUF_EXPORT int UnescapeCEscapeString(const string& src, string* dest);
314 PROTOBUF_EXPORT int UnescapeCEscapeString(const string& src, string* dest,
316 PROTOBUF_EXPORT string UnescapeCEscapeString(const string& src);
320 // Escapes 'src' using C-style escape sequences and returns the resulting
325 PROTOBUF_EXPORT string CEscape(const string& src);
329 // Escapes 'src' using C-style escape sequences, and appends the escaped
332 PROTOBUF_EXPORT void CEscapeAndAppend(StringPiece src, string* dest);
336 PROTOBUF_EXPORT string Utf8SafeCEscape(const string& src);
339 PROTOBUF_EXPORT string CHexEscape(const string& src);
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/
H A Dsae_pk.c213 char * sae_pk_base32_encode(const u8 *src, size_t len_bits) in sae_pk_base32_encode() argument
233 val = i < len ? src[i] : 0; in sae_pk_base32_encode()
250 u8 * sae_pk_base32_decode(const char *src, size_t len, size_t *out_len) in sae_pk_base32_decode() argument
265 if (dtable[(u8) src[i]] != 0x80) in sae_pk_base32_decode()
285 val = src[i]; in sae_pk_base32_decode()
327 u8 *dst, *src, *end; in sae_pk_buf_shift_left_19() local
330 src = buf + 2; in sae_pk_buf_shift_left_19()
333 while (src + 1 < end) { in sae_pk_buf_shift_left_19()
334 *dst++ = (src[0] << 3) | (src[ in sae_pk_buf_shift_left_19()
345 u8 *dst, *src, *end; sae_pk_buf_shift_left_1() local
[all...]
/kernel/linux/linux-5.10/drivers/staging/comedi/drivers/
H A Dni_tio.c311 unsigned int src; in ni_m_series_clock_src_select() local
314 src = GI_BITS_TO_SRC(ni_tio_get_soft_copy(counter, in ni_m_series_clock_src_select()
317 switch (src) { in ni_m_series_clock_src_select()
348 if (src == NI_M_RTSI_CLK(i)) { in ni_m_series_clock_src_select()
356 if (src == NI_M_PFI_CLK(i)) { in ni_m_series_clock_src_select()
375 unsigned int src; in ni_660x_clock_src_select() local
378 src = GI_BITS_TO_SRC(ni_tio_get_soft_copy(counter, in ni_660x_clock_src_select()
381 switch (src) { in ni_660x_clock_src_select()
405 if (src == NI_660X_RTSI_CLK(i)) { in ni_660x_clock_src_select()
413 if (src in ni_660x_clock_src_select()
841 ni_tio_set_gate_mode(struct ni_gpct *counter, unsigned int src) ni_tio_set_gate_mode() argument
872 ni_tio_set_gate2_mode(struct ni_gpct *counter, unsigned int src) ni_tio_set_gate2_mode() argument
1025 ni_tio_set_gate_src_raw(struct ni_gpct *counter, unsigned int gate, unsigned int src) ni_tio_set_gate_src_raw() argument
1057 ni_tio_set_gate_src(struct ni_gpct *counter, unsigned int gate, unsigned int src) ni_tio_set_gate_src() argument
1189 ni_660x_gate_to_generic_gate(unsigned int gate, unsigned int *src) ni_660x_gate_to_generic_gate() argument
1233 ni_m_gate_to_generic_gate(unsigned int gate, unsigned int *src) ni_m_gate_to_generic_gate() argument
1286 ni_660x_gate2_to_generic_gate(unsigned int gate, unsigned int *src) ni_660x_gate2_to_generic_gate() argument
1333 ni_m_gate2_to_generic_gate(unsigned int gate, unsigned int *src) ni_m_gate2_to_generic_gate() argument
[all...]

Completed in 13 milliseconds

1...<<919293949596979899100>>...556