Home
last modified time | relevance | path

Searched refs:call_params (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/compiler/glsl/
Dlower_shared_reference.cpp296 exec_list call_params; in shared_store() local
297 call_params.push_tail(offset->clone(mem_ctx, NULL)); in shared_store()
298 call_params.push_tail(deref->clone(mem_ctx, NULL)); in shared_store()
299 call_params.push_tail(new(mem_ctx) ir_constant(write_mask)); in shared_store()
300 return new(mem_ctx) ir_call(sig, NULL, &call_params); in shared_store()
329 exec_list call_params; in shared_load() local
330 call_params.push_tail(offset->clone(mem_ctx, NULL)); in shared_load()
332 return new(mem_ctx) ir_call(sig, deref_result, &call_params); in shared_load()
422 exec_list call_params; in lower_shared_atomic_intrinsic() local
423 call_params.push_tail(deref_offset); in lower_shared_atomic_intrinsic()
[all …]
Dlower_ubo_reference.cpp470 exec_list call_params; in ssbo_store() local
471 call_params.push_tail(this->uniform_block->clone(mem_ctx, NULL)); in ssbo_store()
472 call_params.push_tail(offset->clone(mem_ctx, NULL)); in ssbo_store()
473 call_params.push_tail(deref->clone(mem_ctx, NULL)); in ssbo_store()
474 call_params.push_tail(new(mem_ctx) ir_constant(write_mask)); in ssbo_store()
475 call_params.push_tail(new(mem_ctx) ir_constant(ssbo_access_params())); in ssbo_store()
476 return new(mem_ctx) ir_call(sig, NULL, &call_params); in ssbo_store()
513 exec_list call_params; in ssbo_load() local
514 call_params.push_tail(this->uniform_block->clone(mem_ctx, NULL)); in ssbo_load()
515 call_params.push_tail(offset->clone(mem_ctx, NULL)); in ssbo_load()
[all …]
/third_party/mesa3d/src/vulkan/util/
Dvk_dispatch_table_gen.py779 def call_params(self): member in Entrypoint
812 def call_params(self): member in EntrypointAlias
813 return self.alias.call_params()
/third_party/skia/third_party/externals/tint/src/resolver/
Dintrinsic_test.cc260 ast::ExpressionList* call_params) { in add_call_param() argument
272 call_params->push_back(Expr(name)); in add_call_param()
295 ast::ExpressionList call_params; in TEST_P() local
297 add_call_param("texture", texture_type, &call_params); in TEST_P()
298 add_call_param("coords", coords_type, &call_params); in TEST_P()
300 add_call_param("array_index", ty.i32(), &call_params); in TEST_P()
302 add_call_param("level", ty.i32(), &call_params); in TEST_P()
304 auto* expr = Call("textureLoad", call_params); in TEST_P()