Home
last modified time | relevance | path

Searched refs:invocation (Results 1 - 25 of 44) sorted by relevance

12

/third_party/skia/third_party/externals/spirv-tools/test/
H A Dc_interface_test.cpp113 int invocation = 0; in TEST() local
116 [&invocation](spv_message_level_t level, const char* source, in TEST()
118 ++invocation; in TEST()
133 EXPECT_EQ(1, invocation); in TEST()
143 int invocation = 0; in TEST() local
146 [&invocation](spv_message_level_t level, const char* source, in TEST()
148 ++invocation; in TEST()
168 EXPECT_EQ(1, invocation); in TEST()
180 int invocation = 0; in TEST() local
183 [&invocation](spv_message_level_ in TEST()
219 int invocation = 0; TEST() local
242 int invocation = 0; TEST() local
273 int invocation = 0; TEST() local
[all...]
H A Dlog_test.cpp25 int invocation = 0; in TEST() local
26 auto consumer = [&invocation](spv_message_level_t level, const char* source, in TEST()
28 ++invocation; in TEST()
35 EXPECT_EQ(1, invocation); in TEST()
39 int invocation = 0; in TEST() local
40 auto consumer = [&invocation](spv_message_level_t level, const char* source, in TEST()
42 ++invocation; in TEST()
49 EXPECT_EQ(1, invocation); in TEST()
H A Dbinary_parse_test.cpp288 int invocation = 0; in TEST_F() local
289 ctx.SetMessageConsumer([&invocation](spv_message_level_t, const char*, in TEST_F()
291 const char*) { ++invocation; }); in TEST_F()
298 EXPECT_EQ(0, invocation); in TEST_F()
305 int invocation = 0; in TEST_F() local
307 [&invocation](spv_message_level_t level, const char* source, in TEST_F()
309 ++invocation; in TEST_F()
324 EXPECT_EQ(1, invocation); in TEST_F()
331 int invocation = 0; in TEST_F() local
332 ctx.SetMessageConsumer([&invocation](spv_message_level_ in TEST_F()
349 int invocation = 0; TEST_F() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
H A Dc_interface_test.cpp113 int invocation = 0; in TEST() local
116 [&invocation](spv_message_level_t level, const char* source, in TEST()
118 ++invocation; in TEST()
133 EXPECT_EQ(1, invocation); in TEST()
143 int invocation = 0; in TEST() local
146 [&invocation](spv_message_level_t level, const char* source, in TEST()
148 ++invocation; in TEST()
168 EXPECT_EQ(1, invocation); in TEST()
180 int invocation = 0; in TEST() local
183 [&invocation](spv_message_level_ in TEST()
219 int invocation = 0; TEST() local
242 int invocation = 0; TEST() local
273 int invocation = 0; TEST() local
[all...]
H A Dlog_test.cpp25 int invocation = 0; in TEST() local
26 auto consumer = [&invocation](spv_message_level_t level, const char* source, in TEST()
28 ++invocation; in TEST()
35 EXPECT_EQ(1, invocation); in TEST()
39 int invocation = 0; in TEST() local
40 auto consumer = [&invocation](spv_message_level_t level, const char* source, in TEST()
42 ++invocation; in TEST()
49 EXPECT_EQ(1, invocation); in TEST()
H A Dbinary_parse_test.cpp288 int invocation = 0; in TEST_F() local
289 ctx.SetMessageConsumer([&invocation](spv_message_level_t, const char*, in TEST_F()
291 const char*) { ++invocation; }); in TEST_F()
298 EXPECT_EQ(0, invocation); in TEST_F()
305 int invocation = 0; in TEST_F() local
307 [&invocation](spv_message_level_t level, const char* source, in TEST_F()
309 ++invocation; in TEST_F()
324 EXPECT_EQ(1, invocation); in TEST_F()
331 int invocation = 0; in TEST_F() local
332 ctx.SetMessageConsumer([&invocation](spv_message_level_ in TEST_F()
349 int invocation = 0; TEST_F() local
[all...]
/third_party/spirv-tools/test/
H A Dc_interface_test.cpp113 int invocation = 0; in TEST() local
116 [&invocation](spv_message_level_t level, const char* source, in TEST()
118 ++invocation; in TEST()
136 EXPECT_EQ(1, invocation); in TEST()
146 int invocation = 0; in TEST() local
149 [&invocation](spv_message_level_t level, const char* source, in TEST()
151 ++invocation; in TEST()
171 EXPECT_EQ(1, invocation); in TEST()
183 int invocation = 0; in TEST() local
186 [&invocation](spv_message_level_ in TEST()
222 int invocation = 0; TEST() local
248 int invocation = 0; TEST() local
279 int invocation = 0; TEST() local
[all...]
H A Dbinary_parse_test.cpp354 int invocation = 0; in TEST_F() local
355 ctx.SetMessageConsumer([&invocation](spv_message_level_t, const char*, in TEST_F()
357 const char*) { ++invocation; }); in TEST_F()
364 EXPECT_EQ(0, invocation); in TEST_F()
370 int invocation = 0; in TEST_F() local
371 tools.SetMessageConsumer([&invocation](spv_message_level_t, const char*, in TEST_F()
373 const char*) { ++invocation; }); in TEST_F()
379 EXPECT_EQ(0, invocation); in TEST_F()
386 int invocation = 0; in TEST_F() local
388 [&invocation](spv_message_level_ in TEST_F()
411 int invocation = 0; TEST_F() local
436 int invocation = 0; TEST_F() local
453 int invocation = 0; TEST_F() local
470 int invocation = 0; TEST_F() local
488 int invocation = 0; TEST_F() local
[all...]
/third_party/gn/src/gn/
H A Dtemplate.cc29 const FunctionCallNode* invocation, in Invoke()
36 if (!EnsureNotProcessingImport(invocation, scope, err)) in Invoke()
42 // First run the invocation's block. Need to allocate the scope on the heap in Invoke()
45 if (!FillTargetBlockScope(scope, invocation, template_name, block, args, in Invoke()
50 // Don't allow the block of the template invocation to include other in Invoke()
54 NonNestableBlock non_nestable(scope, invocation, "template invocation"); in Invoke()
72 // Track the invocation of the template on the template's scope in Invoke()
74 template_name, args[0].string_value(), invocation->GetRange().begin()); in Invoke()
86 // We jump through some hoops to avoid copying the invocation scop in Invoke()
28 Invoke(Scope* scope, const FunctionCallNode* invocation, const std::string& template_name, const std::vector<Value>& args, BlockNode* block, Err* err) const Invoke() argument
[all...]
H A Dtemplate.h40 const FunctionCallNode* invocation,
H A Dfunction_template.cc137 # Name the source set the same as the template invocation so instancing
H A Dcommand_gen.cc473 // build.ninja or build.ninja.stamp files so the next ninja invocation in RunNinjaPostProcessTools()
571 This string is passed without any quoting to the ninja invocation
618 This string is passed without any quoting to the ninja invocation
704 invocation adds an additional label pattern.
/third_party/python/Lib/lib2to3/fixes/
H A Dfix_operator.py19 def invocation(s): function
21 f.invocation = s
48 @invocation("operator.contains(%s)")
52 @invocation("callable(%s)")
57 @invocation("operator.mul(%s)")
61 @invocation("operator.imul(%s)")
65 @invocation("isinstance(%s, collections.abc.Sequence)")
69 @invocation("isinstance(%s, collections.abc.Mapping)")
73 @invocation("isinstance(%s, numbers.Number)")
95 invocation_str = method.invocation
[all...]
/third_party/node/test/async-hooks/
H A Dhook-checks.js22 `${stageInfo} Trying to check invocation for an activity, ` +
43 `but expected ${val} invocation(s).`;
47 // the actual invocation count match
49 `time(s), but expected ${val} invocation(s).`;
/third_party/mesa3d/src/panfrost/lib/genxml/
H A Ddecode.c475 pan_unpack(i, INVOCATION, invocation); in pandecode_invocation()
477 unsigned size_x = bits(invocation.invocations, 0, invocation.size_y_shift) + 1; in pandecode_invocation()
478 unsigned size_y = bits(invocation.invocations, invocation.size_y_shift, invocation.size_z_shift) + 1; in pandecode_invocation()
479 unsigned size_z = bits(invocation.invocations, invocation.size_z_shift, invocation.workgroups_x_shift) + 1; in pandecode_invocation()
481 unsigned groups_x = bits(invocation in pandecode_invocation()
[all...]
/third_party/skia/src/gpu/
H A DGrFragmentProcessor.cpp942 auto invocation = SkStringPrintf("%s(%s", this->childProcessor(childIndex)->functionName(),
949 invocation.appendf(", %s", destColor);
959 invocation.appendf(", %s", skslCoords.empty() ? args.fSampleCoord : skslCoords.c_str());
962 invocation.append(")");
963 return invocation;
990 auto invocation = SkStringPrintf("%s(%s", this->childProcessor(childIndex)->functionName(),
997 invocation.appendf(", %s", destColor);
1012 invocation.appendf(", proj((%s) * %s.xy1)", matrixName.c_str(), args.fSampleCoord);
1014 invocation.appendf(", float3x2(%s) * %s.xy1", matrixName.c_str(), args.fSampleCoord);
1016 invocation
[all...]
/third_party/mesa3d/src/panfrost/lib/
H A Dpan_indirect_dispatch.c64 void *invocation = in pan_indirect_dispatch_emit() local
67 panfrost_pack_work_groups_compute(invocation, in pan_indirect_dispatch_emit()
H A Dpan_indirect_draw.c79 nir_ssa_def *invocation; member
398 /* Update the invocation words. */ in update_job()
400 builder->jobs.invocation, 2); in update_job()
756 builder->jobs.invocation = in get_invocation()
1243 void *invocation = in panfrost_emit_index_min_max_search() local
1245 panfrost_pack_work_groups_compute(invocation, in panfrost_emit_index_min_max_search()
1325 void *invocation = in panfrost_emit_indirect_draw() local
1327 panfrost_pack_work_groups_compute(invocation, in panfrost_emit_indirect_draw()
/third_party/skia/third_party/externals/tint/tools/src/cmd/run-parallel/
H A Dmain.go47 per-instance-value for the given invocation.
/third_party/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_gs.c425 for (unsigned invocation = 0; invocation < shader->num_invocations; invocation++) { in gs_flush()
426 shader->invocation_id = invocation; in gs_flush()
/third_party/libunwind/libunwind/doc/
H A Dunw_reg_states_iterate.tex31 The callback function may be invoked several times for each call of \Func{unw\_reg\_states\_iterate}. Each call is associcated with a instruction address range and a set of instructions on how to update register values when returning from the procedure in that address range. For each invocation, the arguments to the callback function are:
/third_party/node/deps/npm/node_modules/libnpmpublish/lib/
H A Dprovenance.js75 invocation: {
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DPixelRoutine.hpp118 SampleSet getSampleSet(int invocation) const;
/third_party/mesa3d/src/gallium/drivers/panfrost/
H A Dpan_cmdstream.c3552 struct mali_invocation_packed invocation; in panfrost_launch_xfb() local
3554 panfrost_pack_work_groups_compute(&invocation, in panfrost_launch_xfb()
3562 panfrost_draw_emit_vertex(batch, info, &invocation, 0, 0, in panfrost_launch_xfb()
3668 struct mali_invocation_packed invocation; in panfrost_direct_draw() local
3670 panfrost_pack_work_groups_compute(&invocation, in panfrost_direct_draw()
3674 pan_pack(&invocation, INVOCATION, cfg) { in panfrost_direct_draw()
3731 panfrost_draw_emit_tiler(batch, info, draw, &invocation, indices, in panfrost_direct_draw()
3746 panfrost_draw_emit_vertex(batch, info, &invocation, in panfrost_direct_draw()
3833 /* Zero-ed invocation, the compute job will update it. */ in panfrost_indirect_draw()
3834 static struct mali_invocation_packed invocation; in panfrost_indirect_draw() local
[all...]
/third_party/mesa3d/src/panfrost/vulkan/
H A Dpanvk_vX_cs.c376 memcpy(section, &draw->invocation, pan_size(INVOCATION)); in emit_vertex_job()
527 memcpy(section, &draw->invocation, pan_size(INVOCATION)); in emit_tiler_job()

Completed in 24 milliseconds

12