/third_party/node/src/ |
H A D | node_serdes.cc | 46 const FunctionCallbackInfo<Value>& args); 48 static void New(const FunctionCallbackInfo<Value>& args); 49 static void WriteHeader(const FunctionCallbackInfo<Value>& args); 50 static void WriteValue(const FunctionCallbackInfo<Value>& args); 51 static void ReleaseBuffer(const FunctionCallbackInfo<Value>& args); 52 static void TransferArrayBuffer(const FunctionCallbackInfo<Value>& args); 53 static void WriteUint32(const FunctionCallbackInfo<Value>& args); 54 static void WriteUint64(const FunctionCallbackInfo<Value>& args); 55 static void WriteDouble(const FunctionCallbackInfo<Value>& args); 56 static void WriteRawBytes(const FunctionCallbackInfo<Value>& args); 105 Local<Value> args[1] = { message }; ThrowDataCloneError() local 125 Local<Value> args[1] = { shared_array_buffer }; GetSharedArrayBufferId() local 150 Local<Value> args[1] = { input }; WriteHostObject() local 171 New(const FunctionCallbackInfo<Value>& args) New() argument 181 WriteHeader(const FunctionCallbackInfo<Value>& args) WriteHeader() argument 187 WriteValue(const FunctionCallbackInfo<Value>& args) WriteValue() argument 196 SetTreatArrayBufferViewsAsHostObjects( const FunctionCallbackInfo<Value>& args) SetTreatArrayBufferViewsAsHostObjects() argument 205 ReleaseBuffer(const FunctionCallbackInfo<Value>& args) ReleaseBuffer() argument 221 TransferArrayBuffer( const FunctionCallbackInfo<Value>& args) TransferArrayBuffer() argument 238 WriteUint32(const FunctionCallbackInfo<Value>& args) WriteUint32() argument 248 WriteUint64(const FunctionCallbackInfo<Value>& args) WriteUint64() argument 262 WriteDouble(const FunctionCallbackInfo<Value>& args) WriteDouble() argument 272 WriteRawBytes(const FunctionCallbackInfo<Value>& args) WriteRawBytes() argument 325 New(const FunctionCallbackInfo<Value>& args) New() argument 340 ReadHeader(const FunctionCallbackInfo<Value>& args) ReadHeader() argument 349 ReadValue(const FunctionCallbackInfo<Value>& args) ReadValue() argument 358 TransferArrayBuffer( const FunctionCallbackInfo<Value>& args) TransferArrayBuffer() argument 382 GetWireFormatVersion( const FunctionCallbackInfo<Value>& args) GetWireFormatVersion() argument 390 ReadUint32(const FunctionCallbackInfo<Value>& args) ReadUint32() argument 400 ReadUint64(const FunctionCallbackInfo<Value>& args) ReadUint64() argument 420 ReadDouble(const FunctionCallbackInfo<Value>& args) ReadDouble() argument 430 ReadRawBytes( const FunctionCallbackInfo<Value>& args) ReadRawBytes() argument [all...] |
/third_party/littlefs/scripts/ |
H A D | bench.py | 50 def __init__(self, config, args={}): 137 '\x1b[01;33m' if args['color'] else '', 138 '\x1b[m' if args['color'] else '', 146 def __init__(self, path, args={}): 209 args=args)) 217 '\x1b[01;33m' if args['color'] else '', 218 '\x1b[m' if args['color'] else '', 225 def compile(bench_paths, **args): 240 suites = [BenchSuite(path, args) fo [all...] |
/kernel/linux/linux-5.10/arch/x86/include/asm/ |
H A D | syscall.h | 86 unsigned long *args) in syscall_get_arguments() 88 memcpy(args, ®s->bx, 6 * sizeof(args[0])); in syscall_get_arguments() 94 const unsigned long *args) in syscall_set_arguments() 97 memcpy(®s->bx + i, args, n * sizeof(args[0])); in syscall_set_arguments() 109 unsigned long *args) in syscall_get_arguments() 113 *args++ = regs->bx; in syscall_get_arguments() 114 *args++ = regs->cx; in syscall_get_arguments() 115 *args in syscall_get_arguments() 84 syscall_get_arguments(struct task_struct *task, struct pt_regs *regs, unsigned long *args) syscall_get_arguments() argument 91 syscall_set_arguments(struct task_struct *task, struct pt_regs *regs, unsigned int i, unsigned int n, const unsigned long *args) syscall_set_arguments() argument 107 syscall_get_arguments(struct task_struct *task, struct pt_regs *regs, unsigned long *args) syscall_get_arguments() argument 131 syscall_set_arguments(struct task_struct *task, struct pt_regs *regs, const unsigned long *args) syscall_set_arguments() argument [all...] |
/third_party/mesa3d/.gitlab-ci/b2c/ |
H A D | generate_b2c.py | 54 args = parser.parse_args() variable 56 env = Environment(loader=FileSystemLoader(path.dirname(args.template)), 59 template = env.get_template(path.basename(args.template)) 62 values['ci_job_id'] = args.ci_job_id 63 values['container_cmd'] = args.container_cmd 64 values['initramfs_url'] = args.initramfs_url 65 values['job_success_regex'] = args.job_success_regex 66 values['job_warn_regex'] = args.job_warn_regex 67 values['kernel_url'] = args.kernel_url 68 values['log_level'] = args [all...] |
/third_party/node/benchmark/napi/function_args/ |
H A D | binding.cc | 20 void CallWithString(const FunctionCallbackInfo<Value>& args) { in CallWithString() argument 21 assert(args.Length() == 1 && args[0]->IsString()); in CallWithString() 22 if (args.Length() == 1 && args[0]->IsString()) { in CallWithString() 23 Local<String> str = args[0].As<String>(); in CallWithString() 24 const int32_t length = str->Utf8Length(args.GetIsolate()) + 1; in CallWithString() 26 str->WriteUtf8(args.GetIsolate(), buf, length); in CallWithString() 31 void CallWithArray(const FunctionCallbackInfo<Value>& args) { in CallWithArray() argument 32 assert(args in CallWithArray() 44 CallWithNumber(const FunctionCallbackInfo<Value>& args) CallWithNumber() argument 51 CallWithObject(const FunctionCallbackInfo<Value>& args) CallWithObject() argument 97 CallWithTypedarray(const FunctionCallbackInfo<Value>& args) CallWithTypedarray() argument 114 CallWithArguments(const FunctionCallbackInfo<Value>& args) CallWithArguments() argument [all...] |
/kernel/linux/linux-5.10/arch/powerpc/kvm/ |
H A D | book3s_rtas.c | 19 static void kvm_rtas_set_xive(struct kvm_vcpu *vcpu, struct rtas_args *args) in kvm_rtas_set_xive() argument 24 if (be32_to_cpu(args->nargs) != 3 || be32_to_cpu(args->nret) != 1) { in kvm_rtas_set_xive() 29 irq = be32_to_cpu(args->args[0]); in kvm_rtas_set_xive() 30 server = be32_to_cpu(args->args[1]); in kvm_rtas_set_xive() 31 priority = be32_to_cpu(args->args[2]); in kvm_rtas_set_xive() 40 args in kvm_rtas_set_xive() 43 kvm_rtas_get_xive(struct kvm_vcpu *vcpu, struct rtas_args *args) kvm_rtas_get_xive() argument 71 kvm_rtas_int_off(struct kvm_vcpu *vcpu, struct rtas_args *args) kvm_rtas_int_off() argument 93 kvm_rtas_int_on(struct kvm_vcpu *vcpu, struct rtas_args *args) kvm_rtas_int_on() argument 138 struct kvm_rtas_token_args args; rtas_name_matches() local 200 struct kvm_rtas_token_args args; kvm_vm_ioctl_rtas_define_token() local 221 struct rtas_args args; kvmppc_rtas_hcall() local [all...] |
/kernel/linux/linux-6.6/arch/powerpc/kvm/ |
H A D | book3s_rtas.c | 19 static void kvm_rtas_set_xive(struct kvm_vcpu *vcpu, struct rtas_args *args) in kvm_rtas_set_xive() argument 24 if (be32_to_cpu(args->nargs) != 3 || be32_to_cpu(args->nret) != 1) { in kvm_rtas_set_xive() 29 irq = be32_to_cpu(args->args[0]); in kvm_rtas_set_xive() 30 server = be32_to_cpu(args->args[1]); in kvm_rtas_set_xive() 31 priority = be32_to_cpu(args->args[2]); in kvm_rtas_set_xive() 40 args in kvm_rtas_set_xive() 43 kvm_rtas_get_xive(struct kvm_vcpu *vcpu, struct rtas_args *args) kvm_rtas_get_xive() argument 71 kvm_rtas_int_off(struct kvm_vcpu *vcpu, struct rtas_args *args) kvm_rtas_int_off() argument 93 kvm_rtas_int_on(struct kvm_vcpu *vcpu, struct rtas_args *args) kvm_rtas_int_on() argument 138 struct kvm_rtas_token_args args; rtas_name_matches() local 200 struct kvm_rtas_token_args args; kvm_vm_ioctl_rtas_define_token() local 221 struct rtas_args args; kvmppc_rtas_hcall() local [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/ |
H A D | nouveau_chan.c | 151 struct nv_dma_v0 args = {}; in nouveau_channel_prep() local 210 args.target = NV_DMA_V0_TARGET_VM; in nouveau_channel_prep() 211 args.access = NV_DMA_V0_ACCESS_VM; in nouveau_channel_prep() 212 args.start = 0; in nouveau_channel_prep() 213 args.limit = chan->vmm->vmm.limit - 1; in nouveau_channel_prep() 221 args.target = NV_DMA_V0_TARGET_PCI; in nouveau_channel_prep() 222 args.access = NV_DMA_V0_ACCESS_RDWR; in nouveau_channel_prep() 223 args.start = nvxx_device(device)->func-> in nouveau_channel_prep() 225 args.limit = args in nouveau_channel_prep() 278 } args; nouveau_channel_ind() local 359 struct nv03_channel_dma_v0 args; nouveau_channel_dma() local 393 struct nv_dma_v0 args = {}; nouveau_channel_init() local 556 } args = { nouveau_channels_init() local [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | ucnvhz.cpp | 41 #define CONCAT_ESCAPE_MACRO(args, targetIndex,targetLength,strToAppend, err, len,sourceIndex) UPRV_BLOCK_MACRO_BEGIN { \ 44 args->target[targetIndex] = (unsigned char) *strToAppend; \ 45 if(args->offsets!=NULL){ \ 51 args->converter->charErrorBuffer[(int)args->converter->charErrorBufferLength++] = (unsigned char) *strToAppend; \ 156 UConverter_toUnicode_HZ_OFFSETS_LOGIC(UConverterToUnicodeArgs *args, in UConverter_toUnicode_HZ_OFFSETS_LOGIC() argument 159 const char *mySource = ( char *) args->source; in UConverter_toUnicode_HZ_OFFSETS_LOGIC() 160 UChar *myTarget = args->target; in UConverter_toUnicode_HZ_OFFSETS_LOGIC() 161 const char *mySourceLimit = args->sourceLimit; in UConverter_toUnicode_HZ_OFFSETS_LOGIC() 164 UConverterDataHZ* myData=(UConverterDataHZ*)(args in UConverter_toUnicode_HZ_OFFSETS_LOGIC() 336 UConverter_fromUnicode_HZ_OFFSETS_LOGIC(UConverterFromUnicodeArgs * args, UErrorCode * err) UConverter_fromUnicode_HZ_OFFSETS_LOGIC() argument 500 _HZ_WriteSub(UConverterFromUnicodeArgs *args, int32_t offsetIndex, UErrorCode *err) _HZ_WriteSub() argument [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | ucnvhz.cpp | 41 #define CONCAT_ESCAPE_MACRO(args, targetIndex,targetLength,strToAppend, err, len,sourceIndex) UPRV_BLOCK_MACRO_BEGIN { \ 44 args->target[targetIndex] = (unsigned char) *strToAppend; \ 45 if(args->offsets!=nullptr){ \ 51 args->converter->charErrorBuffer[(int)args->converter->charErrorBufferLength++] = (unsigned char) *strToAppend; \ 156 UConverter_toUnicode_HZ_OFFSETS_LOGIC(UConverterToUnicodeArgs *args, in UConverter_toUnicode_HZ_OFFSETS_LOGIC() argument 159 const char *mySource = ( char *) args->source; in UConverter_toUnicode_HZ_OFFSETS_LOGIC() 160 char16_t *myTarget = args->target; in UConverter_toUnicode_HZ_OFFSETS_LOGIC() 161 const char *mySourceLimit = args->sourceLimit; in UConverter_toUnicode_HZ_OFFSETS_LOGIC() 164 UConverterDataHZ* myData=(UConverterDataHZ*)(args in UConverter_toUnicode_HZ_OFFSETS_LOGIC() 336 UConverter_fromUnicode_HZ_OFFSETS_LOGIC(UConverterFromUnicodeArgs * args, UErrorCode * err) UConverter_fromUnicode_HZ_OFFSETS_LOGIC() argument 500 _HZ_WriteSub(UConverterFromUnicodeArgs *args, int32_t offsetIndex, UErrorCode *err) _HZ_WriteSub() argument [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ucnvhz.cpp | 41 #define CONCAT_ESCAPE_MACRO(args, targetIndex,targetLength,strToAppend, err, len,sourceIndex) UPRV_BLOCK_MACRO_BEGIN { \ 44 args->target[targetIndex] = (unsigned char) *strToAppend; \ 45 if(args->offsets!=NULL){ \ 51 args->converter->charErrorBuffer[(int)args->converter->charErrorBufferLength++] = (unsigned char) *strToAppend; \ 156 UConverter_toUnicode_HZ_OFFSETS_LOGIC(UConverterToUnicodeArgs *args, in UConverter_toUnicode_HZ_OFFSETS_LOGIC() argument 159 const char *mySource = ( char *) args->source; in UConverter_toUnicode_HZ_OFFSETS_LOGIC() 160 UChar *myTarget = args->target; in UConverter_toUnicode_HZ_OFFSETS_LOGIC() 161 const char *mySourceLimit = args->sourceLimit; in UConverter_toUnicode_HZ_OFFSETS_LOGIC() 164 UConverterDataHZ* myData=(UConverterDataHZ*)(args in UConverter_toUnicode_HZ_OFFSETS_LOGIC() 336 UConverter_fromUnicode_HZ_OFFSETS_LOGIC(UConverterFromUnicodeArgs * args, UErrorCode * err) UConverter_fromUnicode_HZ_OFFSETS_LOGIC() argument 500 _HZ_WriteSub(UConverterFromUnicodeArgs *args, int32_t offsetIndex, UErrorCode *err) _HZ_WriteSub() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/radeon/ |
H A D | atombios_encoders.c | 103 DISPLAY_DEVICE_OUTPUT_CONTROL_PS_ALLOCATION args; in atombios_set_backlight_level() local 120 args.ucAction = ATOM_LCD_BLOFF; in atombios_set_backlight_level() 121 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); in atombios_set_backlight_level() 123 args.ucAction = ATOM_LCD_BL_BRIGHTNESS_CONTROL; in atombios_set_backlight_level() 124 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); in atombios_set_backlight_level() 125 args.ucAction = ATOM_LCD_BLON; in atombios_set_backlight_level() 126 atom_execute_table(rdev->mode_info.atom_context, index, (uint32_t *)&args); in atombios_set_backlight_level() 349 DAC_ENCODER_CONTROL_PS_ALLOCATION args; in atombios_dac_setup() local 353 memset(&args, 0, sizeof(args)); in atombios_dac_setup() 401 TV_ENCODER_CONTROL_PS_ALLOCATION args; atombios_tv_setup() local 490 union dvo_encoder_control args; atombios_dvo_setup() local 563 union lvds_encoder_control args; atombios_digital_setup() local 837 union dig_encoder_control args; atombios_dig_encoder_setup2() local 1007 union dig_transmitter_control args; atombios_dig_transmitter_setup2() local 1378 union dig_transmitter_control args; atombios_set_edp_panel_power() local 1430 union external_encoder_control args; atombios_external_encoder_setup() local 1531 ENABLE_YUV_PS_ALLOCATION args; atombios_yuv_setup() local 1567 DISPLAY_DEVICE_OUTPUT_CONTROL_PS_ALLOCATION args; radeon_atom_encoder_dpms_avivo() local 1850 union crtc_source_param args; atombios_set_encoder_crtc_source() local 2282 DAC_LOAD_DETECTION_PS_ALLOCATION args; atombios_dac_load_detect() local [all...] |
/kernel/linux/linux-6.6/fs/xfs/libxfs/ |
H A D | xfs_alloc.c | 317 xfs_alloc_arg_t *args, /* allocation argument structure */ in xfs_alloc_compute_aligned() 330 busy = xfs_extent_busy_trim(args, &bno, &len, busy_gen); in xfs_alloc_compute_aligned() 336 if (bno < args->min_agbno && bno + len > args->min_agbno) { in xfs_alloc_compute_aligned() 337 diff = args->min_agbno - bno; in xfs_alloc_compute_aligned() 344 if (args->alignment > 1 && len >= args->minlen) { in xfs_alloc_compute_aligned() 345 xfs_agblock_t aligned_bno = roundup(bno, args->alignment); in xfs_alloc_compute_aligned() 436 xfs_alloc_arg_t *args) /* allocation argument structure */ in xfs_alloc_fix_len() 441 ASSERT(args in xfs_alloc_fix_len() 316 xfs_alloc_compute_aligned( xfs_alloc_arg_t *args, xfs_agblock_t foundbno, xfs_extlen_t foundlen, xfs_agblock_t *resbno, xfs_extlen_t *reslen, unsigned *busy_gen) xfs_alloc_compute_aligned() argument 435 xfs_alloc_fix_len( xfs_alloc_arg_t *args) xfs_alloc_fix_len() argument 811 xfs_alloc_cur_setup( struct xfs_alloc_arg *args, struct xfs_alloc_cur *acur) xfs_alloc_cur_setup() argument 877 xfs_alloc_cur_check( struct xfs_alloc_arg *args, struct xfs_alloc_cur *acur, struct xfs_btree_cur *cur, int *new) xfs_alloc_cur_check() argument 974 xfs_alloc_cur_finish( struct xfs_alloc_arg *args, struct xfs_alloc_cur *acur) xfs_alloc_cur_finish() argument 1004 xfs_alloc_cntbt_iter( struct xfs_alloc_arg *args, struct xfs_alloc_cur *acur) xfs_alloc_cntbt_iter() argument 1075 xfs_alloc_ag_vextent_small( struct xfs_alloc_arg *args, struct xfs_btree_cur *ccur, xfs_agblock_t *fbnop, xfs_extlen_t *flenp, int *stat) xfs_alloc_ag_vextent_small() argument 1182 xfs_alloc_ag_vextent_exact( xfs_alloc_arg_t *args) xfs_alloc_ag_vextent_exact() argument 1297 xfs_alloc_walk_iter( struct xfs_alloc_arg *args, struct xfs_alloc_cur *acur, struct xfs_btree_cur *cur, bool increment, bool find_one, int count, int *stat) xfs_alloc_walk_iter() argument 1349 xfs_alloc_ag_vextent_locality( struct xfs_alloc_arg *args, struct xfs_alloc_cur *acur, int *stat) xfs_alloc_ag_vextent_locality() argument 1474 xfs_alloc_ag_vextent_lastblock( struct xfs_alloc_arg *args, struct xfs_alloc_cur *acur, xfs_agblock_t *bno, xfs_extlen_t *len, bool *allocated) xfs_alloc_ag_vextent_lastblock() argument 1538 xfs_alloc_ag_vextent_near( struct xfs_alloc_arg *args, uint32_t alloc_flags) xfs_alloc_ag_vextent_near() argument 1653 xfs_alloc_ag_vextent_size( struct xfs_alloc_arg *args, uint32_t alloc_flags) xfs_alloc_ag_vextent_size() argument 2320 xfs_alloc_space_available( struct xfs_alloc_arg *args, xfs_extlen_t min_free, int flags) xfs_alloc_space_available() argument 2590 xfs_exact_minlen_extent_available( struct xfs_alloc_arg *args, struct xfs_buf *agbp, int *stat) xfs_exact_minlen_extent_available() argument 2630 xfs_alloc_fix_freelist( struct xfs_alloc_arg *args, uint32_t alloc_flags) xfs_alloc_fix_freelist() argument 3271 xfs_alloc_vextent_check_args( struct xfs_alloc_arg *args, xfs_fsblock_t target, xfs_agnumber_t *minimum_agno) xfs_alloc_vextent_check_args() argument 3331 xfs_alloc_vextent_prepare_ag( struct xfs_alloc_arg *args, uint32_t alloc_flags) xfs_alloc_vextent_prepare_ag() argument 3368 xfs_alloc_vextent_finish( struct xfs_alloc_arg *args, xfs_agnumber_t minimum_agno, int alloc_error, bool drop_perag) xfs_alloc_vextent_finish() argument 3458 xfs_alloc_vextent_this_ag( struct xfs_alloc_arg *args, xfs_agnumber_t agno) xfs_alloc_vextent_this_ag() argument 3509 xfs_alloc_vextent_iterate_ags( struct xfs_alloc_arg *args, xfs_agnumber_t minimum_agno, xfs_agnumber_t start_agno, xfs_agblock_t target_agbno, uint32_t alloc_flags) xfs_alloc_vextent_iterate_ags() argument 3581 xfs_alloc_vextent_start_ag( struct xfs_alloc_arg *args, xfs_fsblock_t target) xfs_alloc_vextent_start_ag() argument 3637 xfs_alloc_vextent_first_ag( struct xfs_alloc_arg *args, xfs_fsblock_t target) xfs_alloc_vextent_first_ag() argument 3672 xfs_alloc_vextent_exact_bno( struct xfs_alloc_arg *args, xfs_fsblock_t target) xfs_alloc_vextent_exact_bno() argument 3709 xfs_alloc_vextent_near_bno( struct xfs_alloc_arg *args, xfs_fsblock_t target) xfs_alloc_vextent_near_bno() argument 3751 struct xfs_alloc_arg args; xfs_free_extent_fix_freelist() local [all...] |
/third_party/skia/third_party/externals/angle2/android/ |
H A D | compress_symbols.py | 28 args = parser.parse_args() 30 copy_cmd = ["cp", args.unstrippedsofile, args.output] 33 nm_cmd = subprocess.Popen([args.nm, '-D', args.output, '--format=posix', '--defined-only'], 38 dynsym_out = open(args.output + '.dynsyms', 'w') 43 funcsyms_out = open(args.output + '.funcsyms', 'w') 44 nm_cmd = subprocess.Popen([args.nm, args.output, '--format=posix', '--defined-only'], 55 keep_symbols = open(args [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdkfd/ |
H A D | kfd_chardev.c | 160 struct kfd_ioctl_get_version_args *args = data; in kfd_ioctl_get_version() local 162 args->major_version = KFD_IOCTL_MAJOR_VERSION; in kfd_ioctl_get_version() 163 args->minor_version = KFD_IOCTL_MINOR_VERSION; in kfd_ioctl_get_version() 169 struct kfd_ioctl_create_queue_args *args) in set_queue_properties_from_user() 171 if (args->queue_percentage > KFD_MAX_QUEUE_PERCENTAGE) { in set_queue_properties_from_user() 176 if (args->queue_priority > KFD_MAX_QUEUE_PRIORITY) { in set_queue_properties_from_user() 181 if ((args->ring_base_address) && in set_queue_properties_from_user() 182 (!access_ok((const void __user *) args->ring_base_address, in set_queue_properties_from_user() 188 if (!is_power_of_2(args->ring_size) && (args in set_queue_properties_from_user() 168 set_queue_properties_from_user(struct queue_properties *q_properties, struct kfd_ioctl_create_queue_args *args) set_queue_properties_from_user() argument 277 struct kfd_ioctl_create_queue_args *args = data; kfd_ioctl_create_queue() local 354 struct kfd_ioctl_destroy_queue_args *args = data; kfd_ioctl_destroy_queue() local 372 struct kfd_ioctl_update_queue_args *args = data; kfd_ioctl_update_queue() local 419 struct kfd_ioctl_set_cu_mask_args *args = data; kfd_ioctl_set_cu_mask() local 472 struct kfd_ioctl_get_queue_wave_state_args *args = data; kfd_ioctl_get_queue_wave_state() local 490 struct kfd_ioctl_set_memory_policy_args *args = data; kfd_ioctl_set_memory_policy() local 542 struct kfd_ioctl_set_trap_handler_args *args = data; kfd_ioctl_set_trap_handler() local 574 struct kfd_ioctl_dbg_register_args *args = data; kfd_ioctl_dbg_register() local 628 struct kfd_ioctl_dbg_unregister_args *args = data; kfd_ioctl_dbg_unregister() local 666 struct kfd_ioctl_dbg_address_watch_args *args = data; kfd_ioctl_dbg_address_watch() local 766 struct kfd_ioctl_dbg_wave_control_args *args = data; kfd_ioctl_dbg_wave_control() local 850 struct kfd_ioctl_get_clock_counters_args *args = data; kfd_ioctl_get_clock_counters() local 875 struct kfd_ioctl_get_process_apertures_args *args = data; kfd_ioctl_get_process_apertures() local 931 struct kfd_ioctl_get_process_apertures_new_args *args = data; kfd_ioctl_get_process_apertures_new() local 1022 struct kfd_ioctl_create_event_args *args = data; kfd_ioctl_create_event() local 1093 struct kfd_ioctl_destroy_event_args *args = data; kfd_ioctl_destroy_event() local 1101 struct kfd_ioctl_set_event_args *args = data; kfd_ioctl_set_event() local 1109 struct kfd_ioctl_reset_event_args *args = data; kfd_ioctl_reset_event() local 1117 struct kfd_ioctl_wait_events_args *args = data; kfd_ioctl_wait_events() local 1130 struct kfd_ioctl_set_scratch_backing_va_args *args = data; kfd_ioctl_set_scratch_backing_va() local 1166 struct kfd_ioctl_get_tile_config_args *args = data; kfd_ioctl_get_tile_config() local 1208 struct kfd_ioctl_acquire_vm_args *args = data; kfd_ioctl_acquire_vm() local 1271 struct kfd_ioctl_alloc_memory_of_gpu_args *args = data; kfd_ioctl_alloc_memory_of_gpu() local 1362 struct kfd_ioctl_free_memory_of_gpu_args *args = data; kfd_ioctl_free_memory_of_gpu() local 1409 struct kfd_ioctl_map_memory_to_gpu_args *args = data; kfd_ioctl_map_memory_to_gpu() local 1519 struct kfd_ioctl_unmap_memory_from_gpu_args *args = data; kfd_ioctl_unmap_memory_from_gpu() local 1607 struct kfd_ioctl_alloc_queue_gws_args *args = data; kfd_ioctl_alloc_queue_gws() local 1645 struct kfd_ioctl_get_dmabuf_info_args *args = data; kfd_ioctl_get_dmabuf_info() local 1700 struct kfd_ioctl_import_dmabuf_args *args = data; kfd_ioctl_import_dmabuf() local 1757 struct kfd_ioctl_smi_events_args *args = data; kfd_ioctl_smi_events() local [all...] |
/kernel/linux/linux-6.6/fs/nfs/ |
H A D | callback_proc.c | 31 struct cb_getattrargs *args = argp; in nfs4_callback_getattr() local 46 inode = nfs_delegation_find_inode(cps->clp, &args->fh); in nfs4_callback_getattr() 50 trace_nfs4_cb_getattr(cps->clp, &args->fh, NULL, in nfs4_callback_getattr() 65 args->bitmap[0]; in nfs4_callback_getattr() 67 args->bitmap[1]; in nfs4_callback_getattr() 71 trace_nfs4_cb_getattr(cps->clp, &args->fh, inode, -ntohl(res->status)); in nfs4_callback_getattr() 81 struct cb_recallargs *args = argp; in nfs4_callback_recall() local 93 inode = nfs_delegation_find_inode(cps->clp, &args->fh); in nfs4_callback_recall() 97 trace_nfs4_cb_recall(cps->clp, &args->fh, NULL, in nfs4_callback_recall() 98 &args in nfs4_callback_recall() 244 initiate_file_draining(struct nfs_client *clp, struct cb_layoutrecallargs *args) initiate_file_draining() argument 314 initiate_bulk_draining(struct nfs_client *clp, struct cb_layoutrecallargs *args) initiate_bulk_draining() argument 328 do_callback_layoutrecall(struct nfs_client *clp, struct cb_layoutrecallargs *args) do_callback_layoutrecall() argument 339 struct cb_layoutrecallargs *args = argp; nfs4_callback_layoutrecall() local 349 struct cb_layoutrecallargs args; pnfs_recall_all_layouts() local 361 struct cb_devicenotifyargs *args = argp; nfs4_callback_devicenotify() local 402 validate_seqid(const struct nfs4_slot_table *tbl, const struct nfs4_slot *slot, const struct cb_sequenceargs * args) validate_seqid() argument 491 struct cb_sequenceargs *args = argp; nfs4_callback_sequence() local 595 struct cb_recallanyargs *args = argp; nfs4_callback_recallany() local 642 struct cb_recallslotargs *args = argp; nfs4_callback_recallslot() local 668 struct cb_notify_lock_args *args = argp; nfs4_callback_notify_lock() local 684 nfs4_copy_cb_args(struct nfs4_copy_state *cp_state, struct cb_offloadargs *args) nfs4_copy_cb_args() argument 700 struct cb_offloadargs *args = data; nfs4_callback_offload() local [all...] |
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/engine/device/ |
H A D | ctrl.c | 39 } *args = data; in nvkm_control_mthd_pstate_info() local 44 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) { in nvkm_control_mthd_pstate_info() 46 args->v0.version); in nvkm_control_mthd_pstate_info() 51 args->v0.count = clk->state_nr; in nvkm_control_mthd_pstate_info() 52 args->v0.ustate_ac = clk->ustate_ac; in nvkm_control_mthd_pstate_info() 53 args->v0.ustate_dc = clk->ustate_dc; in nvkm_control_mthd_pstate_info() 54 args->v0.pwrsrc = clk->pwrsrc; in nvkm_control_mthd_pstate_info() 55 args->v0.pstate = clk->pstate; in nvkm_control_mthd_pstate_info() 57 args->v0.count = 0; in nvkm_control_mthd_pstate_info() 58 args in nvkm_control_mthd_pstate_info() 72 } *args = data; nvkm_control_mthd_pstate_attr() local 145 } *args = data; nvkm_control_mthd_pstate_user() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/engine/device/ |
H A D | ctrl.c | 39 } *args = data; in nvkm_control_mthd_pstate_info() local 44 if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) { in nvkm_control_mthd_pstate_info() 46 args->v0.version); in nvkm_control_mthd_pstate_info() 51 args->v0.count = clk->state_nr; in nvkm_control_mthd_pstate_info() 52 args->v0.ustate_ac = clk->ustate_ac; in nvkm_control_mthd_pstate_info() 53 args->v0.ustate_dc = clk->ustate_dc; in nvkm_control_mthd_pstate_info() 54 args->v0.pwrsrc = clk->pwrsrc; in nvkm_control_mthd_pstate_info() 55 args->v0.pstate = clk->pstate; in nvkm_control_mthd_pstate_info() 57 args->v0.count = 0; in nvkm_control_mthd_pstate_info() 58 args in nvkm_control_mthd_pstate_info() 72 } *args = data; nvkm_control_mthd_pstate_attr() local 145 } *args = data; nvkm_control_mthd_pstate_user() local [all...] |
/kernel/linux/linux-6.6/drivers/accel/habanalabs/common/ |
H A D | habanalabs_ioctl.c | 31 static int device_status_info(struct hl_device *hdev, struct hl_info_args *args) in device_status_info() argument 34 u32 size = args->return_size; in device_status_info() 35 void __user *out = (void __user *) (uintptr_t) args->return_pointer; in device_status_info() 46 static int hw_ip_info(struct hl_device *hdev, struct hl_info_args *args) in hw_ip_info() argument 49 u32 size = args->return_size; in hw_ip_info() 50 void __user *out = (void __user *) (uintptr_t) args->return_pointer; in hw_ip_info() 117 struct hl_info_args *args) in hw_events_info() 119 u32 size, max_size = args->return_size; in hw_events_info() 120 void __user *out = (void __user *) (uintptr_t) args->return_pointer; in hw_events_info() 135 static int events_info(struct hl_fpriv *hpriv, struct hl_info_args *args) in events_info() argument 116 hw_events_info(struct hl_device *hdev, bool aggregate, struct hl_info_args *args) hw_events_info() argument 152 dram_usage_info(struct hl_fpriv *hpriv, struct hl_info_args *args) dram_usage_info() argument 176 hw_idle(struct hl_device *hdev, struct hl_info_args *args) hw_idle() argument 195 debug_coresight(struct hl_device *hdev, struct hl_ctx *ctx, struct hl_debug_args *args) debug_coresight() argument 260 device_utilization(struct hl_device *hdev, struct hl_info_args *args) device_utilization() argument 278 get_clk_rate(struct hl_device *hdev, struct hl_info_args *args) get_clk_rate() argument 296 get_reset_count(struct hl_device *hdev, struct hl_info_args *args) get_reset_count() argument 312 time_sync_info(struct hl_device *hdev, struct hl_info_args *args) time_sync_info() argument 328 pci_counters_info(struct hl_fpriv *hpriv, struct hl_info_args *args) pci_counters_info() argument 347 clk_throttle_info(struct hl_fpriv *hpriv, struct hl_info_args *args) clk_throttle_info() argument 386 cs_counters_info(struct hl_fpriv *hpriv, struct hl_info_args *args) cs_counters_info() argument 437 sync_manager_info(struct hl_fpriv *hpriv, struct hl_info_args *args) sync_manager_info() argument 462 total_energy_consumption_info(struct hl_fpriv *hpriv, struct hl_info_args *args) total_energy_consumption_info() argument 483 pll_frequency_info(struct hl_fpriv *hpriv, struct hl_info_args *args) pll_frequency_info() argument 502 power_info(struct hl_fpriv *hpriv, struct hl_info_args *args) power_info() argument 521 open_stats_info(struct hl_fpriv *hpriv, struct hl_info_args *args) open_stats_info() argument 541 dram_pending_rows_info(struct hl_fpriv *hpriv, struct hl_info_args *args) dram_pending_rows_info() argument 560 dram_replaced_rows_info(struct hl_fpriv *hpriv, struct hl_info_args *args) dram_replaced_rows_info() argument 578 last_err_open_dev_info(struct hl_fpriv *hpriv, struct hl_info_args *args) last_err_open_dev_info() argument 593 cs_timeout_info(struct hl_fpriv *hpriv, struct hl_info_args *args) cs_timeout_info() argument 609 razwi_info(struct hl_fpriv *hpriv, struct hl_info_args *args) razwi_info() argument 627 undefined_opcode_info(struct hl_fpriv *hpriv, struct hl_info_args *args) undefined_opcode_info() argument 649 dev_mem_alloc_page_sizes_info(struct hl_fpriv *hpriv, struct hl_info_args *args) dev_mem_alloc_page_sizes_info() argument 670 sec_attest_info(struct hl_fpriv *hpriv, struct hl_info_args *args) sec_attest_info() argument 719 eventfd_register(struct hl_fpriv *hpriv, struct hl_info_args *args) eventfd_register() argument 742 eventfd_unregister(struct hl_fpriv *hpriv, struct hl_info_args *args) eventfd_unregister() argument 756 engine_status_info(struct hl_fpriv *hpriv, struct hl_info_args *args) engine_status_info() argument 792 page_fault_info(struct hl_fpriv *hpriv, struct hl_info_args *args) page_fault_info() argument 810 user_mappings_info(struct hl_fpriv *hpriv, struct hl_info_args *args) user_mappings_info() argument 834 hw_err_info(struct hl_fpriv *hpriv, struct hl_info_args *args) hw_err_info() argument 856 fw_err_info(struct hl_fpriv *hpriv, struct hl_info_args *args) fw_err_info() argument 930 struct hl_info_args *args = data; _hl_info_ioctl() local 1085 struct hl_debug_args *args = data; hl_debug_ioctl() local [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/amdkfd/ |
H A D | kfd_chardev.c | 177 struct kfd_ioctl_get_version_args *args = data; in kfd_ioctl_get_version() local 179 args->major_version = KFD_IOCTL_MAJOR_VERSION; in kfd_ioctl_get_version() 180 args->minor_version = KFD_IOCTL_MINOR_VERSION; in kfd_ioctl_get_version() 186 struct kfd_ioctl_create_queue_args *args) in set_queue_properties_from_user() 193 if ((args->queue_percentage & 0xFF) > KFD_MAX_QUEUE_PERCENTAGE) { in set_queue_properties_from_user() 198 if (args->queue_priority > KFD_MAX_QUEUE_PRIORITY) { in set_queue_properties_from_user() 203 if ((args->ring_base_address) && in set_queue_properties_from_user() 204 (!access_ok((const void __user *) args->ring_base_address, in set_queue_properties_from_user() 210 if (!is_power_of_2(args->ring_size) && (args in set_queue_properties_from_user() 185 set_queue_properties_from_user(struct queue_properties *q_properties, struct kfd_ioctl_create_queue_args *args) set_queue_properties_from_user() argument 301 struct kfd_ioctl_create_queue_args *args = data; kfd_ioctl_create_queue() local 432 struct kfd_ioctl_destroy_queue_args *args = data; kfd_ioctl_destroy_queue() local 450 struct kfd_ioctl_update_queue_args *args = data; kfd_ioctl_update_queue() local 504 struct kfd_ioctl_set_cu_mask_args *args = data; kfd_ioctl_set_cu_mask() local 556 struct kfd_ioctl_get_queue_wave_state_args *args = data; kfd_ioctl_get_queue_wave_state() local 574 struct kfd_ioctl_set_memory_policy_args *args = data; kfd_ioctl_set_memory_policy() local 628 struct kfd_ioctl_set_trap_handler_args *args = data; kfd_ioctl_set_trap_handler() local 683 struct kfd_ioctl_get_clock_counters_args *args = data; kfd_ioctl_get_clock_counters() local 710 struct kfd_ioctl_get_process_apertures_args *args = data; kfd_ioctl_get_process_apertures() local 761 struct kfd_ioctl_get_process_apertures_new_args *args = data; kfd_ioctl_get_process_apertures_new() local 839 struct kfd_ioctl_create_event_args *args = data; kfd_ioctl_create_event() local 867 struct kfd_ioctl_destroy_event_args *args = data; kfd_ioctl_destroy_event() local 875 struct kfd_ioctl_set_event_args *args = data; kfd_ioctl_set_event() local 883 struct kfd_ioctl_reset_event_args *args = data; kfd_ioctl_reset_event() local 891 struct kfd_ioctl_wait_events_args *args = data; kfd_ioctl_wait_events() local 901 struct kfd_ioctl_set_scratch_backing_va_args *args = data; kfd_ioctl_set_scratch_backing_va() local 940 struct kfd_ioctl_get_tile_config_args *args = data; kfd_ioctl_get_tile_config() local 984 struct kfd_ioctl_acquire_vm_args *args = data; kfd_ioctl_acquire_vm() local 1045 struct kfd_ioctl_get_available_memory_args *args = data; kfd_ioctl_get_available_memory() local 1059 struct kfd_ioctl_alloc_memory_of_gpu_args *args = data; kfd_ioctl_alloc_memory_of_gpu() local 1197 struct kfd_ioctl_free_memory_of_gpu_args *args = data; kfd_ioctl_free_memory_of_gpu() local 1249 struct kfd_ioctl_map_memory_to_gpu_args *args = data; kfd_ioctl_map_memory_to_gpu() local 1367 struct kfd_ioctl_unmap_memory_from_gpu_args *args = data; kfd_ioctl_unmap_memory_from_gpu() local 1464 struct kfd_ioctl_alloc_queue_gws_args *args = data; kfd_ioctl_alloc_queue_gws() local 1508 struct kfd_ioctl_get_dmabuf_info_args *args = data; kfd_ioctl_get_dmabuf_info() local 1561 struct kfd_ioctl_import_dmabuf_args *args = data; kfd_ioctl_import_dmabuf() local 1618 struct kfd_ioctl_export_dmabuf_args *args = data; kfd_ioctl_export_dmabuf() local 1671 struct kfd_ioctl_smi_events_args *args = data; kfd_ioctl_smi_events() local 1689 struct kfd_ioctl_set_xnack_mode_args *args = data; kfd_ioctl_set_xnack_mode() local 1721 struct kfd_ioctl_svm_args *args = data; kfd_ioctl_svm() local 2047 criu_checkpoint(struct file *filep, struct kfd_process *p, struct kfd_ioctl_criu_args *args) criu_checkpoint() argument 2136 criu_restore_process(struct kfd_process *p, struct kfd_ioctl_criu_args *args, uint64_t *priv_offset, uint64_t max_priv_data_size) criu_restore_process() argument 2177 criu_restore_devices(struct kfd_process *p, struct kfd_ioctl_criu_args *args, uint64_t *priv_offset, uint64_t max_priv_data_size) criu_restore_devices() argument 2418 criu_restore_bos(struct kfd_process *p, struct kfd_ioctl_criu_args *args, uint64_t *priv_offset, uint64_t max_priv_data_size) criu_restore_bos() argument 2488 criu_restore_objects(struct file *filep, struct kfd_process *p, struct kfd_ioctl_criu_args *args, uint64_t *priv_offset, uint64_t max_priv_data_size) criu_restore_objects() argument 2544 criu_restore(struct file *filep, struct kfd_process *p, struct kfd_ioctl_criu_args *args) criu_restore() argument 2600 criu_unpause(struct file *filep, struct kfd_process *p, struct kfd_ioctl_criu_args *args) criu_unpause() argument 2624 criu_resume(struct file *filep, struct kfd_process *p, struct kfd_ioctl_criu_args *args) criu_resume() argument 2669 criu_process_info(struct file *filep, struct kfd_process *p, struct kfd_ioctl_criu_args *args) criu_process_info() argument 2712 struct kfd_ioctl_criu_args *args = data; kfd_ioctl_criu() local 2873 struct kfd_ioctl_runtime_enable_args *args = data; kfd_ioctl_runtime_enable() local 2891 struct kfd_ioctl_dbg_trap_args *args = data; kfd_ioctl_set_debug_trap() local [all...] |
/third_party/skia/src/gpu/effects/ |
H A D | GrAtlasedShaderHelpers.h | 17 static void append_index_uv_varyings(GrGeometryProcessor::ProgramImpl::EmitArgs& args, in append_index_uv_varyings() argument 29 if (args.fShaderCaps->integerSupport()) { in append_index_uv_varyings() 31 args.fVertBuilder->codeAppendf(R"code( in append_index_uv_varyings() 37 args.fVertBuilder->codeAppendf(R"code( in append_index_uv_varyings() 43 args.fVertBuilder->codeAppendf(R"code( in append_index_uv_varyings() 52 args.fVertBuilder->codeAppendf(R"code( in append_index_uv_varyings() 58 args.fVertBuilder->codeAppendf(R"code( in append_index_uv_varyings() 66 args.fVertBuilder->codeAppendf(R"code( in append_index_uv_varyings() 77 args.fVaryingHandler->addVarying("TextureCoords", uv); in append_index_uv_varyings() 78 args in append_index_uv_varyings() 96 append_multitexture_lookup(GrGeometryProcessor::ProgramImpl::EmitArgs& args, int numTextureSamplers, const GrGLSLVarying& texIdx, const char* coordName, const char* colorName) append_multitexture_lookup() argument [all...] |
/test/xts/acts/commonlibrary/thirdparty/musl/entry/src/main/cpp/ |
H A D | mathndk.cpp | 46 napi_value args[1] = {nullptr};
in LLround() local 47 napi_get_cb_info(env, info, &argc, args, nullptr, nullptr);
in LLround() 49 napi_get_value_double(env, args[0], &value);
in LLround() 58 napi_value args[1] = {nullptr};
in LLroundf() local 59 napi_get_cb_info(env, info, &argc, args, nullptr, nullptr);
in LLroundf() 61 napi_get_value_double(env, args[0], &value);
in LLroundf() 71 napi_value args[1] = {nullptr};
in LLroundl() local 72 napi_get_cb_info(env, info, &argc, args, nullptr, nullptr);
in LLroundl() 74 napi_get_value_double(env, args[0], &value);
in LLroundl() 84 napi_value args[ in LLrint() local 96 napi_value args[1] = {nullptr}; LLrintf() local 108 napi_value args[1] = {nullptr}; LRintf() local 121 napi_value args[1] = {nullptr}; LLrintl() local 134 napi_value args[1] = {nullptr}; Lgamma() local 150 napi_value args[1] = {nullptr}; Lgammaf() local 166 napi_value args[1] = {nullptr}; Lgammal() local 185 napi_value args[1] = {nullptr}; Lgamma_r() local 202 napi_value args[1] = {nullptr}; Lgammaf_r() local 219 napi_value args[1] = {nullptr}; Lgammal_r() local 237 napi_value args[2] = {nullptr}; Ldexp() local 252 napi_value args[2] = {nullptr}; Ldexpl() local 267 napi_value args[2] = {nullptr}; Ldexpf() local 282 napi_value args[1] = {nullptr}; J0() local 295 napi_value args[1] = {nullptr}; J0f() local 308 napi_value args[1] = {nullptr}; J1() local 321 napi_value args[1] = {nullptr}; J1f() local 334 napi_value args[2] = {nullptr}; Jn() local 349 napi_value args[2] = {nullptr}; Jnf() local 364 napi_value args[1] = {nullptr}; ASin() local 384 napi_value args[1] = {nullptr}; ASinF() local 404 napi_value args[1] = {nullptr}; ASinL() local 424 napi_value args[1] = {nullptr}; ASinH() local 439 napi_value args[1] = {nullptr}; ASinHF() local 454 napi_value args[1] = {nullptr}; ASinHL() local 469 napi_value args[1] = {nullptr}; ACos() local 484 napi_value args[1] = {nullptr}; ACosF() local 499 napi_value args[1] = {nullptr}; ACosL() local 514 napi_value args[1] = {nullptr}; ACosH() local 529 napi_value args[1] = {nullptr}; ACosHL() local 544 napi_value args[1] = {nullptr}; ACosHF() local 559 napi_value args[1] = {nullptr}; ATan() local 580 napi_value args[1] = {nullptr}; ATanF() local 601 napi_value args[1] = {nullptr}; ATanL() local 622 napi_value args[2] = {nullptr}; ATan2() local 639 napi_value args[2] = {nullptr}; ATan2F() local 656 napi_value args[2] = {nullptr}; ATan2L() local 673 napi_value args[2] = {nullptr, nullptr}; Fmod() local 688 napi_value args[2] = {nullptr, nullptr}; FMin() local 703 napi_value args[2] = {nullptr, nullptr}; FMax() local 718 napi_value args[3] = {nullptr, nullptr, nullptr}; Fma() local 736 napi_value args[2] = {nullptr, nullptr}; Floor() local 749 napi_value args[2] = {nullptr, nullptr}; FDim() local 764 napi_value args[1] = {nullptr}; FAbs() local 777 napi_value args[1] = {nullptr}; Exp() local 790 napi_value args[2] = {nullptr, nullptr}; CopySignL() local 805 napi_value args[2] = {nullptr, nullptr}; CopySignF() local 820 napi_value args[2] = {nullptr, nullptr}; CopySign() local 835 napi_value args[1] = {nullptr}; Erf() local 848 napi_value args[1] = {nullptr}; Cos() local 861 napi_value args[1] = {nullptr}; Cosh() local 874 napi_value args[1] = {nullptr}; Exp2() local 887 napi_value args[1] = {nullptr}; ExpM1() local 900 napi_value args[2] = {nullptr, nullptr}; FmodF() local 915 napi_value args[2] = {nullptr, nullptr}; FmodL() local 930 napi_value args[2] = {nullptr, nullptr}; FMinF() local 945 napi_value args[2] = {nullptr, nullptr}; FMinL() local 960 napi_value args[2] = {nullptr, nullptr}; FMaxF() local 975 napi_value args[2] = {nullptr, nullptr}; FMaxL() local 990 napi_value args[3] = {nullptr, nullptr, nullptr}; FmaF() local 1008 napi_value args[3] = {nullptr, nullptr, nullptr}; FmaL() local 1026 napi_value args[2] = {nullptr, nullptr}; FloorF() local 1039 napi_value args[2] = {nullptr, nullptr}; FloorL() local 1052 napi_value args[2] = {nullptr, nullptr}; FDimF() local 1067 napi_value args[2] = {nullptr, nullptr}; FDimL() local 1082 napi_value args[1] = {nullptr}; FAbsL() local 1095 napi_value args[1] = {nullptr}; FAbsF() local 1110 napi_value args[1] = {nullptr}; Ceil() local 1123 napi_value args[1] = {nullptr}; CeilF() local 1136 napi_value args[1] = {nullptr}; CeilL() local 1149 napi_value args[1] = {nullptr}; ExpM1f() local 1162 napi_value args[1] = {nullptr}; ExpM1l() local 1175 napi_value args[1] = {nullptr}; ExpF() local 1188 napi_value args[1] = {nullptr}; ExpL() local 1201 napi_value args[1] = {nullptr}; Exp2f() local 1214 napi_value args[1] = {nullptr}; Exp2l() local 1227 napi_value args[1] = {nullptr}; ErfC() local 1240 napi_value args[1] = {nullptr}; ErfCf() local 1253 napi_value args[1] = {nullptr}; ErfCl() local 1266 napi_value args[1] = {nullptr}; ErfF() local 1279 napi_value args[1] = {nullptr}; ErfL() local 1292 napi_value args[1] = {nullptr}; CosF() local 1305 napi_value args[1] = {nullptr}; CosL() local 1318 napi_value args[1] = {nullptr}; CosHf() local 1331 napi_value args[1] = {nullptr}; CosHl() local 1344 napi_value args[1] = {nullptr}; doubleInput() local 1460 napi_value args[1] = {nullptr}; Sin() local 1473 napi_value args[1] = {nullptr}; Sinf() local 1486 napi_value args[1] = {nullptr}; Sinh() local 1499 napi_value args[1] = {nullptr}; Sinhf() local 1512 napi_value args[1] = {nullptr}; Sinhl() local 1525 napi_value args[1] = {nullptr}; Sinl() local 1538 napi_value args[1] = {nullptr}; Sqrt() local 1551 napi_value args[1] = {nullptr}; Sqrtf() local 1564 napi_value args[1] = {nullptr}; Sqrtl() local 1577 napi_value args[2] = {nullptr}; Remainder() local 1594 napi_value args[2] = {nullptr}; Remainderf() local 1611 napi_value args[2] = {nullptr}; Remainderl() local 1627 napi_value args[3] = {nullptr}; Remquo() local 1646 napi_value args[3] = {nullptr}; Remquof() local 1665 napi_value args[3] = {nullptr}; Remquol() local 1684 napi_value args[1] = {nullptr}; Rint() local 1698 napi_value args[1] = {nullptr}; Rintf() local 1712 napi_value args[1] = {nullptr}; Rintl() local 1726 napi_value args[1] = {nullptr}; Round() local 1740 napi_value args[1] = {nullptr}; Roundf() local 1754 napi_value args[1] = {nullptr}; Roundl() local 1768 napi_value args[2] = {nullptr}; Scalbln() local 1784 napi_value args[1] = {nullptr}; Tan() local 1797 napi_value args[1] = {nullptr}; Tanf() local 1810 napi_value args[1] = {nullptr}; Tanh() local 1823 napi_value args[1] = {nullptr}; Tanhf() local 1836 napi_value args[1] = {nullptr}; Tanhl() local 1849 napi_value args[1] = {nullptr}; Tanl() local 1862 napi_value args[1] = {nullptr}; Tgamma() local 1875 napi_value args[1] = {nullptr}; Tgammaf() local 1888 napi_value args[1] = {nullptr}; Tgammal() local 1901 napi_value args[2] = {nullptr}; Scalblnl() local 1916 napi_value args[2] = {nullptr}; Scalbn() local 1931 napi_value args[2] = {nullptr}; Scalblnf() local 1946 napi_value args[2] = {nullptr}; Scalbnf() local 1961 napi_value args[2] = {nullptr}; Scalbnl() local 1976 napi_value args[1] = {nullptr}; Significand() local 1989 napi_value args[1] = {nullptr}; Significandf() local 2001 napi_value args[1] = {nullptr}; ATanH() local 2016 napi_value args[1] = {nullptr}; ATanHF() local 2031 napi_value args[1] = {nullptr}; ATanHL() local 2044 napi_value args[1] = {nullptr}; ModF() local 2057 napi_value args[1] = {nullptr}; ModFf() local 2070 napi_value args[1] = {nullptr}; ModFl() local 2084 napi_value args[1] = {nullptr}; MRand48() local 2103 napi_value args[2] = {nullptr}; Pow() local 2119 napi_value args[2] = {nullptr}; Powf() local 2135 napi_value args[2] = {nullptr}; Sincos() local 2159 napi_value args[2] = {nullptr}; Sincosl() local 2182 napi_value args[2] = {nullptr}; Sincosf() local 2206 napi_value args[2] = {nullptr}; Scalb() local 2222 napi_value args[2] = {nullptr}; Scalbf() local 2238 napi_value args[1] = {nullptr}; Trunc() local 2253 napi_value args[1] = {nullptr}; Truncf() local 2267 napi_value args[1] = {nullptr}; Truncl() local 2281 napi_value args[1] = {nullptr}; Y0() local 2295 napi_value args[1] = {nullptr}; Y0f() local 2309 napi_value args[1] = {nullptr}; Y1() local 2323 napi_value args[1] = {nullptr}; Y1f() local 2337 napi_value args[1] = {nullptr}; Fpclassify() local 2351 napi_value args[1] = {nullptr}; Fpclassifyf() local 2365 napi_value args[1] = {nullptr}; Fpclassifyl() local 2379 napi_value args[1] = {nullptr}; Signbit() local 2393 napi_value args[1] = {nullptr}; Signbitf() local 2407 napi_value args[1] = {nullptr}; Signbitl() local 2421 napi_value args[1] = {nullptr}; CBrt() local 2436 napi_value args[1] = {nullptr}; CBrtL() local 2451 napi_value args[1] = {nullptr}; CBrtF() local 2466 napi_value args[1] = {nullptr}; Frexp() local 2482 napi_value args[1] = {nullptr}; Frexpf() local 2498 napi_value args[1] = {nullptr}; Frexpl() local 2514 napi_value args[2] = {nullptr}; Powl() local 2530 napi_value args[2] = {nullptr}; NextToward() local 2546 napi_value args[2] = {nullptr}; NextTowardF() local 2562 napi_value args[2] = {nullptr}; NextTowardL() local 2578 napi_value args[2] = {nullptr}; Nextafter() local 2594 napi_value args[2] = {nullptr}; Nextafterf() local 2610 napi_value args[2] = {nullptr}; Nextafterl() local 2626 napi_value args[1] = {nullptr}; Nearbyint() local 2639 napi_value args[1] = {nullptr}; Nearbyintf() local 2652 napi_value args[1] = {nullptr}; Nearbyintl() local 2665 napi_value args[1] = {nullptr}; Nan() local 2681 napi_value args[1] = {nullptr}; Nanf() local 2697 napi_value args[1] = {nullptr}; Nanl() local 2712 napi_value args[1] = {nullptr}; LRint() local 2725 napi_value args[1] = {nullptr}; LRintl() local 2739 napi_value args[1] = {nullptr}; LRound() local 2753 napi_value args[1] = {nullptr}; LRoundf() local 2767 napi_value args[1] = {nullptr}; LRoundl() local 2781 napi_value args[2] = {nullptr}; HYpot() local 2798 napi_value args[2] = {nullptr}; HYpotf() local 2815 napi_value args[2] = {nullptr}; HYpotl() local 2830 napi_value args[1] = {nullptr}; ILogb() local 2842 napi_value args[1] = {nullptr}; ILogbf() local 2855 napi_value args[1] = {nullptr}; ILogbl() local 2870 napi_value args[1] = {nullptr}; SignGam() local [all...] |
/kernel/linux/linux-5.10/drivers/misc/habanalabs/common/ |
H A D | habanalabs_ioctl.c | 27 static int device_status_info(struct hl_device *hdev, struct hl_info_args *args) in device_status_info() argument 30 u32 size = args->return_size; in device_status_info() 31 void __user *out = (void __user *) (uintptr_t) args->return_pointer; in device_status_info() 42 static int hw_ip_info(struct hl_device *hdev, struct hl_info_args *args) in hw_ip_info() argument 45 u32 size = args->return_size; in hw_ip_info() 46 void __user *out = (void __user *) (uintptr_t) args->return_pointer; in hw_ip_info() 87 struct hl_info_args *args) in hw_events_info() 89 u32 size, max_size = args->return_size; in hw_events_info() 90 void __user *out = (void __user *) (uintptr_t) args->return_pointer; in hw_events_info() 101 static int dram_usage_info(struct hl_fpriv *hpriv, struct hl_info_args *args) in dram_usage_info() argument 86 hw_events_info(struct hl_device *hdev, bool aggregate, struct hl_info_args *args) hw_events_info() argument 125 hw_idle(struct hl_device *hdev, struct hl_info_args *args) hw_idle() argument 143 debug_coresight(struct hl_device *hdev, struct hl_debug_args *args) debug_coresight() argument 208 device_utilization(struct hl_device *hdev, struct hl_info_args *args) device_utilization() argument 231 get_clk_rate(struct hl_device *hdev, struct hl_info_args *args) get_clk_rate() argument 250 get_reset_count(struct hl_device *hdev, struct hl_info_args *args) get_reset_count() argument 266 time_sync_info(struct hl_device *hdev, struct hl_info_args *args) time_sync_info() argument 282 pci_counters_info(struct hl_fpriv *hpriv, struct hl_info_args *args) pci_counters_info() argument 301 clk_throttle_info(struct hl_fpriv *hpriv, struct hl_info_args *args) clk_throttle_info() argument 317 cs_counters_info(struct hl_fpriv *hpriv, struct hl_info_args *args) cs_counters_info() argument 338 sync_manager_info(struct hl_fpriv *hpriv, struct hl_info_args *args) sync_manager_info() argument 362 total_energy_consumption_info(struct hl_fpriv *hpriv, struct hl_info_args *args) total_energy_consumption_info() argument 386 struct hl_info_args *args = data; _hl_info_ioctl() local 479 struct hl_debug_args *args = data; hl_debug_ioctl() local [all...] |
/kernel/linux/linux-5.10/tools/testing/selftests/futex/functional/ |
H A D | futex_requeue_pi.c | 110 struct thread_arg *args = (struct thread_arg *)arg; in waiterfn() local 113 info("Waiter %ld: running\n", args->id); in waiterfn() 117 usleep(1000 * (long)args->id); in waiterfn() 123 args->ret = futex_wait_requeue_pi(&f1, old_val, &f2, args->timeout, in waiterfn() 126 info("waiter %ld woke with %d %s\n", args->id, args->ret, in waiterfn() 127 args->ret < 0 ? strerror(errno) : ""); in waiterfn() 129 if (args->ret < 0) { in waiterfn() 130 if (args in waiterfn() 146 struct thread_arg *args = (struct thread_arg *)arg; broadcast_wakerfn() local 194 struct thread_arg *args = (struct thread_arg *)arg; signal_wakerfn() local 259 struct thread_arg *args = (struct thread_arg *)arg; third_party_blocker() local 285 struct thread_arg args[THREAD_MAX]; unit_test() local [all...] |
/kernel/linux/linux-6.6/tools/testing/selftests/futex/functional/ |
H A D | futex_requeue_pi.c | 110 struct thread_arg *args = (struct thread_arg *)arg; in waiterfn() local 113 info("Waiter %ld: running\n", args->id); in waiterfn() 117 usleep(1000 * (long)args->id); in waiterfn() 123 args->ret = futex_wait_requeue_pi(&f1, old_val, &f2, args->timeout, in waiterfn() 126 info("waiter %ld woke with %d %s\n", args->id, args->ret, in waiterfn() 127 args->ret < 0 ? strerror(errno) : ""); in waiterfn() 129 if (args->ret < 0) { in waiterfn() 130 if (args in waiterfn() 146 struct thread_arg *args = (struct thread_arg *)arg; broadcast_wakerfn() local 194 struct thread_arg *args = (struct thread_arg *)arg; signal_wakerfn() local 259 struct thread_arg *args = (struct thread_arg *)arg; third_party_blocker() local 285 struct thread_arg args[THREAD_MAX]; unit_test() local [all...] |