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

1 2 3 4 5

  /external/toolchain-utils/binary_search_tool/test/
is_good_noinc_prune.py 27 num_args = num_good_args + num_bad_args
28 if num_args != len(working_set):
29 print('Only %d args, expected %d' % (num_args, len(working_set)))
  /external/webrtc/webrtc/base/
event_tracer.h 38 int num_args,
64 int num_args,
event_tracer_unittest.cc 53 int num_args,
event_tracer.cc 53 int num_args,
63 num_args,
216 int num_args,
  /external/selinux/libsepol/include/sepol/policydb/
util.h 41 extern int tokenize(char *line_buf, char delim, int num_args, ...);
  /system/core/init/
keyword_map.h 45 auto num_args = args.size() - 1; local
56 if (min_args == max_args && num_args != min_args) {
61 if (num_args < min_args || num_args > max_args) {
  /device/google/marlin/power/
utils.h 51 int interaction_with_handle(int lock_handle, int duration, int num_args, int opt_list[]);
utils.c 207 void interaction(int duration, int num_args, int opt_list[])
212 if (duration < 0 || num_args < 1 || opt_list[0] == 0)
217 lock_handle = perf_lock_acq(lock_handle, duration, opt_list, num_args);
225 int interaction_with_handle(int lock_handle, int duration, int num_args, int opt_list[])
228 if (duration < 0 || num_args < 1 || opt_list[0] == 0)
233 lock_handle = perf_lock_acq(lock_handle, duration, opt_list, num_args);
  /hardware/qcom/display/msm8909/sdm/libs/hwc/
cpuhint.h 55 int (*fn_lock_acquire_)(int handle, int duration, int *hints, int num_args) = NULL;
  /hardware/qcom/display/msm8909w_3100/sdm/libs/hwc/
cpuhint.h 55 int (*fn_lock_acquire_)(int handle, int duration, int *hints, int num_args) = NULL;
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
cpuhint.h 55 int (*fn_lock_acquire_)(int handle, int duration, int *hints, int num_args) = NULL;
  /hardware/qcom/display/msm8998/sdm/libs/hwc2/
cpuhint.h 55 int (*fn_lock_acquire_)(int handle, int duration, int *hints, int num_args) = NULL;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_intr.h 71 unsigned num_args);
83 unsigned num_args,
116 unsigned num_args);
lp_bld_intr.c 105 unsigned num_args)
112 function_type = LLVMFunctionType(ret_type, arg_types, num_args, 0);
189 unsigned num_args,
200 assert(num_args <= LP_MAX_FUNC_ARGS);
202 for(i = 0; i < num_args; ++i) {
207 function = lp_declare_intrinsic(module, name, ret_type, arg_types, num_args);
224 return LLVMBuildCall(builder, function, args, num_args, "");
348 unsigned num_args)
356 assert(num_args <= LP_MAX_FUNC_ARGS);
363 for(j = 0; j < num_args; ++j
    [all...]
  /build/make/tools/atree/
fs.cpp 160 int num_args = 0; local
165 ++num_args;
170 if (num_args <= 0) {
174 } else if (num_args == 1) {
180 const char** args = (const char**) malloc(sizeof(const char*) * (num_args + 2));
197 args[num_args] = path.c_str();
198 args[num_args + 1] = NULL;
  /external/v8/include/
v8-platform.h 171 const char* scope, uint64_t id, uint64_t bind_id, int32_t num_args,
187 const char* scope, uint64_t id, uint64_t bind_id, int32_t num_args,
193 num_args, arg_names, arg_types, arg_values, flags);
  /system/bt/vendor_libs/test_vendor_lib/src/
test_channel_transport.cc 118 uint8_t num_args = 0; local
119 read(fd, &num_args, 1);
120 LOG_INFO(LOG_TAG, "num_args: %d", num_args);
122 for (uint8_t i = 0; i < num_args; ++i) {
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_compiled_cpu_function.cc 27 args_(new void*[static_data.num_args]),
36 static_data.arg_sizes, static_data.num_args, args_,
  /external/v8/src/libplatform/tracing/
trace-object.cc 36 const char* scope, uint64_t id, uint64_t bind_id, int num_args,
55 // Clamp num_args since it may have been set by a third-party library.
56 num_args_ = (num_args > kTraceMaxNumArgs) ? kTraceMaxNumArgs : num_args;
113 const char* scope, uint64_t id, uint64_t bind_id, int num_args,
127 num_args_ = num_args;
  /external/freetype/src/psaux/
cffdecode.c 616 FT_Int num_args = (FT_Int)( args - decoder->stack ); local
867 if ( num_args > 0 && decoder->read_width )
884 set_width_ok = num_args & 2;
894 set_width_ok = num_args & 1;
902 : ( ( num_args == 5 ) || ( num_args == 1 ) );
922 num_args--;
931 if ( num_args < req_args )
934 num_args -= req_args;
959 num_args / 2
    [all...]
  /external/selinux/libselinux/src/
label_support.c 58 * num_args - The number of spec parameter entries to process.
66 int hidden read_spec_entries(char *line_buf, const char **errbuf, int num_args, ...)
92 va_start(ap, num_args);
95 while (items < num_args) {
  /art/compiler/optimizing/
builder.cc 175 size_t num_args = strlen(shorty + 1); local
176 size_t num_wide_args = std::count(shorty + 1, shorty + 1 + num_args, 'J') +
177 std::count(shorty + 1, shorty + 1 + num_args, 'D');
178 size_t num_arg_vregs = num_args + num_wide_args + (dex_compilation_unit_->IsStatic() ? 0u : 1u);
  /art/libdexfile/dex/
dex_instruction_test.cc 32 static void Build45cc(uint8_t num_args, uint16_t method_idx, uint16_t proto_idx,
44 out[0] |= (num_args << 12);
52 static void Build4rcc(uint16_t num_args, uint16_t method_idx, uint16_t proto_idx,
64 out[0] |= (num_args << 8);
  /toolchain/binutils/binutils-2.27/include/som/
lst.h 65 unsigned char num_args; member in struct:som_external_lst_symbol_record
  /external/libchrome/base/trace_event/
trace_event_impl.cc 95 int num_args,
113 // Clamp num_args since it may have been set by a third_party library.
114 num_args = (num_args > kTraceMaxNumArgs) ? kTraceMaxNumArgs : num_args;
116 for (; i < num_args; ++i) {
138 for (i = 0; i < num_args; ++i) {
146 for (i = 0; i < num_args; ++i) {
165 for (i = 0; i < num_args; ++i) {
169 for (i = 0; i < num_args; ++i)
    [all...]

Completed in 1073 milliseconds

1 2 3 4 5