Home
last modified time | relevance | path

Searched refs:num_params (Results 1 – 25 of 92) sorted by relevance

1234

/external/mesa3d/src/compiler/nir/
Dnir_inline_functions.c86 assert(param_idx < impl->function->num_params); in nir_inline_function_impl()
150 const unsigned num_params = call->num_params; in inline_functions_block() local
151 NIR_VLA(nir_ssa_def *, params, num_params); in inline_functions_block()
152 for (unsigned i = 0; i < num_params; i++) { in inline_functions_block()
Dnir_clone.c489 for (unsigned i = 0; i < ncall->num_params; i++) in clone_call()
724 nfxn->num_params = fxn->num_params; in clone_function()
725 if (fxn->num_params) { in clone_function()
726 nfxn->params = ralloc_array(state->ns, nir_parameter, fxn->num_params); in clone_function()
727 memcpy(nfxn->params, fxn->params, sizeof(nir_parameter) * fxn->num_params); in clone_function()
/external/kernel-headers/original/uapi/linux/
Dtee.h241 __u32 num_params; member
272 __u32 num_params; member
327 __u32 num_params; member
348 __u32 num_params; member
/external/python/cpython3/Modules/_sqlite/
Dstatement.c243 Py_ssize_t num_params; in pysqlite_statement_bind_parameters() local
252 num_params = PyTuple_GET_SIZE(parameters); in pysqlite_statement_bind_parameters()
254 num_params = PyList_GET_SIZE(parameters); in pysqlite_statement_bind_parameters()
256 num_params = PySequence_Size(parameters); in pysqlite_statement_bind_parameters()
257 if (num_params == -1) { in pysqlite_statement_bind_parameters()
261 if (num_params != num_params_needed) { in pysqlite_statement_bind_parameters()
265 num_params_needed, num_params); in pysqlite_statement_bind_parameters()
268 for (i = 0; i < num_params; i++) { in pysqlite_statement_bind_parameters()
/external/python/cpython2/Modules/_sqlite/
Dstatement.c225 int num_params; in pysqlite_statement_bind_parameters() local
234 num_params = PyTuple_GET_SIZE(parameters); in pysqlite_statement_bind_parameters()
236 num_params = PyList_GET_SIZE(parameters); in pysqlite_statement_bind_parameters()
238 num_params = PySequence_Size(parameters); in pysqlite_statement_bind_parameters()
240 if (num_params != num_params_needed) { in pysqlite_statement_bind_parameters()
242 num_params_needed, num_params); in pysqlite_statement_bind_parameters()
245 for (i = 0; i < num_params; i++) { in pysqlite_statement_bind_parameters()
/external/mesa3d/src/gallium/auxiliary/util/
Du_draw.c139 unsigned num_params = info_in->index_size ? 5 : 4; in util_draw_indirect() local
164 num_params = MIN2(info_in->indirect->stride / 4, num_params); in util_draw_indirect()
169 (num_params * info_in->indirect->draw_count) * sizeof(uint32_t), in util_draw_indirect()
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DCudnnRNNCanonicalToParams.pbtxt18 number_attr: "num_params"
23 number_attr: "num_params"
41 name: "num_params"
DCudnnRNNParamsToCanonical.pbtxt22 number_attr: "num_params"
27 number_attr: "num_params"
41 name: "num_params"
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/
DCudnnRNNParamsToCanonical.pbtxt22 number_attr: "num_params"
27 number_attr: "num_params"
41 name: "num_params"
DCudnnRNNCanonicalToParams.pbtxt18 number_attr: "num_params"
23 number_attr: "num_params"
41 name: "num_params"
/external/freetype/src/sfnt/
Dsfobjs.h34 FT_Int num_params,
41 FT_Int num_params,
/external/tensorflow/tensorflow/core/kernels/
Dragged_gather_op.cc76 SPLITS_TYPE num_params = params_nested_splits_in[0].dim_size(0) - 1; in Compute() local
77 OP_REQUIRES_OK(context, ValidateIndices(indices_in, num_params)); in Compute()
104 SPLITS_TYPE num_params) { in ValidateIndices() argument
108 if (index < 0 || index >= num_params) { in ValidateIndices()
111 " is not in [0, ", num_params, ")"); in ValidateIndices()
/external/pdfium/core/fpdfdoc/
Dcpdf_defaultappearance_unittest.cpp19 int num_params; in TEST() member
46 &parser, test_data[i].token, test_data[i].num_params)) in TEST()
/external/linux-kselftest/tools/testing/selftests/powerpc/include/
Dbasic_asm.h43 #define STACK_FRAME_LOCAL(num_params, var) \ argument
44 __STACK_FRAME_LOCAL(num_params, var)
/external/libbrillo/brillo/
Ddata_encoding_fuzzer.cc29 const auto num_params = provider->ConsumeIntegralInRange(0, kMaxParamsSize); in FuzzWebParamsEncodeDecode() local
30 for (auto i = 0; i < num_params; i++) { in FuzzWebParamsEncodeDecode()
/external/tensorflow/tensorflow/core/ops/
Dcudnn_rnn_ops.cc352 int num_params; in __anon20e2ac3d0902() local
353 TF_RETURN_IF_ERROR(c->GetAttr("num_params", &num_params)); in __anon20e2ac3d0902()
355 for (int i = 0; i < num_params; i++) { in __anon20e2ac3d0902()
360 for (int i = 0; i < num_params; i++) { in __anon20e2ac3d0902()
361 c->set_output(num_params + i, c->Vector(InferenceContext::kUnknownDim)); in __anon20e2ac3d0902()
/external/mesa3d/src/compiler/spirv/
Dnir_lower_libclc.c51 nir_ssa_def **params = rzalloc_array(b->shader, nir_ssa_def*, call->num_params); in lower_clc_call_instr()
53 for (unsigned i = 0; i < call->num_params; i++) { in lower_clc_call_instr()
Dvtn_cfg.c140 assert(param_idx == call->num_params); in vtn_handle_function_call()
177 unsigned num_params = 0; in vtn_cfg_handle_prepass_instruction() local
179 num_params += glsl_type_count_function_params(func_type->params[i]->type); in vtn_cfg_handle_prepass_instruction()
183 num_params++; in vtn_cfg_handle_prepass_instruction()
185 func->num_params = num_params; in vtn_cfg_handle_prepass_instruction()
186 func->params = ralloc_array(b->shader, nir_parameter, num_params); in vtn_cfg_handle_prepass_instruction()
201 assert(idx == num_params); in vtn_cfg_handle_prepass_instruction()
222 vtn_assert(b->func_param_idx < b->func->impl->function->num_params); in vtn_cfg_handle_prepass_instruction()
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
Dp5-generic-lambda-1y.cpp27 int num_params = O(O, 5, 3, "abc", 3.14, 'a'); variable
45 int num_params = O(O, 5, 3, "abc", 3.14, 'a'); variable
/external/freetype/src/type42/
Dt42objs.c165 FT_Int num_params, in T42_Face_Init() argument
176 FT_UNUSED( num_params ); in T42_Face_Init()
296 if ( num_params ) in T42_Face_Init()
299 args.num_params = num_params; in T42_Face_Init()
/external/freetype/src/base/
Dftbase.h47 FT_Int num_params,
/external/freetype/src/cff/
Dcffobjs.h61 FT_Int num_params,
/external/selinux/libsepol/src/
Dkernel_to_conf.c49 uint32_t num_params; in cond_expr_to_str() local
54 case COND_NOT: op = "!"; num_params = 1; break; in cond_expr_to_str()
55 case COND_OR: op = "||"; num_params = 2; break; in cond_expr_to_str()
56 case COND_AND: op = "&&"; num_params = 2; break; in cond_expr_to_str()
57 case COND_XOR: op = "^"; num_params = 2; break; in cond_expr_to_str()
58 case COND_EQ: op = "=="; num_params = 2; break; in cond_expr_to_str()
59 case COND_NEQ: op = "!="; num_params = 2; break; in cond_expr_to_str()
65 if (num_params == 2) { in cond_expr_to_str()
78 if (num_params == 2) { in cond_expr_to_str()
203 uint32_t num_params; in constraint_expr_to_str() local
[all …]
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/fuzz/
Dfuzzer_context.h462 uint32_t GetRandomNumberOfParametersReplacedWithStruct(uint32_t num_params) { in GetRandomNumberOfParametersReplacedWithStruct() argument
463 assert(num_params != 0 && "A function must have parameters to replace"); in GetRandomNumberOfParametersReplacedWithStruct()
465 {1, std::min(num_params, in GetRandomNumberOfParametersReplacedWithStruct()
/external/deqp-deps/SPIRV-Tools/source/fuzz/
Dfuzzer_context.h462 uint32_t GetRandomNumberOfParametersReplacedWithStruct(uint32_t num_params) { in GetRandomNumberOfParametersReplacedWithStruct() argument
463 assert(num_params != 0 && "A function must have parameters to replace"); in GetRandomNumberOfParametersReplacedWithStruct()
465 {1, std::min(num_params, in GetRandomNumberOfParametersReplacedWithStruct()

1234