Searched refs:n_arg (Results 1 - 3 of 3) sorted by relevance
/third_party/ltp/tools/sparse/sparse-src/ |
H A D | sparse-llvm.c | 37 int n_arg = symbol_list_size(sym->arguments); in sym_func_type() local 38 LLVMTypeRef *arg_type = calloc(n_arg, sizeof(LLVMTypeRef)); in sym_func_type() 49 return LLVMFunctionType(ret_type, arg_type, n_arg, sym->variadic); in sym_func_type() 801 int n_arg = 0, i; in output_op_call() local 806 n_arg = pseudo_list_size(insn->arguments); in output_op_call() 807 args = calloc(n_arg, sizeof(LLVMValueRef)); in output_op_call() 822 target = LLVMBuildCall(fn->builder, func, args, n_arg, name); in output_op_call()
|
/third_party/python/Modules/_sqlite/clinic/ |
H A D | connection.c.h | 437 "create_aggregate($self, /, name, n_arg, aggregate_class)\n" 448 const char *name, int n_arg, 455 static const char * const _keywords[] = {"name", "n_arg", "aggregate_class", NULL}; in pysqlite_connection_create_aggregate() 459 int n_arg; in pysqlite_connection_create_aggregate() local 479 n_arg = _PyLong_AsInt(args[1]); in pysqlite_connection_create_aggregate() 480 if (n_arg == -1 && PyErr_Occurred()) { in pysqlite_connection_create_aggregate() 484 return_value = pysqlite_connection_create_aggregate_impl(self, cls, name, n_arg, aggregate_class); in pysqlite_connection_create_aggregate()
|
/third_party/python/Modules/_sqlite/ |
H A D | connection.c | 1205 n_arg: int 1214 const char *name, int n_arg, in pysqlite_connection_create_aggregate_impl() 1228 rc = sqlite3_create_function_v2(self->db, name, n_arg, SQLITE_UTF8, ctx, in pysqlite_connection_create_aggregate_impl() 1212 pysqlite_connection_create_aggregate_impl(pysqlite_Connection *self, PyTypeObject *cls, const char *name, int n_arg, PyObject *aggregate_class) pysqlite_connection_create_aggregate_impl() argument
|
Completed in 6 milliseconds