HomeSort by relevance Sort by last modified time
    Searched refs:num_args (Results 51 - 75 of 112) sorted by null

1 23 4 5

  /external/python/cpython3/Modules/
_posixsubprocess.c 622 Py_ssize_t num_args; local
628 num_args = PySequence_Fast_GET_SIZE(fast_args);
629 converted_args = PyTuple_New(num_args);
632 for (arg_num = 0; arg_num < num_args; ++arg_num) {
  /external/tensorflow/tensorflow/compiler/aot/
codegen.cc 155 size_t num_args = ps.parameters_size(); local
156 if (config.feed_size() != num_args) {
158 config.feed_size(), ") and num_args(",
159 num_args, ")");
161 for (int i = 0; i < num_args; ++i) {
414 data->num_args = kNumArgs;
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_compiled_cpu_function.h 65 size_t num_args = 0; member in struct:tensorflow::XlaCompiledCpuFunction::StaticData
  /external/v8/src/libplatform/
default-platform.h 62 const char* scope, uint64_t id, uint64_t bind_id, int32_t num_args,
default-platform.cc 220 const char* scope, uint64_t id, uint64_t bind_id, int num_args,
227 phase, category_enabled_flag, name, scope, id, bind_id, num_args,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
inspect.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
inspect.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py     [all...]
  /system/extras/tests/icachetest/
icache_main.cpp 81 [[maybe_unused]] int num_args = argc - option_index; local
  /external/libffi/src/tile/
ffi.c 152 const long num_args = cif->nargs; local
166 for (i = 0; i < num_args; i++)
  /external/python/cpython2/Modules/_ctypes/libffi/src/tile/
ffi.c 152 const long num_args = cif->nargs; local
166 for (i = 0; i < num_args; i++)
  /external/python/cpython3/Modules/_ctypes/libffi/src/tile/
ffi.c 152 const long num_args = cif->nargs; local
166 for (i = 0; i < num_args; i++)
  /external/selinux/libsemanage/src/
semanage_store.c 1221 * 'num_args' on success.
1223 static int append_arg(char ***argv, int *num_args, const char *arg)
1227 a = realloc(*argv, sizeof(**argv) * (*num_args + 1));
1232 a[*num_args] = NULL;
1235 a[*num_args] = strdup(arg);
1236 if (!a[*num_args])
1239 (*num_args)++;
1263 int num_args = 0, in_quote = 0, in_dquote = 0, rc; local
1265 rc = append_arg(&argv, &num_args, arg0);
    [all...]
  /external/v8/src/libplatform/tracing/
tracing-controller.cc 52 const char* scope, uint64_t id, uint64_t bind_id, int num_args,
61 bind_id, num_args, arg_names, arg_types,
trace-writer.cc 155 for (int i = 0; i < trace_event->num_args(); ++i) {
  /external/e2fsprogs/misc/
fsck.c 102 static int num_devices, num_args; variable
452 for (i=0; i <num_args; i++)
1109 num_args = 0;
1152 if (num_args >= MAX_ARGS) {
1157 args[num_args++] = string_copy(arg);
1237 if (num_args >= MAX_ARGS) {
1243 args[num_args++] = string_copy(options);
  /external/libchrome/base/
command_line.cc 436 int num_args = 0; local
438 args = ::CommandLineToArgvW(command_line_string.c_str(), &num_args);
442 InitFromArgv(num_args, args);
  /art/test/712-varhandle-invocations/util-src/
generate_java.py 766 num_args = accessor.get_number_of_var_type_arguments() variable
824 num_args = accessor.get_number_of_var_type_arguments() variable
    [all...]
  /external/freetype/src/cff/
cffparse.c 1504 FT_UInt num_args; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_const.c 470 unsigned num_args,
476 function_type = LLVMFunctionType(ret_type, arg_types, num_args, 0);
  /external/tensorflow/tensorflow/core/kernels/data/
captured_function.cc 98 size_t num_args() const override {
134 size_t num_args() const override {
  /system/extras/micro_bench/
micro_bench.cpp 68 int num_args; member in struct:__anon2995
    [all...]
  /frameworks/rs/tests/lldb/
run_tests.py 120 num_args = None
123 num_args = '+'
130 nargs=num_args,
  /external/tensorflow/tensorflow/core/framework/
function.h 242 virtual size_t num_args() const = 0;
265 size_t num_args() const override { return arg_types_.size(); }

Completed in 1268 milliseconds

1 23 4 5