Home
last modified time | relevance | path

Searched full:args (Results 1 – 25 of 9303) sorted by relevance

12345678910>>...373

/third_party/mesa3d/src/amd/vulkan/
Dradv_shader_args.c42 set_loc_shader(struct radv_shader_args *args, int idx, uint8_t *sgpr_idx, uint8_t num_sgprs) in set_loc_shader() argument
44 struct radv_userdata_info *ud_info = &args->shader_info->user_sgprs_locs.shader_data[idx]; in set_loc_shader()
51 set_loc_shader_ptr(struct radv_shader_args *args, int idx, uint8_t *sgpr_idx) in set_loc_shader_ptr() argument
55 set_loc_shader(args, idx, sgpr_idx, use_32bit_pointers ? 1 : 2); in set_loc_shader_ptr()
59 set_loc_desc(struct radv_shader_args *args, int idx, uint8_t *sgpr_idx) in set_loc_desc() argument
61 struct radv_userdata_locations *locs = &args->shader_info->user_sgprs_locs; in set_loc_desc()
78 needs_view_index_sgpr(struct radv_shader_args *args, gl_shader_stage stage) in needs_view_index_sgpr() argument
82 if (args->shader_info->uses_view_index || in needs_view_index_sgpr()
83 (!args->shader_info->vs.as_es && !args->shader_info->vs.as_ls && in needs_view_index_sgpr()
84 args->options->key.has_multiview_view_index)) in needs_view_index_sgpr()
[all …]
/third_party/mindspore/mindspore/lite/micro/coder/wrapper/int8/
Dconv1x1_run_int8_wrapper.c24 void Pre1x1Trans(Conv1x1Args *args, int8_t *src_input, int8_t *src_output) { in Pre1x1Trans() argument
25 args->output_ptr_ = src_output; in Pre1x1Trans()
26 if (args->pre_trans_input_) { in Pre1x1Trans()
27 Conv1x1InputPack(src_input, args->input_ptr_, args->conv_param_, sizeof(int8_t)); in Pre1x1Trans()
29 args->input_ptr_ = src_input; in Pre1x1Trans()
34 Conv1x1Args *args = (Conv1x1Args *)(cdata); in OcOptPre() local
35 int cur_stride = args->thread_stride_hw_ * C4NUM; in OcOptPre()
36 int res_stride = args->matmul_param_->row_ - task_id * args->thread_stride_hw_ * C4NUM; in OcOptPre()
41 …int8_t *hw_in = args->input_ptr_ + task_id * args->thread_stride_hw_ * C4NUM * args->conv_param_->… in OcOptPre()
42 …int8_t *hw_packed_in = args->packed_input_ + task_id * args->thread_stride_hw_ * C4NUM * args->mat… in OcOptPre()
[all …]
/third_party/node/src/
Dnode_wasi.cc16 template <typename... Args>
17 inline void Debug(WASI* wasi, Args&&... args) { in Debug() argument
18 Debug(wasi->env(), DebugCategory::WASI, std::forward<Args>(args)...); in Debug()
25 THROW_ERR_WASI_NOT_STARTED(Environment::GetCurrent(args)); \
30 #define RETURN_IF_BAD_ARG_COUNT(args, expected) \ argument
32 if ((args).Length() != (expected)) { \
33 (args).GetReturnValue().Set(UVWASI_EINVAL); \
38 #define CHECK_TO_TYPE_OR_RETURN(args, input, type, result) \ argument
41 (args).GetReturnValue().Set(UVWASI_EINVAL); \
47 #define UNWRAP_BIGINT_OR_RETURN(args, input, type, result) \ argument
[all …]
/third_party/boost/libs/callable_traits/doc/
Dhideous_template.snippet.cpp8 template<class Return, class... Args> struct foo<Return(Args...)> {};
9 template<class Return, class... Args> struct foo<Return(Args...) &> {};
10 template<class Return, class... Args> struct foo<Return(Args...) &&> {};
11 template<class Return, class... Args> struct foo<Return(Args...) const> {};
12 template<class Return, class... Args> struct foo<Return(Args...) const &> {};
13 template<class Return, class... Args> struct foo<Return(Args...) const &&> {};
14 template<class Return, class... Args> struct foo<Return(Args...) volatile> {};
15 template<class Return, class... Args> struct foo<Return(Args...) volatile &> {};
16 template<class Return, class... Args> struct foo<Return(Args...) volatile &&> {};
17 template<class Return, class... Args> struct foo<Return(Args...) const volatile> {};
[all …]
/third_party/boost/boost/type_traits/detail/
Dis_function_cxx_11.hpp35 template <class Ret, class...Args BOOST_TT_NOEXCEPT_PARAM>
36 struct is_function<Ret BOOST_TT_DEF_CALL(Args...)BOOST_TT_NOEXCEPT_DECL> : public true_type {};
37 template <class Ret, class ...Args BOOST_TT_NOEXCEPT_PARAM>
38 struct is_function<Ret(Args..., ...)BOOST_TT_NOEXCEPT_DECL> : public true_type {};
40 template <class Ret, class...Args BOOST_TT_NOEXCEPT_PARAM>
41 …struct is_function<Ret BOOST_TT_DEF_CALL(Args...)const BOOST_TT_NOEXCEPT_DECL> : public true_type …
42 template <class Ret, class ...Args BOOST_TT_NOEXCEPT_PARAM>
43 struct is_function<Ret(Args..., ...)const BOOST_TT_NOEXCEPT_DECL> : public true_type {};
45 template <class Ret, class...Args BOOST_TT_NOEXCEPT_PARAM>
46 …struct is_function<Ret BOOST_TT_DEF_CALL(Args...)volatile BOOST_TT_NOEXCEPT_DECL> : public true_ty…
[all …]
Dis_member_function_pointer_cxx_11.hpp47 template <class Ret, class C, class...Args BOOST_TT_NOEXCEPT_PARAM>
48 …struct is_member_function_pointer<Ret (BOOST_TT_DEF_CALL C::*)(Args...)BOOST_TT_NOEXCEPT_DECL> : p…
49 template <class Ret, class C, class ...Args BOOST_TT_NOEXCEPT_PARAM>
50 …struct is_member_function_pointer<Ret (C::*)(Args..., ...)BOOST_TT_NOEXCEPT_DECL> : public true_ty…
52 template <class Ret, class C, class...Args BOOST_TT_NOEXCEPT_PARAM>
53 …struct is_member_function_pointer<Ret (BOOST_TT_DEF_CALL C::*)(Args...)const BOOST_TT_NOEXCEPT_DEC…
54 template <class Ret, class C, class ...Args BOOST_TT_NOEXCEPT_PARAM>
55 …struct is_member_function_pointer<Ret(C::*)(Args..., ...)const BOOST_TT_NOEXCEPT_DECL> : public tr…
57 template <class Ret, class C, class...Args BOOST_TT_NOEXCEPT_PARAM>
58 …struct is_member_function_pointer<Ret (BOOST_TT_DEF_CALL C::*)(Args...)volatile BOOST_TT_NOEXCEPT_…
[all …]
/third_party/jsframework/runtime/main/extend/systemplugin/
Dnet.js21 connect: function (...args) { argument
24 const len = args.length
25 if (typeof args[len - 1] === 'function') {
26 args[len - 1].call(this, paramMock.businessErrorMock, paramMock.paramBooleanMock);
33 send: function (...args) { argument
36 const len = args.length
37 if (typeof args[len - 1] === 'function') {
38 args[len - 1].call(this, paramMock.businessErrorMock, paramMock.paramBooleanMock);
45 close: function (...args) { argument
48 const len = args.length
[all …]
Dability.js42 getColumnIndex: function (...args) { argument
47 getColumnName: function (...args) { argument
52 goTo: function (...args) { argument
57 goToRow: function (...args) { argument
62 goToLastRow: function (...args) { argument
67 goToFirstRow: function (...args) { argument
72 goToNextRow: function (...args) { argument
77 goToPreviousRow: function (...args) { argument
82 getBlob: function (...args) { argument
87 getString: function (...args) { argument
[all …]
/third_party/boost/boost/proto/detail/preprocessed/
Dvararg_matches_impl.hpp8 template<typename Args, typename Back, long To>
9 struct vararg_matches_impl<Args, Back, 2, To>
12 typename detail::expr_traits<typename Args::child1>::value_type::proto_derived_expr
13 , typename detail::expr_traits<typename Args::child1>::value_type::proto_grammar
16 , vararg_matches_impl<Args, Back, 2 + 1, To>
19 template<typename Args, typename Back>
20 struct vararg_matches_impl<Args, Back, 2, 2>
22 typename detail::expr_traits<typename Args::child1>::value_type::proto_derived_expr
23 , typename detail::expr_traits<typename Args::child1>::value_type::proto_grammar
27 template<typename Args, typename Back, long To>
[all …]
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Ddtv.js455 addTask: function (...args) { argument
458 const len = args.length
459 if (typeof args[len - 1] === 'function') {
460 args[len - 1].call(this, paramMock.businessErrorMock, paramMock.paramNumberMock);
467 clearAllTasks: function (...args) { argument
470 const len = args.length
471 if (typeof args[len - 1] === 'function') {
472 args[len - 1].call(this, paramMock.businessErrorMock, paramMock.paramNumberMock);
479 createTask: function (...args) { argument
482 const len = args.length
[all …]
Dtv.js288 getMute: function (...args) { argument
291 const len = args.length
292 if (typeof args[len - 1] === 'function') {
293 args[len - 1].call(this, paramMock.businessErrorMock, paramMock.paramBooleanMock);
300 setMute: function (...args) { argument
303 const len = args.length
304 if (typeof args[len - 1] === 'function') {
305 args[len - 1].call(this, paramMock.businessErrorMock, paramMock.paramNumberMock);
312 setUsrAudioMute: function (...args) { argument
315 const len = args.length
[all …]
Dohos_multimedia_camera.js26 getCameraManager: function (...args) { argument
29 const len = args.length;
30 if (typeof args[len - 1] === 'function') {
31 args[len - 1].call(this, paramMock.businessErrorMock, CameraManager);
38 createCaptureSession: function (...args) { argument
41 const len = args.length;
42 if (typeof args[len - 1] === 'function') {
43 args[len - 1].call(this, paramMock.businessErrorMock, CaptureSession);
50 createPreviewOutput: function (...args) { argument
53 const len = args.length;
[all …]
Dohos_multimedia_av_session.js72 setAVMetadata: function (...args) { argument
75 const len = args.length
76 if (typeof args[len - 1] === 'function') {
77 args[len - 1].call(this, paramMock.businessErrorMock);
84 setAVPlaybackState: function (...args) { argument
87 const len = args.length
88 if (typeof args[len - 1] === 'function') {
89 args[len - 1].call(this, paramMock.businessErrorMock);
96 setLaunchAbility: function (...args) { argument
99 const len = args.length
[all …]
Dohos_inputmethodengine.js49 setDisplayMode: function (...args) { argument
52 const len = args.length
53 if (typeof args[len - 1] === 'function') {
54 args[len - 1].call(this, paramMock.businessErrorMock);
61 getDisplayMode: function (...args) { argument
64 const len = args.length
65 if (typeof args[len - 1] === 'function') {
66 args[len - 1].call(this, paramMock.businessErrorMock, paramMock.paramNumberMock);
73 hideKeyboard: function (...args) { argument
76 const len = args.length
[all …]
Dohos_multimedia_audio.js113 getCapturerInfo: function (...args) { argument
116 const len = args.length
117 if (typeof args[len - 1] === 'function') {
118 args[len - 1].call(this, paramMock.businessErrorMock, AudioCapturerInfo);
125 getStreamInfo: function (...args) { argument
128 const len = args.length
129 if (typeof args[len - 1] === 'function') {
130 args[len - 1].call(this, paramMock.businessErrorMock, AudioStreamInfo);
137 start: function (...args) { argument
140 const len = args.length
[all …]
Dohos_window.js139 animationForShown : function(...args) { argument
143 animationForHidden : function(...args) { argument
151 completeTransition : function(...args) { argument
165 getMainWindow: function(...args) { argument
168 const len = args.length
169 if (typeof args[len - 1] === 'function') {
170 args[len - 1].call(this, paramMock.businessErrorMock, Window)
177 createSubWindow: function(...args) { argument
180 const len = args.length
181 if (typeof args[len - 1] === 'function') {
[all …]
Dohos_account_appAccount.js51 addAccount: function (...args) { argument
54 const len = args.length
55 if (len > 0 && typeof args[len - 1] === 'function') {
56 args[len - 1].call(this, paramMock.businessErrorMock);
63 addAccountImplicitly: function (...args) { argument
66 const len = args.length
67 if (len > 0 && typeof args[len - 1] === 'function') {
68 args[len - 1].call(this, paramMock.businessErrorMock, AuthenticatorCallbackMock);
71 deleteAccount: function (...args) { argument
74 const len = args.length
[all …]
Dohos_telephony_sim.js101 isSimActive: function (...args) { argument
104 const len = args.length
105 if (typeof args[len - 1] === 'function') {
106 args[len - 1].call(this, paramMock.businessErrorMock, paramMock.paramBooleanMock);
113 getDefaultVoiceSlotId: function (...args) { argument
116 const len = args.length
117 if (typeof args[len - 1] === 'function') {
118 args[len - 1].call(this, paramMock.businessErrorMock, paramMock.paramNumberMock);
125 hasOperatorPrivileges: function (...args) { argument
128 const len = args.length
[all …]
Dohos_telephony_call.js205 dial: function (...args) { argument
208 const len = args.length
209 if (typeof args[len - 1] === 'function') {
210 args[len - 1].call(this, paramMock.businessErrorMock, paramMock.paramBooleanMock);
217 makeCall: function (...args) { argument
220 const len = args.length
221 if (typeof args[len - 1] === 'function') {
222 args[len - 1].call(this, paramMock.businessErrorMock);
229 hasCall: function (...args) { argument
232 const len = args.length
[all …]
/third_party/grpc/test/core/iomgr/
Dresolve_address_test.cc52 void args_init(args_struct* args) { in args_init() argument
53 gpr_event_init(&args->ev); in args_init()
54 args->pollset = static_cast<grpc_pollset*>(gpr_zalloc(grpc_pollset_size())); in args_init()
55 grpc_pollset_init(args->pollset, &args->mu); in args_init()
56 args->pollset_set = grpc_pollset_set_create(); in args_init()
57 grpc_pollset_set_add_pollset(args->pollset_set, args->pollset); in args_init()
58 args->addrs = nullptr; in args_init()
59 gpr_atm_rel_store(&args->done_atm, 0); in args_init()
62 void args_finish(args_struct* args) { in args_finish() argument
63 GPR_ASSERT(gpr_event_wait(&args->ev, test_deadline())); in args_finish()
[all …]
/third_party/alsa-lib/src/conf/cards/
DHDA-Intel.conf8 @args [ CARD ]
9 @args.CARD {
33 @args [ CARD ]
34 @args.CARD {
88 @args [ CARD AES0 AES1 AES2 AES3 ]
89 @args.CARD {
92 @args.AES0 {
95 @args.AES1 {
98 @args.AES2 {
101 @args.AES3 {
[all …]
/third_party/boost/boost/poly_collection/detail/
Dfunctional.hpp32 template<typename... Args> \
33 auto operator()(Args&&... args)const \
35 return f(std::forward<Args>(args)...); \
42 template<typename... Args> \
43 auto operator()(Args&&... args)const-> \
44 decltype(f(std::forward<Args>(args)...)) \
46 return f(std::forward<Args>(args)...); \
62 template<typename... Args>
64 std::declval<F>()(std::declval<Args>()...,std::declval<TailArgs>()...));
66 template<typename... Args,std::size_t... I>
[all …]
/third_party/python/Objects/clinic/
Dcodeobject.c.h22 code_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) in code_new() argument
46 if (!_PyArg_CheckPositional("code", PyTuple_GET_SIZE(args), 14, 16)) { in code_new()
49 argcount = _PyLong_AsInt(PyTuple_GET_ITEM(args, 0)); in code_new()
53 posonlyargcount = _PyLong_AsInt(PyTuple_GET_ITEM(args, 1)); in code_new()
57 kwonlyargcount = _PyLong_AsInt(PyTuple_GET_ITEM(args, 2)); in code_new()
61 nlocals = _PyLong_AsInt(PyTuple_GET_ITEM(args, 3)); in code_new()
65 stacksize = _PyLong_AsInt(PyTuple_GET_ITEM(args, 4)); in code_new()
69 flags = _PyLong_AsInt(PyTuple_GET_ITEM(args, 5)); in code_new()
73 if (!PyBytes_Check(PyTuple_GET_ITEM(args, 6))) { in code_new()
74 _PyArg_BadArgument("code", "argument 7", "bytes", PyTuple_GET_ITEM(args, 6)); in code_new()
[all …]
/third_party/typescript/tests/baselines/reference/
DreadonlyRestParameters.types15 >f1 : (...args: readonly string[]) => void
26 function f1(...args: readonly string[]) {
27 >f1 : (...args: readonly string[]) => void
28 >args : readonly string[]
30 f0(...args); // Error
31 >f0(...args) : void
33 >...args : string
34 >args : readonly string[]
38 >f1 : (...args: readonly string[]) => void
42 f1('abc', ...args);
[all …]
/third_party/flutter/skia/tools/calmbench/
Dcalmbench.py59 'nanobench args (example: --svgs ~/Desktop/bots/svgs --skps '
111 # Additional args for bots
116 args = parser.parse_args()
117 if not args.basearg:
118 args.basearg = args.extraarg
120 return args
123 def nano_path(args, branch): argument
124 return args.writedir + '/nanobench_' + branch
127 def compile_branch(args, branch): argument
128 print "Compiling branch %s" % args.branch
[all …]

12345678910>>...373