Home
last modified time | relevance | path

Searched refs:args (Results 1001 - 1025 of 10019) sorted by relevance

1...<<41424344454647484950>>...401

/kernel/linux/linux-6.6/tools/perf/ui/gtk/
H A Dutil.c31 static int perf_gtk__error(const char *format, va_list args) in perf_gtk__error() argument
37 vasprintf(&msg, format, args) < 0) { in perf_gtk__error()
39 vfprintf(stderr, format, args); in perf_gtk__error()
57 static int perf_gtk__warning_info_bar(const char *format, va_list args) in perf_gtk__warning_info_bar() argument
62 vasprintf(&msg, format, args) < 0) { in perf_gtk__warning_info_bar()
64 vfprintf(stderr, format, args); in perf_gtk__warning_info_bar()
78 static int perf_gtk__warning_statusbar(const char *format, va_list args) in perf_gtk__warning_statusbar() argument
83 vasprintf(&msg, format, args) < 0) { in perf_gtk__warning_statusbar()
85 vfprintf(stderr, format, args); in perf_gtk__warning_statusbar()
/kernel/linux/linux-6.6/tools/perf/tests/shell/coresight/thread_loop/
H A Dthread_loop.c19 struct args { struct
27 struct args *a = arg; in thrfn()
61 struct args args[256]; in main() local
80 args[i].loops = len; in main()
81 args[i].th = new_thr(thrfn, &(args[i])); in main()
84 pthread_join(args[i].th, &(args[i].ret)); in main()
/kernel/linux/linux-6.6/tools/perf/tests/shell/coresight/unroll_loop_thread/
H A Dunroll_loop_thread.c9 struct args { struct
17 struct args *a = arg; in thrfn()
55 struct args args[256]; in main() local
68 args[i].in = rand(); in main()
69 args[i].th = new_thr(thrfn, &(args[i])); in main()
72 pthread_join(args[i].th, &(args[i].ret)); in main()
/kernel/linux/linux-6.6/samples/bpf/
H A Dtracex5.bpf.c51 if (sd.args[2] == 512) { in SYS__NR_write()
54 sd.args[0], sd.args[1], sd.args[2]); in SYS__NR_write()
64 if (sd.args[2] > 128 && sd.args[2] <= 1024) { in SYS__NR_read()
67 sd.args[0], sd.args[1], sd.args[2]); in SYS__NR_read()
/third_party/ltp/testcases/kernel/containers/userns/
H A Duserns06.c35 char *const args[] = { TEST_APP, "privileged", NULL }; in child_fn1() local
40 ret = execv(args[0], args); in child_fn1()
48 char *const args[] = { TEST_APP, "unprivileged", NULL }; in child_fn2() local
58 ret = execv(args[0], args); in child_fn2()
65 const struct tst_clone_args args = { in run() local
79 cpid1 = SAFE_CLONE(&args); in run()
85 cpid2 = SAFE_CLONE(&args); in run()
/third_party/node/lib/internal/perf/
H A Dtimerify.js37 function processComplete(name, start, args, histogram) {
47 args);
49 for (let n = 0; n < args.length; n++)
50 entry[n] = args[n];
71 function timerified(...args) {
75 ReflectConstruct(fn, args, fn) :
76 ReflectApply(fn, this, args);
84 args,
87 processComplete(fn.name, start, args, histogram);
/third_party/node/test/js-native-api/3_callbacks/
H A D3_callbacks.c8 napi_value args[2]; in RunCallback() local
9 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); in RunCallback()
15 NODE_API_CALL(env, napi_typeof(env, args[0], &valuetype0)); in RunCallback()
20 NODE_API_CALL(env, napi_typeof(env, args[1], &valuetype1)); in RunCallback()
32 napi_value cb = args[0]; in RunCallback()
40 napi_value args[2]; in RunCallbackWithRecv() local
41 NODE_API_CALL(env, napi_get_cb_info(env, info, &argc, args, NULL, NULL)); in RunCallbackWithRecv()
43 napi_value cb = args[0]; in RunCallbackWithRecv()
44 napi_value recv = args[1]; in RunCallbackWithRecv()
/third_party/node/deps/v8/src/runtime/
H A Druntime-futex.cc25 DCHECK_EQ(2, args.length()); in RUNTIME_FUNCTION()
26 Handle<JSTypedArray> sta = args.at<JSTypedArray>(0); in RUNTIME_FUNCTION()
27 size_t index = NumberToSize(args[1]); in RUNTIME_FUNCTION()
40 DCHECK_EQ(0, args.length()); in RUNTIME_FUNCTION()
46 DCHECK_EQ(2, args.length()); in RUNTIME_FUNCTION()
47 Handle<JSTypedArray> sta = args.at<JSTypedArray>(0); in RUNTIME_FUNCTION()
48 size_t index = NumberToSize(args[1]); in RUNTIME_FUNCTION()
63 DCHECK_EQ(1, args.length()); in RUNTIME_FUNCTION()
64 bool set = Oddball::cast(args[0]).ToBool(isolate); in RUNTIME_FUNCTION()
H A Druntime-module.cc29 DCHECK_LE(2, args.length()); in RUNTIME_FUNCTION()
30 DCHECK_GE(3, args.length()); in RUNTIME_FUNCTION()
31 Handle<JSFunction> function = args.at<JSFunction>(0); in RUNTIME_FUNCTION()
32 Handle<Object> specifier = args.at(1); in RUNTIME_FUNCTION()
35 if (args.length() == 3) { in RUNTIME_FUNCTION()
36 import_assertions = args.at<Object>(2); in RUNTIME_FUNCTION()
48 DCHECK_EQ(1, args.length()); in RUNTIME_FUNCTION()
49 int module_request = args.smi_value_at(0); in RUNTIME_FUNCTION()
56 DCHECK_EQ(0, args.length()); in RUNTIME_FUNCTION()
/third_party/python/Lib/asyncio/
H A Dformat_helpers.py22 def _format_callback_source(func, args):
23 func_repr = _format_callback(func, args, None)
30 def _format_args_and_kwargs(args, kwargs):
37 if args:
38 items.extend(reprlib.repr(arg) for arg in args)
44 def _format_callback(func, args, kwargs, suffix=''):
46 suffix = _format_args_and_kwargs(args, kwargs) + suffix
47 return _format_callback(func.func, func.args, func.keywords, suffix)
56 func_repr += _format_args_and_kwargs(args, kwargs)
/third_party/skia/src/gpu/effects/
H A DGrShadowGeoProc.cpp23 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) override {
24 const GrRRectShadowGeoProc& rsgp = args.fGeomProc.cast<GrRRectShadowGeoProc>();
25 GrGLSLVertexBuilder* vertBuilder = args.fVertBuilder;
26 GrGLSLVaryingHandler* varyingHandler = args.fVaryingHandler;
27 GrGLSLFPFragmentBuilder* fragBuilder = args.fFragBuilder;
36 fragBuilder->codeAppendf("half4 %s;", args.fOutputColor);
37 varyingHandler->addPassThroughAttribute(rsgp.inColor().asShaderVar(), args.fOutputColor);
46 fragBuilder->appendTextureLookup(args.fTexSamplers[0], "uv");
48 fragBuilder->codeAppendf("half4 %s = half4(factor);", args.fOutputCoverage);
/third_party/python/PCbuild/
H A Dget_external.py49 args = parse_args()
51 args.tag,
52 args.externals_dir / 'zips',
53 org=args.organization,
54 binary=args.binary,
55 verbose=args.verbose,
57 final_name = args.externals_dir / args.tag
58 extracted = extract_zip(args.externals_dir, zip_path)
/third_party/rust/crates/clap/examples/derive_ref/
H A Dhand_subcommand.rs24 Some(("add", args)) => Ok(Self::Add(AddArgs::from_arg_matches(args)?)), in from_arg_matches()
25 Some(("remove", args)) => Ok(Self::Remove(RemoveArgs::from_arg_matches(args)?)), in from_arg_matches()
38 Some(("add", args)) => *self = Self::Add(AddArgs::from_arg_matches(args)?), in update_from_arg_matches()
39 Some(("remove", args)) => *self = Self::Remove(RemoveArgs::from_arg_matches(args)?), in update_from_arg_matches()
77 let args = Cli::parse(); in main()
78 println!("{args in main()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/
H A Di915_gem.c97 struct drm_i915_gem_get_aperture *args = data; in i915_gem_get_aperture_ioctl() local
111 args->aper_size = ggtt->vm.total; in i915_gem_get_aperture_ioctl()
112 args->aper_available_size = args->aper_size - pinned; in i915_gem_get_aperture_ioctl()
229 struct drm_i915_gem_pread *args) in i915_gem_shmem_pread()
253 remain = args->size; in i915_gem_shmem_pread()
254 user_data = u64_to_user_ptr(args->data_ptr); in i915_gem_shmem_pread()
255 offset = offset_in_page(args->offset); in i915_gem_shmem_pread()
256 for (idx = args->offset >> PAGE_SHIFT; remain; idx++) { in i915_gem_shmem_pread()
383 const struct drm_i915_gem_pread *args) in i915_gem_gtt_pread()
228 i915_gem_shmem_pread(struct drm_i915_gem_object *obj, struct drm_i915_gem_pread *args) i915_gem_shmem_pread() argument
382 i915_gem_gtt_pread(struct drm_i915_gem_object *obj, const struct drm_i915_gem_pread *args) i915_gem_gtt_pread() argument
462 struct drm_i915_gem_pread *args = data; i915_gem_pread_ioctl() local
545 i915_gem_gtt_pwrite_fast(struct drm_i915_gem_object *obj, const struct drm_i915_gem_pwrite *args) i915_gem_gtt_pwrite_fast() argument
667 i915_gem_shmem_pwrite(struct drm_i915_gem_object *obj, const struct drm_i915_gem_pwrite *args) i915_gem_shmem_pwrite() argument
744 struct drm_i915_gem_pwrite *args = data; i915_gem_pwrite_ioctl() local
826 struct drm_i915_gem_sw_finish *args = data; i915_gem_sw_finish_ioctl() local
1036 struct drm_i915_gem_madvise *args = data; i915_gem_madvise_ioctl() local
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/
H A Dcapture_replay_tests.py130 def __init__(self, args, logger, ninja_lock):
141 self._args = args
214 cmd = [self._gn_path, 'gen', '--args=%s' % args_str, build_dir]
247 def GetTestsListForFilter(args, test_path, filter, logger):
248 cmd = GetRunCommand(args, test_path) + ["--list-tests", "--gtest_filter=%s" % filter]
276 def GetRunCommand(args, command):
277 if args.xvfb:
411 def __init__(self, args, logger):
412 self.args = args
1113 args = parser.parse_args() global() variable
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/vc4/
H A Dvc4_bo.c493 struct drm_mode_create_dumb *args) in vc4_bo_dumb_create()
502 ret = vc4_dumb_fixup_args(args); in vc4_bo_dumb_create()
506 bo = vc4_bo_create(dev, args->size, false, VC4_BO_TYPE_DUMB); in vc4_bo_dumb_create()
512 ret = drm_gem_handle_create(file_priv, &bo->base.base, &args->handle); in vc4_bo_dumb_create()
780 struct drm_vc4_create_bo *args = data; in vc4_create_bo_ioctl() local
797 bo = vc4_bo_create(dev, args->size, false, VC4_BO_TYPE_V3D); in vc4_create_bo_ioctl()
803 ret = drm_gem_handle_create(file_priv, &bo->base.base, &args->handle); in vc4_create_bo_ioctl()
813 struct drm_vc4_mmap_bo *args = data; in vc4_mmap_bo_ioctl() local
819 gem_obj = drm_gem_object_lookup(file_priv, args->handle); in vc4_mmap_bo_ioctl()
821 DRM_DEBUG("Failed to look up GEM BO %d\n", args in vc4_mmap_bo_ioctl()
491 vc4_bo_dumb_create(struct drm_file *file_priv, struct drm_device *dev, struct drm_mode_create_dumb *args) vc4_bo_dumb_create() argument
836 struct drm_vc4_create_shader_bo *args = data; vc4_create_shader_bo_ioctl() local
916 struct drm_vc4_set_tiling *args = data; vc4_set_tiling_ioctl() local
963 struct drm_vc4_get_tiling *args = data; vc4_get_tiling_ioctl() local
1069 struct drm_vc4_label_bo *args = data; vc4_label_bo_ioctl() local
[all...]
H A Dvc4_gem.c748 struct drm_vc4_submit_cl *args = exec->args; in vc4_cl_lookup_bos() local
752 exec->bo_count = args->bo_handle_count; in vc4_cl_lookup_bos()
762 ret = drm_gem_objects_lookup(file_priv, u64_to_user_ptr(args->bo_handles), in vc4_cl_lookup_bos()
801 struct drm_vc4_submit_cl *args = exec->args; in vc4_get_bcl() local
807 uint32_t shader_rec_offset = roundup(bin_offset + args->bin_cl_size, in vc4_get_bcl()
809 uint32_t uniforms_offset = shader_rec_offset + args->shader_rec_size; in vc4_get_bcl()
810 uint32_t exec_size = uniforms_offset + args->uniforms_size; in vc4_get_bcl()
812 args in vc4_get_bcl()
1066 struct drm_vc4_wait_seqno *args = data; vc4_wait_seqno_ioctl() local
1081 struct drm_vc4_wait_bo *args = data; vc4_wait_bo_ioctl() local
1123 struct drm_vc4_submit_cl *args = data; vc4_submit_cl_ioctl() local
1325 struct drm_vc4_gem_madvise *args = data; vc4_gem_madvise_ioctl() local
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/virtio/
H A Dvirtgpu_ioctl.c322 struct drm_virtgpu_3d_transfer_from_host *args = data; in virtio_gpu_transfer_from_host_ioctl() local
326 u32 offset = args->offset; in virtio_gpu_transfer_from_host_ioctl()
332 objs = virtio_gpu_array_from_handles(file, &args->bo_handle, 1); in virtio_gpu_transfer_from_host_ioctl()
346 (vgdev, vfpriv->ctx_id, offset, args->level, in virtio_gpu_transfer_from_host_ioctl()
347 &args->box, objs, fence); in virtio_gpu_transfer_from_host_ioctl()
364 struct drm_virtgpu_3d_transfer_to_host *args = data; in virtio_gpu_transfer_to_host_ioctl() local
368 u32 offset = args->offset; in virtio_gpu_transfer_to_host_ioctl()
370 objs = virtio_gpu_array_from_handles(file, &args->bo_handle, 1); in virtio_gpu_transfer_to_host_ioctl()
377 args->box.w, args in virtio_gpu_transfer_to_host_ioctl()
409 struct drm_virtgpu_3d_wait *args = data; virtio_gpu_wait_ioctl() local
437 struct drm_virtgpu_get_caps *args = data; virtio_gpu_get_caps_ioctl() local
[all...]
/third_party/benchmark/tools/
H A Dcompare.py187 args, unknown_args = parser.parse_known_args()
188 if args.mode is None:
192 benchmark_options = args.benchmark_options
194 if args.mode == 'benchmarks':
195 test_baseline = args.test_baseline[0].name
196 test_contender = args.test_contender[0].name
203 elif args.mode == 'filters':
204 test_baseline = args.test[0].name
205 test_contender = args.test[0].name
206 filter_baseline = args
[all...]
/third_party/pulseaudio/src/modules/raop/
H A Dmodule-raop-discover.c167 char *device = NULL, *nicename, *dname, *vname, *args; in resolver_cb() local
299 args = pa_sprintf_malloc("server=[%s]:%u " in resolver_cb()
310 t = args; in resolver_cb()
311 args = pa_sprintf_malloc("%s protocol=%s", args, tp); in resolver_cb()
316 t = args; in resolver_cb()
317 args = pa_sprintf_malloc("%s encryption=%s", args, et); in resolver_cb()
322 t = args; in resolver_cb()
323 args in resolver_cb()
[all...]
/third_party/typescript/tests/baselines/reference/
H A DmixinAccessModifiers.js2 type Constructable = new (...args: any[]) => object;
5 constructor (...args: any[]) {}
10 constructor (...args: any[]) {}
15 constructor (...args: any[]) {}
21 constructor (...args: any[]) {}
27 constructor (...args: any[]) {}
33 constructor (...args: any[]) {}
153 var args = [];
155 args[_i] = arguments[_i];
162 var args
[all...]
H A DdependentDestructuredVariables.js193 declare function f50(cb: (...args: Args) => void): void
204 const f51: (...args: ['A', number] | ['B', string]) => void = (kind, payload) => {
213 const f52: (...args: ['A', number] | ['B']) => void = (kind, payload?) => {
222 declare function readFile(path: string, callback: (...args: [err: null, data: unknown[]] | [err: Error, data: undefined]) => void): void;
235 const reducer: (...args: ReducerArgs) => void = (op, args) => {
238 console.log(args.a + args.b);
241 console.log(args.firstArr.concat(args
[all...]
/third_party/python/Modules/
H A D_testcapimodule.c326 dict_getitem_knownhash(PyObject *self, PyObject *args) in dict_getitem_knownhash() argument
331 if (!PyArg_ParseTuple(args, "OOn:dict_getitem_knownhash", in dict_getitem_knownhash()
528 test_longlong_api(PyObject* self, PyObject *args) in test_longlong_api() argument
1346 get_args(PyObject *self, PyObject *args) in get_args() argument
1348 if (args == NULL) { in get_args()
1349 args = Py_None; in get_args()
1351 Py_INCREF(args); in get_args()
1352 return args; in get_args()
1356 get_kwargs(PyObject *self, PyObject *args, PyObject *kwargs) in get_kwargs() argument
1367 getargs_tuple(PyObject *self, PyObject *args) in getargs_tuple() argument
1377 getargs_keywords(PyObject *self, PyObject *args, PyObject *kwargs) getargs_keywords() argument
1394 getargs_keyword_only(PyObject *self, PyObject *args, PyObject *kwargs) getargs_keyword_only() argument
1409 getargs_positional_only_and_keywords(PyObject *self, PyObject *args, PyObject *kwargs) getargs_positional_only_and_keywords() argument
1426 getargs_b(PyObject *self, PyObject *args) getargs_b() argument
1435 getargs_B(PyObject *self, PyObject *args) getargs_B() argument
1444 getargs_h(PyObject *self, PyObject *args) getargs_h() argument
1453 getargs_H(PyObject *self, PyObject *args) getargs_H() argument
1462 getargs_I(PyObject *self, PyObject *args) getargs_I() argument
1471 getargs_k(PyObject *self, PyObject *args) getargs_k() argument
1480 getargs_i(PyObject *self, PyObject *args) getargs_i() argument
1489 getargs_l(PyObject *self, PyObject *args) getargs_l() argument
1498 getargs_n(PyObject *self, PyObject *args) getargs_n() argument
1507 getargs_p(PyObject *self, PyObject *args) getargs_p() argument
1516 getargs_L(PyObject *self, PyObject *args) getargs_L() argument
1525 getargs_K(PyObject *self, PyObject *args) getargs_K() argument
1591 getargs_f(PyObject *self, PyObject *args) getargs_f() argument
1600 getargs_d(PyObject *self, PyObject *args) getargs_d() argument
1609 getargs_D(PyObject *self, PyObject *args) getargs_D() argument
1618 getargs_S(PyObject *self, PyObject *args) getargs_S() argument
1628 getargs_Y(PyObject *self, PyObject *args) getargs_Y() argument
1638 getargs_U(PyObject *self, PyObject *args) getargs_U() argument
1648 getargs_c(PyObject *self, PyObject *args) getargs_c() argument
1657 getargs_C(PyObject *self, PyObject *args) getargs_C() argument
1666 getargs_s(PyObject *self, PyObject *args) getargs_s() argument
1675 getargs_s_star(PyObject *self, PyObject *args) getargs_s_star() argument
1687 getargs_s_hash(PyObject *self, PyObject *args) getargs_s_hash() argument
1697 getargs_z(PyObject *self, PyObject *args) getargs_z() argument
1709 getargs_z_star(PyObject *self, PyObject *args) getargs_z_star() argument
1726 getargs_z_hash(PyObject *self, PyObject *args) getargs_z_hash() argument
1739 getargs_y(PyObject *self, PyObject *args) getargs_y() argument
1748 getargs_y_star(PyObject *self, PyObject *args) getargs_y_star() argument
1760 getargs_y_hash(PyObject *self, PyObject *args) getargs_y_hash() argument
1770 getargs_u(PyObject *self, PyObject *args) getargs_u() argument
1779 getargs_u_hash(PyObject *self, PyObject *args) getargs_u_hash() argument
1789 getargs_Z(PyObject *self, PyObject *args) getargs_Z() argument
1801 getargs_Z_hash(PyObject *self, PyObject *args) getargs_Z_hash() argument
1814 getargs_es(PyObject *self, PyObject *args) getargs_es() argument
1830 getargs_et(PyObject *self, PyObject *args) getargs_et() argument
1846 getargs_es_hash(PyObject *self, PyObject *args) getargs_es_hash() argument
1869 getargs_et_hash(PyObject *self, PyObject *args) getargs_et_hash() argument
1927 parse_tuple_and_keywords(PyObject *self, PyObject *args) parse_tuple_and_keywords() argument
2187 unicode_aswidechar(PyObject *self, PyObject *args) unicode_aswidechar() argument
2218 unicode_aswidecharstring(PyObject *self, PyObject *args) unicode_aswidecharstring() argument
2239 unicode_asucs4(PyObject *self, PyObject *args) unicode_asucs4() argument
2269 unicode_asutf8(PyObject *self, PyObject *args) unicode_asutf8() argument
2287 unicode_asutf8andsize(PyObject *self, PyObject *args) unicode_asutf8andsize() argument
2311 unicode_findchar(PyObject *self, PyObject *args) unicode_findchar() argument
2332 unicode_copycharacters(PyObject *self, PyObject *args) unicode_copycharacters() argument
2366 unicode_legacy_string(PyObject *self, PyObject *args) unicode_legacy_string() argument
2391 getargs_w_star(PyObject *self, PyObject *args) getargs_w_star() argument
2441 codec_incrementalencoder(PyObject *self, PyObject *args) codec_incrementalencoder() argument
2451 codec_incrementaldecoder(PyObject *self, PyObject *args) codec_incrementaldecoder() argument
2527 exc_set_object(PyObject *self, PyObject *args) exc_set_object() argument
2541 raise_exception(PyObject *self, PyObject *args) raise_exception() argument
2568 set_errno(PyObject *self, PyObject *args) set_errno() argument
2590 test_set_exc_info(PyObject *self, PyObject *args) test_set_exc_info() argument
2616 test_datetime_capi(PyObject *self, PyObject *args) test_datetime_capi() argument
2652 datetime_check_date(PyObject *self, PyObject *args) datetime_check_date() argument
2657 datetime_check_time(PyObject *self, PyObject *args) datetime_check_time() argument
2662 datetime_check_datetime(PyObject *self, PyObject *args) datetime_check_datetime() argument
2667 datetime_check_delta(PyObject *self, PyObject *args) datetime_check_delta() argument
2672 datetime_check_tzinfo(PyObject *self, PyObject *args) datetime_check_tzinfo() argument
2683 make_timezones_capi(PyObject *self, PyObject *args) make_timezones_capi() argument
2704 get_timezones_offset_zero(PyObject *self, PyObject *args) get_timezones_offset_zero() argument
2727 get_timezone_utc_capi(PyObject* self, PyObject *args) get_timezone_utc_capi() argument
2742 get_date_fromdate(PyObject *self, PyObject *args) get_date_fromdate() argument
2765 get_datetime_fromdateandtime(PyObject *self, PyObject *args) get_datetime_fromdateandtime() argument
2795 get_datetime_fromdateandtimeandfold(PyObject *self, PyObject *args) get_datetime_fromdateandtimeandfold() argument
2828 get_time_fromtime(PyObject *self, PyObject *args) get_time_fromtime() argument
2853 get_time_fromtimeandfold(PyObject *self, PyObject *args) get_time_fromtimeandfold() argument
2880 get_delta_fromdsu(PyObject *self, PyObject *args) get_delta_fromdsu() argument
2905 get_date_fromtimestamp(PyObject* self, PyObject *args) get_date_fromtimestamp() argument
2934 get_datetime_fromtimestamp(PyObject* self, PyObject *args) get_datetime_fromtimestamp() argument
3054 test_thread_state(PyObject *self, PyObject *args) test_thread_state() argument
3415 profile_int(PyObject *self, PyObject* args) profile_int() argument
3526 traceback_print(PyObject *self, PyObject *args) traceback_print() argument
3544 exception_print(PyObject *self, PyObject *args) exception_print() argument
3587 argparsing(PyObject *o, PyObject *args) argparsing() argument
3608 code_newempty(PyObject *self, PyObject *args) code_newempty() argument
3624 make_exception_with_doc(PyObject *self, PyObject *args, PyObject *kwargs) make_exception_with_doc() argument
3754 test_PyBuffer_SizeFromFormat(PyObject *self, PyObject *args) test_PyBuffer_SizeFromFormat() argument
3789 run_in_subinterp(PyObject *self, PyObject *args) run_in_subinterp() argument
3836 test_pytime_object_to_time_t(PyObject *self, PyObject *args) test_pytime_object_to_time_t() argument
3851 test_pytime_object_to_timeval(PyObject *self, PyObject *args) test_pytime_object_to_timeval() argument
3867 test_pytime_object_to_timespec(PyObject *self, PyObject *args) test_pytime_object_to_timespec() argument
3937 with_tp_del(PyObject *self, PyObject *args) with_tp_del() argument
3977 create_cfunction(PyObject *self, PyObject *args) create_cfunction() argument
4433 set_nomemory(PyObject *self, PyObject *args) set_nomemory() argument
4547 call_in_temporary_c_thread(PyObject *self, PyObject *args) call_in_temporary_c_thread() argument
4624 pymarshal_write_long_to_file(PyObject* self, PyObject *args) pymarshal_write_long_to_file() argument
4649 pymarshal_write_object_to_file(PyObject* self, PyObject *args) pymarshal_write_object_to_file() argument
4674 pymarshal_read_short_from_file(PyObject* self, PyObject *args) pymarshal_read_short_from_file() argument
4700 pymarshal_read_long_from_file(PyObject* self, PyObject *args) pymarshal_read_long_from_file() argument
4725 pymarshal_read_last_object_from_file(PyObject* self, PyObject *args) pymarshal_read_last_object_from_file() argument
4748 pymarshal_read_object_from_file(PyObject* self, PyObject *args) pymarshal_read_object_from_file() argument
4771 return_null_without_error(PyObject *self, PyObject *args) return_null_without_error() argument
4780 return_result_with_error(PyObject *self, PyObject *args) return_result_with_error() argument
4789 getitem_with_error(PyObject *self, PyObject *args) getitem_with_error() argument
4801 test_pytime_fromseconds(PyObject *self, PyObject *args) test_pytime_fromseconds() argument
4812 test_pytime_fromsecondsobject(PyObject *self, PyObject *args) test_pytime_fromsecondsobject() argument
4830 test_pytime_assecondsdouble(PyObject *self, PyObject *args) test_pytime_assecondsdouble() argument
4845 test_PyTime_AsTimeval(PyObject *self, PyObject *args) test_PyTime_AsTimeval() argument
4872 test_PyTime_AsTimeval_clamp(PyObject *self, PyObject *args) test_PyTime_AsTimeval_clamp() argument
4898 test_PyTime_AsTimespec(PyObject *self, PyObject *args) test_PyTime_AsTimespec() argument
4916 test_PyTime_AsTimespec_clamp(PyObject *self, PyObject *args) test_PyTime_AsTimespec_clamp() argument
4933 test_PyTime_AsMilliseconds(PyObject *self, PyObject *args) test_PyTime_AsMilliseconds() argument
4953 test_PyTime_AsMicroseconds(PyObject *self, PyObject *args) test_PyTime_AsMicroseconds() argument
4973 pymem_buffer_overflow(PyObject *self, PyObject *args) pymem_buffer_overflow() argument
4991 pymem_api_misuse(PyObject *self, PyObject *args) pymem_api_misuse() argument
5004 pymem_malloc_without_gil(PyObject *self, PyObject *args) pymem_malloc_without_gil() argument
5021 test_pymem_getallocatorsname(PyObject *self, PyObject *args) test_pymem_getallocatorsname() argument
5101 pyobject_malloc_without_gil(PyObject *self, PyObject *args) pyobject_malloc_without_gil() argument
5117 tracemalloc_track(PyObject *self, PyObject *args) tracemalloc_track() argument
5150 tracemalloc_untrack(PyObject *self, PyObject *args) tracemalloc_untrack() argument
5173 tracemalloc_get_traceback(PyObject *self, PyObject *args) tracemalloc_get_traceback() argument
5189 dict_get_version(PyObject *self, PyObject *args) dict_get_version() argument
5206 raise_SIGINT_then_send_None(PyObject *self, PyObject *args) raise_SIGINT_then_send_None() argument
5230 fastcall_args(PyObject *args, PyObject ***stack, Py_ssize_t *nargs) fastcall_args() argument
5249 test_pyobject_fastcall(PyObject *self, PyObject *args) test_pyobject_fastcall() argument
5267 test_pyobject_fastcalldict(PyObject *self, PyObject *args) test_pyobject_fastcalldict() argument
5294 test_pyobject_vectorcall(PyObject *self, PyObject *args) test_pyobject_vectorcall() argument
5328 test_pyvectorcall_call(PyObject *self, PyObject *args) test_pyvectorcall_call() argument
5352 stack_pointer(PyObject *self, PyObject *args) stack_pointer() argument
5361 py_w_stopcode(PyObject *self, PyObject *args) py_w_stopcode() argument
5416 mapping_has_key(PyObject* self, PyObject *args) mapping_has_key() argument
5426 sequence_set_slice(PyObject* self, PyObject *args) sequence_set_slice() argument
5442 sequence_del_slice(PyObject* self, PyObject *args) sequence_del_slice() argument
5458 test_pythread_tss_key_state(PyObject *self, PyObject *args) test_pythread_tss_key_state() argument
5513 new_hamt(PyObject *self, PyObject *args) new_hamt() argument
5524 bad_get(PyObject *module, PyObject *const *args, Py_ssize_t nargs) bad_get() argument
5561 test_write_unraisable_exc(PyObject *self, PyObject *args) test_write_unraisable_exc() argument
5586 sequence_getitem(PyObject *self, PyObject *args) sequence_getitem() argument
5598 sequence_setitem(PyObject *self, PyObject *args) sequence_setitem() argument
5631 meth_varargs(PyObject* self, PyObject* args) meth_varargs() argument
5637 meth_varargs_keywords(PyObject* self, PyObject* args, PyObject* kwargs) meth_varargs_keywords() argument
5655 _fastcall_to_tuple(PyObject* const* args, Py_ssize_t nargs) _fastcall_to_tuple() argument
5669 meth_fastcall(PyObject* self, PyObject* const* args, Py_ssize_t nargs) meth_fastcall() argument
5677 meth_fastcall_keywords(PyObject* self, PyObject* const* args, Py_ssize_t nargs, PyObject* kwargs) meth_fastcall_keywords() argument
5693 pynumber_tobase(PyObject *module, PyObject *args) pynumber_tobase() argument
5823 test_fatal_error(PyObject *self, PyObject *args) test_fatal_error() argument
5912 test_float_pack(PyObject *self, PyObject *args) test_float_pack() argument
5956 test_float_unpack(PyObject *self, PyObject *args) test_float_unpack() argument
6044 frame_new(PyObject *self, PyObject *args) frame_new() argument
6078 PyObject *args = NULL; eval_eval_code_ex() local
6776 test_structmembers_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) test_structmembers_new() argument
7006 awaitObject_new(PyTypeObject *type, PyObject *args, PyObject *kwds) awaitObject_new() argument
7136 recurse_infinitely_error_init(PyObject *self, PyObject *args, PyObject *kwds) recurse_infinitely_error_init() argument
7156 MyList_new(PyTypeObject *type, PyObject *args, PyObject *kwds) MyList_new() argument
7297 MethodDescriptor_vectorcall(PyObject *callable, PyObject *const *args, size_t nargsf, PyObject *kwnames) MethodDescriptor_vectorcall() argument
7307 MethodDescriptor_new(PyTypeObject* type, PyObject* args, PyObject *kw) MethodDescriptor_new() argument
7332 call_return_args(PyObject *self, PyObject *args, PyObject *kwargs) call_return_args() argument
7370 MethodDescriptor2_new(PyTypeObject* type, PyObject* args, PyObject *kw) MethodDescriptor2_new() argument
7459 heapctype_init(PyObject *self, PyObject *args, PyObject *kwargs) heapctype_init() argument
7536 heapctypesubclass_init(PyObject *self, PyObject *args, PyObject *kwargs) heapctypesubclass_init() argument
7614 heapctypesubclasswithfinalizer_init(PyObject *self, PyObject *args, PyObject *kwargs) heapctypesubclasswithfinalizer_init() argument
7816 heapctypesetattr_init(PyObject *self, PyObject *args, PyObject *kwargs) heapctypesetattr_init() argument
7949 ContainerNoGC_new(PyTypeObject *type, PyObject *args, PyObject *kwargs) ContainerNoGC_new() argument
8294 getargs_s_hash_int(PyObject *self, PyObject *args, PyObject *kwargs) getargs_s_hash_int() argument
8308 getargs_s_hash_int2(PyObject *self, PyObject *args, PyObject *kwargs) getargs_s_hash_int2() argument
8322 gh_99240_clear_args(PyObject *self, PyObject *args) gh_99240_clear_args() argument
[all...]
/kernel/linux/linux-5.10/fs/xfs/libxfs/
H A Dxfs_bmap_btree.c201 xfs_alloc_arg_t args; /* block allocation args */ in xfs_bmbt_alloc_block() local
204 memset(&args, 0, sizeof(args)); in xfs_bmbt_alloc_block()
205 args.tp = cur->bc_tp; in xfs_bmbt_alloc_block()
206 args.mp = cur->bc_mp; in xfs_bmbt_alloc_block()
207 args.fsbno = cur->bc_tp->t_firstblock; in xfs_bmbt_alloc_block()
208 xfs_rmap_ino_bmbt_owner(&args.oinfo, cur->bc_ino.ip->i_ino, in xfs_bmbt_alloc_block()
211 if (args.fsbno == NULLFSBLOCK) { in xfs_bmbt_alloc_block()
212 args in xfs_bmbt_alloc_block()
[all...]
/third_party/protobuf/src/google/protobuf/
H A Darena.h223 // CreateMessage<T>(Arena* arena, Args&&... args), is as follows:
226 // with `args` (without `arena`), called when a T is allocated on the heap;
227 // and a constructor callable with `Arena* arena, Args&&... args`, called when
230 // (`args`-only) constructor.
297 PROTOBUF_ALWAYS_INLINE static T* CreateMessage(Arena* arena, Args&&... args) { in CreateMessage() argument
304 return Arena::CreateMaybeMessage<T>(arena, std::forward<Args>(args)...); in CreateMessage()
323 PROTOBUF_ALWAYS_INLINE static T* Create(Arena* arena, Args&&... args) { in Create() argument
325 std::forward<Args>(args)...); in Create()
448 static T* Construct(void* ptr, Args&&... args) { in Construct() argument
449 return new (ptr) T(std::forward<Args>(args) in Construct()
480 CreateMessageInternal(Arena* arena, Args&&... args) CreateMessageInternal() argument
508 CreateInternal(Arena* arena, Args&&... args) CreateInternal() argument
549 DoCreateMaybeMessage(Arena* arena, std::true_type, Args&&... args) DoCreateMaybeMessage() argument
556 DoCreateMaybeMessage(Arena* arena, std::false_type, Args&&... args) DoCreateMaybeMessage() argument
563 CreateMaybeMessage(Arena* arena, Args&&... args) CreateMaybeMessage() argument
570 CreateNoMessage(Arena* arena, std::true_type, Args&&... args) CreateNoMessage() argument
579 CreateNoMessage(Arena* arena, std::false_type, Args&&... args) CreateNoMessage() argument
601 DoCreate(bool skip_explicit_ownership, Args&&... args) DoCreate() argument
607 DoCreateMessage(Args&&.... args) DoCreateMessage() argument
617 CreateInArenaStorage(T* ptr, Arena* arena, Args&&... args) CreateInArenaStorage() argument
627 CreateInArenaStorageInternal(T* ptr, Arena* arena, std::true_type, Args&&... args) CreateInArenaStorageInternal() argument
632 CreateInArenaStorageInternal(T* ptr, Arena* , std::false_type, Args&&... args) CreateInArenaStorageInternal() argument
[all...]

Completed in 22 milliseconds

1...<<41424344454647484950>>...401