/external/chromium_org/content/child/npapi/ |
D | npobject_stub.cc | 147 int arg_count = static_cast<int>(args.size()); in OnInvoke() local 148 NPVariant* args_var = new NPVariant[arg_count]; in OnInvoke() 149 for (int i = 0; i < arg_count; ++i) { in OnInvoke() 167 npobject_, args_var, arg_count, &result_var); in OnInvoke() 173 0, npobject_, args_var, arg_count, &result_var); in OnInvoke() 180 npobject_, id, args_var, arg_count, &result_var); in OnInvoke() 186 0, npobject_, id, args_var, arg_count, &result_var); in OnInvoke() 190 for (int i = 0; i < arg_count; ++i) in OnInvoke() 352 int arg_count = static_cast<int>(args.size()); in OnConstruct() local 353 NPVariant* args_var = new NPVariant[arg_count]; in OnConstruct() [all …]
|
D | npobject_proxy.cc | 150 uint32_t arg_count, in NPInvoke() argument 152 return NPInvokePrivate(0, obj, false, name, args, arg_count, result); in NPInvoke() 157 uint32_t arg_count, in NPInvokeDefault() argument 159 return NPInvokePrivate(0, npobj, true, 0, args, arg_count, result); in NPInvokeDefault() 167 uint32_t arg_count, in NPInvokePrivate() argument 175 return obj->_class->invokeDefault(obj, args, arg_count, np_result); in NPInvokePrivate() 177 return obj->_class->invoke(obj, name, args, arg_count, np_result); in NPInvokePrivate() 196 for (unsigned int i = 0; i < arg_count; ++i) { in NPInvokePrivate() 402 uint32_t arg_count, in NPNConstruct() argument 410 return obj->_class->construct(obj, args, arg_count, np_result); in NPNConstruct() [all …]
|
D | npobject_proxy.h | 55 uint32_t arg_count, 59 uint32_t arg_count, 76 uint32_t arg_count, 90 uint32_t arg_count,
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/ |
D | rtp_to_text.cc | 41 int arg_count = 1; in main() local 51 if (argc >= 3 && strcmp(argv[arg_count], "-d") == 0) in main() 54 ++arg_count; in main() 61 std::string input_filename = argv[arg_count++]; in main() 62 std::string table_name = argv[arg_count]; in main()
|
/external/chromium_org/gpu/command_buffer/service/ |
D | mocks.h | 40 IsArgs(unsigned int arg_count, const void* args) in IsArgs() argument 41 : arg_count_(arg_count), in IsArgs() 61 unsigned int arg_count, 79 unsigned int arg_count,
|
D | common_decoder.cc | 119 uint16 arg_count; // How many arguments are expected for this command. member 142 unsigned int arg_count, in DoCommonCommand() argument 146 unsigned int info_arg_count = static_cast<unsigned int>(info.arg_count); in DoCommonCommand() 147 if ((info.arg_flags == cmd::kFixed && arg_count == info_arg_count) || in DoCommonCommand() 148 (info.arg_flags == cmd::kAtLeastN && arg_count >= info_arg_count)) { in DoCommonCommand() 150 (arg_count - info_arg_count) * sizeof(CommandBufferEntry); // NOLINT in DoCommonCommand()
|
D | mocks.cc | 36 unsigned int arg_count, in SetToken() argument 40 DCHECK_EQ(1u, arg_count); in SetToken()
|
D | cmd_parser.cc | 100 const unsigned int arg_count = header.size - 1; in DoCommands() local 102 result = DoCommand(command, arg_count, cmd_data); in DoCommands()
|
D | cmd_parser.h | 90 unsigned int arg_count,
|
/external/chromium_org/gpu/command_buffer/client/ |
D | cmd_buffer_helper_test.cc | 135 int arg_count, in AddCommandWithExpect() argument 138 header.size = arg_count + 1; in AddCommandWithExpect() 141 static_cast<CommandBufferEntry*>(helper_->GetSpace(arg_count + 1)); in AddCommandWithExpect() 144 for (int ii = 0; ii < arg_count; ++ii) { in AddCommandWithExpect() 148 EXPECT_CALL(*api_mock_, DoCommand(command, arg_count, in AddCommandWithExpect() 149 Truly(AsyncAPIMock::IsArgs(arg_count, args)))) in AddCommandWithExpect() 157 int arg_count = cmd_size - 1; in AddUniqueCommandWithExpect() local 161 new std::vector<CommandBufferEntry>(arg_count ? arg_count : 1)); in AddUniqueCommandWithExpect() 163 for (int32 ii = 0; ii < arg_count; ++ii) { in AddUniqueCommandWithExpect() 169 _return, test_command_next_id_++, arg_count, &(*args_ptr)[0]); in AddUniqueCommandWithExpect()
|
D | ring_buffer_test.cc | 51 unsigned int arg_count, in SetToken() argument 54 EXPECT_EQ(1u, arg_count); in SetToken()
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_tgsi.c | 90 if (emit_data->arg_count == 0) { in lp_build_action_set_dst_type() 107 emit_data->dst_type, emit_data->args, emit_data->arg_count); in lp_build_tgsi_intrinsic() 133 emit_data.arg_count = 1; in lp_build_emit_llvm_unary() 146 emit_data.arg_count = 2; in lp_build_emit_llvm_binary() 161 emit_data.arg_count = 3; in lp_build_emit_llvm_ternary() 180 emit_data->arg_count = emit_data->info->num_src; in lp_build_fetch_args()
|
D | lp_bld_tgsi_action.h | 58 unsigned arg_count; member
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
D | lp_bld_tgsi.c | 90 if (emit_data->arg_count == 0) { in lp_build_action_set_dst_type() 107 emit_data->dst_type, emit_data->args, emit_data->arg_count); in lp_build_tgsi_intrinsic() 133 emit_data.arg_count = 1; in lp_build_emit_llvm_unary() 146 emit_data.arg_count = 2; in lp_build_emit_llvm_binary() 161 emit_data.arg_count = 3; in lp_build_emit_llvm_ternary() 180 emit_data->arg_count = emit_data->info->num_src; in lp_build_fetch_args()
|
D | lp_bld_tgsi_action.h | 58 unsigned arg_count; member
|
/external/chromium_org/sandbox/win/sandbox_poc/ |
D | sandbox.cc | 28 int arg_count; in ParseCommandLine() local 33 arg_list = CommandLineToArgvW(command_line, &arg_count); in ParseCommandLine() 34 if (NULL == arg_list || arg_count < 4) { in ParseCommandLine()
|
/external/chromium_org/ppapi/proxy/ |
D | ppp_class_proxy.cc | 350 uint32_t arg_count = 0; in OnMsgCall() local 351 PP_Var* args = arg_vector.Get(dispatcher(), &arg_count); in OnMsgCall() 354 arg_count, args, exception.OutParam(dispatcher()))); in OnMsgCall() 364 uint32_t arg_count = 0; in OnMsgConstruct() local 365 PP_Var* args = arg_vector.Get(dispatcher(), &arg_count); in OnMsgConstruct() 368 ToUserData(object), arg_count, args, exception.OutParam(dispatcher()))); in OnMsgConstruct()
|
D | ppb_var_deprecated_proxy.cc | 467 uint32_t arg_count = 0; in OnMsgCallDeprecated() local 468 PP_Var* args = arg_vector.Get(dispatcher(), &arg_count); in OnMsgCallDeprecated() 472 arg_count, args, in OnMsgCallDeprecated() 482 uint32_t arg_count = 0; in OnMsgConstruct() local 483 PP_Var* args = arg_vector.Get(dispatcher(), &arg_count); in OnMsgConstruct() 485 var.Get(dispatcher()), arg_count, args, in OnMsgConstruct()
|
/external/valgrind/main/none/tests/ppc64/ |
D | round.c | 535 int arg_count; in check_single_guarded_arithmetic_op() local 566 arg_count = 3; \ in check_single_guarded_arithmetic_op() 571 arg_count = 2; \ in check_single_guarded_arithmetic_op() 576 arg_count = 1; \ in check_single_guarded_arithmetic_op() 799 if (arg_count > 1) printf(", %-13a", fB); in check_single_guarded_arithmetic_op() 800 if (arg_count > 2) printf(", %-13a", fC); in check_single_guarded_arithmetic_op() 833 int arg_count; in check_double_guarded_arithmetic_op() local 883 arg_count = 3; \ in check_double_guarded_arithmetic_op() 888 arg_count = 2; \ in check_double_guarded_arithmetic_op() 893 arg_count = 1; \ in check_double_guarded_arithmetic_op() [all …]
|
/external/valgrind/main/none/tests/ppc32/ |
D | round.c | 535 int arg_count; in check_single_guarded_arithmetic_op() local 566 arg_count = 3; \ in check_single_guarded_arithmetic_op() 571 arg_count = 2; \ in check_single_guarded_arithmetic_op() 576 arg_count = 1; \ in check_single_guarded_arithmetic_op() 799 if (arg_count > 1) printf(", %-13a", fB); in check_single_guarded_arithmetic_op() 800 if (arg_count > 2) printf(", %-13a", fC); in check_single_guarded_arithmetic_op() 833 int arg_count; in check_double_guarded_arithmetic_op() local 883 arg_count = 3; \ in check_double_guarded_arithmetic_op() 888 arg_count = 2; \ in check_double_guarded_arithmetic_op() 893 arg_count = 1; \ in check_double_guarded_arithmetic_op() [all …]
|
/external/chromium_org/chrome/tools/test/ |
D | generate_mime_tests.pl | 43 my $arg_count = $#ARGV + 1; 46 if ($arg_count ne 1) {
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/ |
D | r600_llvm.c | 151 assert(emit_data->arg_count + 2 <= Elements(args)); in llvm_emit_tex() 153 for (c = 0; c < emit_data->arg_count; ++c) in llvm_emit_tex() 199 emit_data->arg_count = 2; in dp_fetch_args()
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | r600_llvm.c | 151 assert(emit_data->arg_count + 2 <= Elements(args)); in llvm_emit_tex() 153 for (c = 0; c < emit_data->arg_count; ++c) in llvm_emit_tex() 199 emit_data->arg_count = 2; in dp_fetch_args()
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | atifragshader.c | 150 static void debug_op(GLint optype, GLuint arg_count, GLenum op, GLuint dst, in debug_op() argument 158 op_name = atifs_ops[(arg_count-1)+(optype?3:0)]; in debug_op() 169 if (arg_count>1) in debug_op() 172 if (arg_count>2) in debug_op() 588 _mesa_FragmentOpXATI(GLint optype, GLuint arg_count, GLenum op, GLuint dst, in _mesa_FragmentOpXATI() argument 687 curI->ArgCount[optype] = arg_count; in _mesa_FragmentOpXATI() 706 …debug_op(optype, arg_count, op, dst, dstMask, dstMod, arg1, arg1Rep, arg1Mod, arg2, arg2Rep, arg2M… in _mesa_FragmentOpXATI()
|
/external/mesa3d/src/mesa/main/ |
D | atifragshader.c | 150 static void debug_op(GLint optype, GLuint arg_count, GLenum op, GLuint dst, in debug_op() argument 158 op_name = atifs_ops[(arg_count-1)+(optype?3:0)]; in debug_op() 169 if (arg_count>1) in debug_op() 172 if (arg_count>2) in debug_op() 588 _mesa_FragmentOpXATI(GLint optype, GLuint arg_count, GLenum op, GLuint dst, in _mesa_FragmentOpXATI() argument 687 curI->ArgCount[optype] = arg_count; in _mesa_FragmentOpXATI() 706 …debug_op(optype, arg_count, op, dst, dstMask, dstMod, arg1, arg1Rep, arg1Mod, arg2, arg2Rep, arg2M… in _mesa_FragmentOpXATI()
|