Home
last modified time | relevance | path

Searched refs:decl (Results 151 - 175 of 498) sorted by relevance

12345678910>>...20

/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/mesh_shader/
H A DvktMeshShaderSyncTests.cpp381 std::ostringstream decl; in getResourceDecl() local
383 decl << "layout (set=0, binding=0" << imgFormat << ") "; in getResourceDecl()
386 case ResourceType::UNIFORM_BUFFER: decl << "uniform UniformBuffer { uint value; } ub;"; break; in getResourceDecl()
387 case ResourceType::STORAGE_BUFFER: decl << storagePrefix << "buffer StorageBuffer { uint value; } sb;"; break; in getResourceDecl()
388 case ResourceType::STORAGE_IMAGE: decl << storagePrefix << "uniform uimage2D si;"; break; in getResourceDecl()
389 case ResourceType::SAMPLED_IMAGE: decl << "uniform usampler2D sampled;"; break; in getResourceDecl()
393 decl << "\n"; in getResourceDecl()
394 return decl.str(); in getResourceDecl()
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fTextureUnitTests.cpp251 sglr::pdec::ShaderProgramDeclaration decl; in generateShaderProgramDeclaration() local
253 decl << sglr::pdec::VertexAttribute("a_position", rr::GENERICVECTYPE_FLOAT); in generateShaderProgramDeclaration()
254 decl << sglr::pdec::VertexAttribute("a_coord", rr::GENERICVECTYPE_FLOAT); in generateShaderProgramDeclaration()
255 decl << sglr::pdec::VertexToFragmentVarying(rr::GENERICVECTYPE_FLOAT); in generateShaderProgramDeclaration()
256 decl << sglr::pdec::FragmentOutput(rr::GENERICVECTYPE_FLOAT); in generateShaderProgramDeclaration()
265 decl << sglr::pdec::Uniform(samplerName, samplerTypes[ndx]); in generateShaderProgramDeclaration()
266 decl << sglr::pdec::Uniform(transformationName, glu::TYPE_FLOAT_MAT4); in generateShaderProgramDeclaration()
267 decl << sglr::pdec::Uniform(scaleName, glu::TYPE_FLOAT_VEC4); in generateShaderProgramDeclaration()
268 decl << sglr::pdec::Uniform(biasName, glu::TYPE_FLOAT_VEC4); in generateShaderProgramDeclaration()
271 decl << sgl in generateShaderProgramDeclaration()
[all...]
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_iterate.h52 struct tgsi_full_declaration *decl );
H A Dtgsi_dump.h81 const struct tgsi_full_declaration *decl );
H A Dtgsi_transform.c95 const struct tgsi_full_declaration *decl) in emit_declaration()
101 emitted = tgsi_build_full_declaration(decl, in emit_declaration()
94 emit_declaration(struct tgsi_transform_context *ctx, const struct tgsi_full_declaration *decl) emit_declaration() argument
H A Dtgsi_scan.c972 struct tgsi_full_declaration *decl = &parse.FullToken.FullDeclaration; in tgsi_scan_arrays() local
974 if (decl->Declaration.Array && decl->Declaration.File == file && in tgsi_scan_arrays()
975 decl->Array.ArrayID > 0 && decl->Array.ArrayID <= max_array_id) { in tgsi_scan_arrays()
976 struct tgsi_array_info *array = &arrays[decl->Array.ArrayID - 1]; in tgsi_scan_arrays()
979 array->range = decl->Range; in tgsi_scan_arrays()
/third_party/selinux/libsepol/include/sepol/policydb/
H A Davrule_block.h36 avrule_decl_t * decl,
/third_party/skia/third_party/externals/spirv-cross/
H A Dspirv_msl.cpp9147 string decl;
9160 decl += "void";
9164 decl += func_type_decl(type);
9167 decl += " ";
9168 decl += to_name(func.self);
9169 decl += "(";
9174 decl += "thread ";
9175 decl += type_to_glsl(type);
9176 decl += " (&spvReturnValue)";
9177 decl
[all...]
/third_party/selinux/libsepol/src/
H A Dexpand.c2059 * has been appended to its home decl->avrules list during link in cond_node_copy()
2759 avrule_decl_t *decl = curblock->enabled; in copy_and_expand_avrule_block() local
2762 if (decl == NULL) { in copy_and_expand_avrule_block()
2768 if (copy_role_allows(state, decl->role_allow_rules) != 0 || in copy_and_expand_avrule_block()
2769 copy_role_trans(state, decl->role_tr_rules) != 0) { in copy_and_expand_avrule_block()
2773 if (expand_filename_trans(state, decl->filename_trans_rules)) in copy_and_expand_avrule_block()
2777 if (expand_range_trans(state, decl->range_tr_rules)) in copy_and_expand_avrule_block()
2781 cur_avrule = decl->avrules; in copy_and_expand_avrule_block()
2806 if (cond_node_copy(state, decl->cond_list)) in copy_and_expand_avrule_block()
2859 avrule_decl_t *decl; in discard_tunables() local
3118 avrule_decl_t *decl = curblock->enabled; expand_module() local
[all...]
H A Dpolicydb.c1185 avrule_decl_t *decl; in policydb_index_decls() local
1191 for (decl = curblock->branch_list; decl != NULL; in policydb_index_decls()
1192 decl = decl->next) { in policydb_index_decls()
1204 for (decl = curblock->branch_list; decl != NULL; in policydb_index_decls()
1205 decl = decl->next) { in policydb_index_decls()
1206 if (!value_isvalid(decl in policydb_index_decls()
3980 avrule_decl_read(policydb_t * p, avrule_decl_t * decl, unsigned int num_scope_syms, struct policy_file *fp) avrule_decl_read() argument
[all...]
/third_party/python/Tools/c-analyzer/c_parser/parser/
H A D_func_body.py59 storage, decl,
89 # un-inline the decl. Note that it might not actually be inline.
152 _, name, vartype = parse_var_decl(decl)
229 # un-inline the decl. Note that it might not actually be inline.
/third_party/skia/third_party/externals/tint/src/resolver/
H A Ddependency_graph_test.cc797 // Self reference by decl
1089 auto* decl = AST().GlobalDeclarations()[0]; in TEST_P() local
1091 EXPECT_THAT(Build().ordered_globals, ElementsAre(decl, use)); in TEST_P()
1110 auto* decl = AST().GlobalDeclarations()[1]; in TEST_P() local
1111 EXPECT_THAT(Build().ordered_globals, ElementsAre(decl, use)); in TEST_P()
1147 auto* decl = helper.Add(decl_kind, symbol, Source{{12, 34}}); in TEST_P() local
1160 EXPECT_EQ(resolved_symbol, decl) in TEST_P()
1164 << "decl: " << decl->TypeInfo().name; in TEST_P()
1250 const ast::Node* decl in TEST_F() member
[all...]
/third_party/node/deps/openssl/config/archs/linux-elf/asm/crypto/bn/
H A Dx86-mont.S143 decl %ebx
159 decl %ebx
447 decl %ecx
464 decl %ebx
/third_party/node/deps/openssl/config/archs/BSD-x86/asm_avx2/crypto/bn/
H A Dx86-mont.S144 decl %ebx
160 decl %ebx
448 decl %ecx
465 decl %ebx
/third_party/node/deps/openssl/config/archs/BSD-x86/asm/crypto/bn/
H A Dx86-mont.S144 decl %ebx
160 decl %ebx
448 decl %ecx
465 decl %ebx
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/asm/crypto/bn/
H A Dx86-mont.S142 decl %ebx
158 decl %ebx
446 decl %ecx
463 decl %ebx
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/asm_avx2/crypto/bn/
H A Dx86-mont.S142 decl %ebx
158 decl %ebx
446 decl %ecx
463 decl %ebx
/third_party/node/deps/openssl/config/archs/solaris-x86-gcc/asm/crypto/bn/
H A Dx86-mont.S143 decl %ebx
159 decl %ebx
447 decl %ecx
464 decl %ebx
/third_party/node/deps/openssl/config/archs/solaris-x86-gcc/asm_avx2/crypto/bn/
H A Dx86-mont.S143 decl %ebx
159 decl %ebx
447 decl %ecx
464 decl %ebx
/third_party/node/deps/openssl/config/archs/linux-elf/asm_avx2/crypto/bn/
H A Dx86-mont.S143 decl %ebx
159 decl %ebx
447 decl %ecx
464 decl %ebx
/third_party/mesa3d/src/compiler/spirv/
H A Dvtn_opencl.c152 /* if not found here find in clc shader and create a decl mirroring it */ in mangle_and_find()
161 nir_function *decl = nir_function_create(b->shader, mname); in mangle_and_find() local
162 decl->num_params = found->num_params; in mangle_and_find()
163 decl->params = ralloc_array(b->shader, nir_parameter, decl->num_params); in mangle_and_find()
164 for (unsigned i = 0; i < decl->num_params; i++) { in mangle_and_find()
165 decl->params[i] = found->params[i]; in mangle_and_find()
167 found = decl; in mangle_and_find()
/third_party/node/deps/v8/src/runtime/
H A Druntime-scopes.cc148 Object decl = declarations->get(i); in RUNTIME_FUNCTION()
151 if (decl.IsSmi()) { in RUNTIME_FUNCTION()
152 index = Smi::ToInt(decl); in RUNTIME_FUNCTION()
195 Handle<Object> decl(declarations->get(i), isolate); in RUNTIME_FUNCTION()
198 bool is_var = decl->IsString(); in RUNTIME_FUNCTION()
201 name = Handle<String>::cast(decl); in RUNTIME_FUNCTION()
204 Handle<SharedFunctionInfo> sfi = Handle<SharedFunctionInfo>::cast(decl); in RUNTIME_FUNCTION()
/third_party/skia/src/sksl/codegen/
H A DSkSLVMCodeGenerator.cpp240 void writeVarDeclaration(const VarDeclaration& decl);
381 const VarDeclaration& decl = gvd.declaration()->as<VarDeclaration>();
382 const Variable& var = decl.var();
429 if (decl.value()) {
430 Value val = this->writeExpression(*decl.value());
443 const FunctionDeclaration& decl = function.declaration();
444 SkASSERT(decl.returnType().slotCount() == outReturn.size());
454 for (const Variable* p : decl.parameters()) {
469 for (const Variable* p : decl.parameters()) {
1320 const FunctionDeclaration& decl
[all...]
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_tgsi_aos.c374 const struct tgsi_full_declaration *decl) in lp_emit_declaration_aos()
379 unsigned first = decl->Range.First; in lp_emit_declaration_aos()
380 unsigned last = decl->Range.Last; in lp_emit_declaration_aos()
384 switch (decl->Declaration.File) { in lp_emit_declaration_aos()
412 bld->sv[idx] = decl->SamplerView; in lp_emit_declaration_aos()
372 lp_emit_declaration_aos( struct lp_build_tgsi_aos_context *bld, const struct tgsi_full_declaration *decl) lp_emit_declaration_aos() argument
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DOutputGLSLBase.cpp946 TIntermTyped *decl = sequence.front()->getAsTyped(); in visitDeclaration() local
947 TIntermSymbol *symbolNode = decl->getAsSymbolNode(); in visitDeclaration()
950 ASSERT(decl->getAsBinaryNode() && decl->getAsBinaryNode()->getOp() == EOpInitialize); in visitDeclaration()
951 symbolNode = decl->getAsBinaryNode()->getLeft()->getAsSymbolNode(); in visitDeclaration()

Completed in 37 milliseconds

12345678910>>...20