Home
last modified time | relevance | path

Searched refs:compiler (Results 1 – 25 of 9838) sorted by relevance

12345678910>>...394

/third_party/skia/third_party/externals/angle2/src/
Dcompiler.gni8 "src/compiler/translator/blocklayout.h",
9 "src/compiler/translator/blocklayoutHLSL.h",
25 "src/compiler/translator/BaseTypes.h",
26 "src/compiler/translator/BuiltInFunctionEmulator.cpp",
27 "src/compiler/translator/BuiltInFunctionEmulator.h",
28 "src/compiler/translator/CallDAG.cpp",
29 "src/compiler/translator/CallDAG.h",
30 "src/compiler/translator/CodeGen.cpp",
31 "src/compiler/translator/CollectVariables.cpp",
32 "src/compiler/translator/CollectVariables.h",
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/
Dcompiler.gni20 "src/compiler/translator/BaseTypes.h",
21 "src/compiler/translator/BuiltInFunctionEmulator.cpp",
22 "src/compiler/translator/BuiltInFunctionEmulator.h",
23 "src/compiler/translator/CallDAG.cpp",
24 "src/compiler/translator/CallDAG.h",
25 "src/compiler/translator/CodeGen.cpp",
26 "src/compiler/translator/CollectVariables.cpp",
27 "src/compiler/translator/CollectVariables.h",
28 "src/compiler/translator/Common.h",
29 "src/compiler/translator/Compiler.cpp",
[all …]
/third_party/mesa3d/src/freedreno/ir3/
Dir3_compiler.c66 ir3_compiler_destroy(struct ir3_compiler *compiler) in ir3_compiler_destroy() argument
68 disk_cache_destroy(compiler->disk_cache); in ir3_compiler_destroy()
69 ralloc_free(compiler); in ir3_compiler_destroy()
76 struct ir3_compiler *compiler = rzalloc(NULL, struct ir3_compiler); in ir3_compiler_create() local
86 compiler->dev = dev; in ir3_compiler_create()
87 compiler->dev_id = dev_id; in ir3_compiler_create()
88 compiler->gen = fd_dev_gen(dev_id); in ir3_compiler_create()
89 compiler->robust_ubo_access = robust_ubo_access; in ir3_compiler_create()
92 compiler->local_mem_size = 32 * 1024; in ir3_compiler_create()
94 compiler->branchstack_size = 64; in ir3_compiler_create()
[all …]
/third_party/protobuf/cmake/
Dlibprotoc.cmake2 ${protobuf_source_dir}/src/google/protobuf/compiler/code_generator.cc
3 ${protobuf_source_dir}/src/google/protobuf/compiler/command_line_interface.cc
4 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_enum.cc
5 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_enum_field.cc
6 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_extension.cc
7 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_field.cc
8 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_file.cc
9 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_generator.cc
10 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_helpers.cc
11 ${protobuf_source_dir}/src/google/protobuf/compiler/cpp/cpp_map_field.cc
[all …]
/third_party/pcre2/pcre2/src/sljit/
DsljitLir.c45 if (SLJIT_UNLIKELY(compiler->error)) \
46 return compiler->error; \
51 if (SLJIT_UNLIKELY(compiler->error)) \
58 return compiler->error; \
70 compiler->error = SLJIT_ERR_ALLOC_FAILED; \
78 compiler->error = SLJIT_ERR_ALLOC_FAILED; \
86 compiler->error = SLJIT_ERR_EX_ALLOC_FAILED; \
304 compiler->error = SLJIT_ERR_BAD_ARGUMENT; \
312 compiler->error = SLJIT_ERR_BAD_ARGUMENT; \
368 …struct sljit_compiler *compiler = (struct sljit_compiler*)SLJIT_MALLOC(sizeof(struct sljit_compile… in sljit_create_compiler() local
[all …]
DsljitNativeX86_32.c29 static sljit_s32 emit_do_imm(struct sljit_compiler *compiler, sljit_u8 opcode, sljit_sw imm) in emit_do_imm() argument
33 inst = (sljit_u8*)ensure_buf(compiler, 1 + 1 + sizeof(sljit_sw)); in emit_do_imm()
68 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter() argument
76 …CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds,… in sljit_emit_enter()
77 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
80 FAIL_IF(emit_endbranch(compiler)); in sljit_emit_enter()
83 compiler->args = args; in sljit_emit_enter()
86 compiler->stack_tmp_size = 2 * sizeof(sljit_sw); in sljit_emit_enter()
90 compiler->stack_tmp_size = 3 * sizeof(sljit_sw); in sljit_emit_enter()
93 compiler->saveds_offset = compiler->stack_tmp_size; in sljit_emit_enter()
[all …]
DsljitNativePPC_64.c39 push_inst(compiler, RLDI(reg, reg, 63 - shift, shift, 1))
41 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm) in load_immediate() argument
49 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate()
52 return push_inst(compiler, ORI | S(TMP_ZERO) | A(reg) | IMM(imm)); in load_immediate()
55 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16))); in load_immediate()
56 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS; in load_immediate()
67 FAIL_IF(push_inst(compiler, ADDI | D(reg) | A(0) | IMM(tmp >> 48))); in load_immediate()
73 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(tmp >> 48))); in load_immediate()
74 FAIL_IF(push_inst(compiler, ORI | S(reg) | A(reg) | IMM(tmp >> 32))); in load_immediate()
84 FAIL_IF(push_inst(compiler, ADDI | D(reg) | A(0) | IMM(tmp >> 48))); in load_immediate()
[all …]
DsljitNativePPC_32.c29 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm) in load_immediate() argument
32 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate()
35 return push_inst(compiler, ORI | S(TMP_ZERO) | A(reg) | IMM(imm)); in load_immediate()
37 FAIL_IF(push_inst(compiler, ADDIS | D(reg) | A(0) | IMM(imm >> 16))); in load_immediate()
38 return (imm & 0xffff) ? push_inst(compiler, ORI | S(reg) | A(reg) | IMM(imm)) : SLJIT_SUCCESS; in load_immediate()
44 static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s… in emit_single_op() argument
54 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
62 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
63 return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 24)); in emit_single_op()
66 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
[all …]
DsljitNativeARM_32.c139 static sljit_s32 push_cpool(struct sljit_compiler *compiler) in push_cpool() argument
148 if (compiler->last_label && compiler->last_label->size == compiler->size) in push_cpool()
149 compiler->last_label->size += compiler->cpool_fill + (CONST_POOL_ALIGNMENT - 1) + 1; in push_cpool()
151 SLJIT_ASSERT(compiler->cpool_fill > 0 && compiler->cpool_fill <= CPOOL_SIZE); in push_cpool()
152 inst = (sljit_uw*)ensure_buf(compiler, sizeof(sljit_uw)); in push_cpool()
154 compiler->size++; in push_cpool()
155 *inst = 0xff000000 | compiler->cpool_fill; in push_cpool()
158 inst = (sljit_uw*)ensure_buf(compiler, sizeof(sljit_uw)); in push_cpool()
160 compiler->size++; in push_cpool()
164 cpool_ptr = compiler->cpool; in push_cpool()
[all …]
DsljitNativeX86_common.c79 if (p <= compiler->scratches) \
80 w = compiler->saveds_offset - ((p) - SLJIT_R2) * (sljit_sw)sizeof(sljit_sw); \
82 w = compiler->locals_offset + ((p) - SLJIT_S2) * (sljit_sw)sizeof(sljit_sw); \
277 #define INC_SIZE(s) (*inst++ = (s), compiler->size += (s))
486 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument
503 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code()
504 reverse_buf(compiler); in sljit_generate_code()
507 code = (sljit_u8*)SLJIT_MALLOC_EXEC(compiler->size, compiler->exec_allocator_data); in sljit_generate_code()
509 buf = compiler->buf; in sljit_generate_code()
512 label = compiler->labels; in sljit_generate_code()
[all …]
DsljitNativeARM_T2_32.c200 static sljit_s32 push_inst16(struct sljit_compiler *compiler, sljit_ins inst) in push_inst16() argument
205 ptr = (sljit_u16*)ensure_buf(compiler, sizeof(sljit_u16)); in push_inst16()
208 compiler->size++; in push_inst16()
212 static sljit_s32 push_inst32(struct sljit_compiler *compiler, sljit_ins inst) in push_inst32() argument
214 sljit_u16 *ptr = (sljit_u16*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst32()
218 compiler->size += 2; in push_inst32()
222 static SLJIT_INLINE sljit_s32 emit_imm32_const(struct sljit_compiler *compiler, sljit_s32 dst, slji… in emit_imm32_const() argument
224 FAIL_IF(push_inst32(compiler, MOVW | RD4(dst) in emit_imm32_const()
226 return push_inst32(compiler, MOVT | RD4(dst) in emit_imm32_const()
360 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument
[all …]
DsljitNativeSPARC_common.c204 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot) in push_inst() argument
210 ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst()
213 compiler->size++; in push_inst()
214 compiler->delay_slot = delay_slot; in push_inst()
293 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument
311 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code()
312 reverse_buf(compiler); in sljit_generate_code()
314 …code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_… in sljit_generate_code()
316 buf = compiler->buf; in sljit_generate_code()
323 label = compiler->labels; in sljit_generate_code()
[all …]
DsljitNativeARM_64.c137 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument
139 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst()
142 compiler->size++; in push_inst()
146 static SLJIT_INLINE sljit_s32 emit_imm64_const(struct sljit_compiler *compiler, sljit_s32 dst, slji… in emit_imm64_const() argument
148 FAIL_IF(push_inst(compiler, MOVZ | RD(dst) | ((imm & 0xffff) << 5))); in emit_imm64_const()
149 FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 16) & 0xffff) << 5) | (1 << 21))); in emit_imm64_const()
150 FAIL_IF(push_inst(compiler, MOVK | RD(dst) | (((imm >> 32) & 0xffff) << 5) | (2 << 21))); in emit_imm64_const()
151 return push_inst(compiler, MOVK | RD(dst) | ((imm >> 48) << 5) | (3 << 21)); in emit_imm64_const()
224 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument
243 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code()
[all …]
DsljitNativeMIPS_common.c291 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot) in push_inst() argument
293 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst()
298 compiler->size++; in push_inst()
299 compiler->delay_slot = delay_slot; in push_inst()
502 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument
520 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code()
521 reverse_buf(compiler); in sljit_generate_code()
523 …code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_… in sljit_generate_code()
525 buf = compiler->buf; in sljit_generate_code()
532 label = compiler->labels; in sljit_generate_code()
[all …]
DsljitNativeS390X.c145 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument
147 sljit_ins *ibuf = (sljit_ins *)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst()
150 compiler->size++; in push_inst()
178 static SLJIT_INLINE sljit_u8 get_cc(struct sljit_compiler *compiler, sljit_s32 type) { in get_cc() argument
186 if (SLJIT_ADD_SUB_NO_COMPARE(compiler->status_flags_state)) { in get_cc()
187 sljit_s32 type = GET_FLAG_TYPE(compiler->status_flags_state); in get_cc()
199 if (SLJIT_ADD_SUB_NO_COMPARE(compiler->status_flags_state)) { in get_cc()
200 sljit_s32 type = GET_FLAG_TYPE(compiler->status_flags_state); in get_cc()
218 if (compiler->status_flags_state & SLJIT_CURRENT_FLAGS_COMPARE) in get_cc()
223 if (compiler->status_flags_state & SLJIT_CURRENT_FLAGS_COMPARE) in get_cc()
[all …]
DsljitNativePPC_common.c250 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins) in push_inst() argument
252 sljit_ins *ptr = (sljit_ins*)ensure_buf(compiler, sizeof(sljit_ins)); in push_inst()
255 compiler->size++; in push_inst()
379 SLJIT_API_FUNC_ATTRIBUTE void* sljit_generate_code(struct sljit_compiler *compiler) in sljit_generate_code() argument
397 CHECK_PTR(check_sljit_generate_code(compiler)); in sljit_generate_code()
398 reverse_buf(compiler); in sljit_generate_code()
402compiler->size += (compiler->size & 0x1) + (sizeof(struct sljit_function_context) / sizeof(sljit_i… in sljit_generate_code()
404 compiler->size += (sizeof(struct sljit_function_context) / sizeof(sljit_ins)); in sljit_generate_code()
407 …code = (sljit_ins*)SLJIT_MALLOC_EXEC(compiler->size * sizeof(sljit_ins), compiler->exec_allocator_… in sljit_generate_code()
409 buf = compiler->buf; in sljit_generate_code()
[all …]
DsljitNativeMIPS_64.c29 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst_ar, sljit_sw imm) in load_immediate() argument
38 return push_inst(compiler, ORI | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate()
41 return push_inst(compiler, ADDIU | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate()
44 FAIL_IF(push_inst(compiler, LUI | TA(dst_ar) | IMM(imm >> 16), dst_ar)); in load_immediate()
45 …return (imm & 0xffff) ? push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar) : SL… in load_immediate()
79 FAIL_IF(push_inst(compiler, LUI | TA(dst_ar) | IMM(uimm >> 48), dst_ar)); in load_immediate()
81 FAIL_IF(push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(uimm >> 32), dst_ar)); in load_immediate()
88 FAIL_IF(push_inst(compiler, ins | TA(dst_ar) | DA(dst_ar), dst_ar)); in load_immediate()
89 …return !(imm & 0xffff) ? SLJIT_SUCCESS : push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(i… in load_immediate()
113 FAIL_IF(push_inst(compiler, DSLL | TA(dst_ar) | DA(dst_ar) | SH_IMM(shift - shift2), dst_ar)); in load_immediate()
[all …]
DsljitNativeMIPS_32.c29 static sljit_s32 load_immediate(struct sljit_compiler *compiler, sljit_s32 dst_ar, sljit_sw imm) in load_immediate() argument
32 return push_inst(compiler, ORI | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate()
35 return push_inst(compiler, ADDIU | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate()
37 FAIL_IF(push_inst(compiler, LUI | TA(dst_ar) | IMM(imm >> 16), dst_ar)); in load_immediate()
38 …return (imm & 0xffff) ? push_inst(compiler, ORI | SA(dst_ar) | TA(dst_ar) | IMM(imm), dst_ar) : SL… in load_immediate()
44 FAIL_IF(push_inst(compiler, op_imm | S(src1) | TA(EQUAL_FLAG) | IMM(src2), EQUAL_FLAG)); \
46 FAIL_IF(push_inst(compiler, op_imm | S(src1) | T(dst) | IMM(src2), DR(dst))); \
50 FAIL_IF(push_inst(compiler, op_norm | S(src1) | T(src2) | DA(EQUAL_FLAG), EQUAL_FLAG)); \
52 FAIL_IF(push_inst(compiler, op_norm | S(src1) | T(src2) | D(dst), DR(dst))); \
58 FAIL_IF(push_inst(compiler, op_imm | T(src1) | DA(EQUAL_FLAG) | SH_IMM(src2), EQUAL_FLAG)); \
[all …]
DsljitNativeX86_64.c29 static sljit_s32 emit_load_imm64(struct sljit_compiler *compiler, sljit_s32 reg, sljit_sw imm) in emit_load_imm64() argument
33 inst = (sljit_u8*)ensure_buf(compiler, 1 + 2 + sizeof(sljit_sw)); in emit_load_imm64()
127 SLJIT_API_FUNC_ATTRIBUTE sljit_s32 sljit_emit_enter(struct sljit_compiler *compiler, in sljit_emit_enter() argument
135 …CHECK(check_sljit_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds,… in sljit_emit_enter()
136 set_emit_enter(compiler, options, arg_types, scratches, saveds, fscratches, fsaveds, local_size); in sljit_emit_enter()
139 FAIL_IF(emit_endbranch(compiler)); in sljit_emit_enter()
141 compiler->mode32 = 0; in sljit_emit_enter()
146 compiler->locals_offset = 6 * sizeof(sljit_sw); in sljit_emit_enter()
148 compiler->locals_offset = ((scratches > 2) ? 4 : 2) * sizeof(sljit_sw); in sljit_emit_enter()
157 inst = (sljit_u8*)ensure_buf(compiler, 1 + size); in sljit_emit_enter()
[all …]
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_cross_c.cpp151 unique_ptr<Compiler> compiler; member
263 spvc_capture_mode mode, spvc_compiler *compiler) in spvc_context_create_compiler() argument
286 comp->compiler.reset(new Compiler(move(parsed_ir->parsed))); in spvc_context_create_compiler()
288 comp->compiler.reset(new Compiler(parsed_ir->parsed)); in spvc_context_create_compiler()
294 comp->compiler.reset(new CompilerGLSL(move(parsed_ir->parsed))); in spvc_context_create_compiler()
296 comp->compiler.reset(new CompilerGLSL(parsed_ir->parsed)); in spvc_context_create_compiler()
303 comp->compiler.reset(new CompilerHLSL(move(parsed_ir->parsed))); in spvc_context_create_compiler()
305 comp->compiler.reset(new CompilerHLSL(parsed_ir->parsed)); in spvc_context_create_compiler()
312 comp->compiler.reset(new CompilerMSL(move(parsed_ir->parsed))); in spvc_context_create_compiler()
314 comp->compiler.reset(new CompilerMSL(parsed_ir->parsed)); in spvc_context_create_compiler()
[all …]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DShaderLang.cpp49 const std::vector<VarT> *GetVariableList(const TCompiler *compiler);
52 const std::vector<InterfaceBlock> *GetVariableList(const TCompiler *compiler) in GetVariableList() argument
54 return &compiler->getInterfaceBlocks(); in GetVariableList()
71 TCompiler *compiler = GetCompilerFromHandle(handle); in GetShaderVariables() local
72 if (!compiler) in GetShaderVariables()
77 return GetVariableList<VarT>(compiler); in GetShaderVariables()
359 TCompiler *compiler = base->getAsCompiler(); in ConstructCompiler() local
360 if (compiler == nullptr) in ConstructCompiler()
366 if (!compiler->Init(*resources)) in ConstructCompiler()
388 TCompiler *compiler = GetCompilerFromHandle(handle); in GetBuiltInResourcesString() local
[all …]
/third_party/mesa3d/src/gallium/drivers/r300/
Dmeson.build63 'compiler/memory_pool.c',
64 'compiler/memory_pool.h',
65 'compiler/r300_fragprog.c',
66 'compiler/r300_fragprog_emit.c',
67 'compiler/r300_fragprog.h',
68 'compiler/r300_fragprog_swizzle.c',
69 'compiler/r300_fragprog_swizzle.h',
70 'compiler/r3xx_fragprog.c',
71 'compiler/r3xx_vertprog.c',
72 'compiler/r3xx_vertprog_dump.c',
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DShaderLang.cpp37 const std::vector<VarT> *GetVariableList(const TCompiler *compiler);
40 const std::vector<Uniform> *GetVariableList(const TCompiler *compiler) in GetVariableList() argument
42 return &compiler->getUniforms(); in GetVariableList()
46 const std::vector<Varying> *GetVariableList(const TCompiler *compiler) in GetVariableList() argument
48 switch (compiler->getShaderType()) in GetVariableList()
51 return &compiler->getOutputVaryings(); in GetVariableList()
53 return &compiler->getInputVaryings(); in GetVariableList()
55 ASSERT(compiler->getOutputVaryings().empty() && compiler->getInputVaryings().empty()); in GetVariableList()
56 return &compiler->getOutputVaryings(); in GetVariableList()
65 const std::vector<Attribute> *GetVariableList(const TCompiler *compiler) in GetVariableList() argument
[all …]
/third_party/mesa3d/src/gallium/drivers/llvmpipe/ci/
Dllvmpipe-glslparser.txt231 spec/arb_bindless_texture/compiler/images/arith-bound-image.frag: skip
232 spec/arb_bindless_texture/compiler/images/arith-expr.vert: skip
233 spec/arb_bindless_texture/compiler/images/arrays-of-struct.frag: skip
234 spec/arb_bindless_texture/compiler/images/bindless-global-and-bound-global.vert: skip
235 spec/arb_bindless_texture/compiler/images/bindless-global.vert: skip
236 spec/arb_bindless_texture/compiler/images/bindless-local.vert: skip
237 spec/arb_bindless_texture/compiler/images/bindless-nonuniform.vert: skip
238 spec/arb_bindless_texture/compiler/images/bound-global.vert: skip
239 spec/arb_bindless_texture/compiler/images/bound-local.vert: skip
240 spec/arb_bindless_texture/compiler/images/bound-nonuniform.vert: skip
[all …]
/third_party/protobuf/
DBUILD.gn141 "src/google/protobuf/compiler/importer.cc",
142 "src/google/protobuf/compiler/parser.cc",
218 "src/google/protobuf/compiler/importer.cc",
219 "src/google/protobuf/compiler/parser.cc",
287 "src/google/protobuf/compiler/code_generator.cc",
288 "src/google/protobuf/compiler/command_line_interface.cc",
289 "src/google/protobuf/compiler/cpp/cpp_enum.cc",
290 "src/google/protobuf/compiler/cpp/cpp_enum_field.cc",
291 "src/google/protobuf/compiler/cpp/cpp_extension.cc",
292 "src/google/protobuf/compiler/cpp/cpp_field.cc",
[all …]

12345678910>>...394