Home
last modified time | relevance | path

Searched refs:target (Results 4626 - 4650 of 7038) sorted by relevance

1...<<181182183184185186187188189190>>...282

/kernel/linux/linux-6.6/drivers/net/wireless/ath/ath6kl/
H A Dsdio.c28 #include "target.h"
734 struct htc_target *target = ar->htc_target; in ath6kl_sdio_enable_scatter() local
762 target->max_scat_entries = MAX_SCATTER_ENTRIES_PER_REQ; in ath6kl_sdio_enable_scatter()
763 target->max_xfer_szper_scatreq = in ath6kl_sdio_enable_scatter()
786 target->max_scat_entries = ATH6KL_SCATTER_ENTRIES_PER_REQ; in ath6kl_sdio_enable_scatter()
787 target->max_xfer_szper_scatreq = in ath6kl_sdio_enable_scatter()
/kernel/linux/linux-6.6/drivers/perf/
H A Darm-cci.c936 * 7) Restore the event in the target counter
1442 int target; in cci_pmu_offline_cpu() local
1447 target = cpumask_any_but(cpu_online_mask, cpu); in cci_pmu_offline_cpu()
1448 if (target >= nr_cpu_ids) in cci_pmu_offline_cpu()
1451 perf_pmu_migrate_context(&g_cci_pmu->pmu, cpu, target); in cci_pmu_offline_cpu()
1452 g_cci_pmu->cpu = target; in cci_pmu_offline_cpu()
/kernel/linux/linux-6.6/drivers/input/misc/
H A Diqs269a.c425 unsigned int ch_num, unsigned int target) in iqs269_ati_target_set()
433 if (target > IQS269_CHx_ENG_B_ATI_TARGET_MAX) in iqs269_ati_target_set()
441 engine_b |= target / 32; in iqs269_ati_target_set()
452 unsigned int ch_num, unsigned int *target) in iqs269_ati_target_get()
464 *target = (engine_b & IQS269_CHx_ENG_B_ATI_TARGET_MASK) * 32; in iqs269_ati_target_get()
648 if (!fwnode_property_read_u32(ch_node, "azoteq,ati-target", &val)) { in iqs269_parse_chan()
652 "Invalid channel %u ATI target: %u\n", reg, in iqs269_parse_chan()
424 iqs269_ati_target_set(struct iqs269_private *iqs269, unsigned int ch_num, unsigned int target) iqs269_ati_target_set() argument
451 iqs269_ati_target_get(struct iqs269_private *iqs269, unsigned int ch_num, unsigned int *target) iqs269_ati_target_get() argument
/kernel/linux/linux-6.6/tools/testing/selftests/bpf/
H A DMakefile42 ifneq ($(shell $(CLANG) --target=bpf -mcpu=help 2>&1 | grep 'v4'),)
112 # $3 - target (assumed to be file); only file name will be emitted;
350 # '--target=bpf'. This fixes "missing" files on some architectures/distros,
362 # Determine target endianness.
368 CLANG_TARGET_ARCH = --target=$(notdir $(CROSS_COMPILE:%-=%))
391 $(Q)$(CLANG) $3 -O2 --target=bpf -c $1 -mcpu=v3 -o $2
396 $(Q)$(CLANG) $3 -O2 --target=bpf -c $1 -mcpu=v2 -o $2
401 $(Q)$(CLANG) $3 -O2 --target=bpf -c $1 -mcpu=v4 -o $2
/kernel/liteos_a/arch/arm/arm/src/
H A Dlos_exc.c1037 UINT32 ret, target; in OsCheckAllCpuStatus() local
1050 target = (UINT32)(OS_MP_CPU_ALL & ~CPUID_TO_AFFI_MASK(currCpuid)); in OsCheckAllCpuStatus()
1051 HalIrqSendIpi(target, LOS_MP_IPI_HALT); in OsCheckAllCpuStatus()
1071 target = (UINT32)(OS_MP_CPU_ALL & ~CPUID_TO_AFFI_MASK(currCpuid)); in OsCheckAllCpuStatus()
1072 HalIrqSendIpi(target, LOS_MP_IPI_HALT); in OsCheckAllCpuStatus()
/kernel/linux/linux-6.6/kernel/trace/
H A Dtrace_uprobe.c1206 if (event->hw.target->mm == mm) in __uprobe_perf_filter()
1217 return __uprobe_perf_filter(filter, event->hw.target->mm); in trace_uprobe_filter_event()
1226 if (event->hw.target) { in trace_uprobe_filter_remove()
1229 (event->hw.target->flags & PF_EXITING) || in trace_uprobe_filter_remove()
1240 /* This returns true if the filter always covers target mm */
1247 if (event->hw.target) { in trace_uprobe_filter_add()
/third_party/jinja2/
H A Denvironment.py817 target: t.Union[str, os.PathLike],
825 and stores them in `target`. If `zip` is `None`, instead of in a
831 Each template returned will be compiled to the target folder or
857 with open(os.path.join(target, filename), "wb") as f:
864 target, "w", dict(deflated=ZIP_DEFLATED, stored=ZIP_STORED)[zip]
866 log_function(f"Compiling into Zip archive {target!r}")
868 if not os.path.isdir(target):
869 os.makedirs(target)
870 log_function(f"Compiling into folder {target!r}")
H A Dfilters.py724 target: t.Optional[str] = None,
744 :param target: Add the ``target`` attribute to links.
763 The ``target`` parameter was added.
774 if target is None:
775 target = policies["urlize.target"]
788 target=target,
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_constants.c55 if (images[shader][i].desc.resource->target == PIPE_BUFFER) { in svga_get_image_size_constant()
62 if (images[shader][i].desc.resource->target == PIPE_TEXTURE_1D_ARRAY) in svga_get_image_size_constant()
67 if (images[shader][i].desc.resource->target == PIPE_TEXTURE_2D_ARRAY) in svga_get_image_size_constant()
69 else if (images[shader][i].desc.resource->target == PIPE_TEXTURE_CUBE_ARRAY) in svga_get_image_size_constant()
133 if (tex->target == PIPE_BUFFER) { in svga_get_extra_constants_common()
/third_party/mesa3d/src/imagination/vulkan/
H A Dpvr_job_context.c451 enum pvr_ctx_sr_program_target target, in pvr_ctx_sr_programs_setup()
499 if (target == PVR_CTX_SR_COMPUTE_TARGET && PVR_HAS_QUIRK(dev_info, 62269)) { in pvr_ctx_sr_programs_setup()
529 switch (target) { in pvr_ctx_sr_programs_setup()
579 unreachable("Invalid target."); in pvr_ctx_sr_programs_setup()
1011 state.target = true; in pvr_compute_ctx_ws_static_state_init()
1046 state.target = !PVR_HAS_FEATURE(dev_info, compute_morton_capable); in pvr_compute_ctx_ws_static_state_init()
450 pvr_ctx_sr_programs_setup(struct pvr_device *device, enum pvr_ctx_sr_program_target target, struct rogue_sr_programs *sr_programs) pvr_ctx_sr_programs_setup() argument
/third_party/node/lib/internal/debugger/
H A Dinspect_repl.js351 function copyOwnProperties(target, source) {
356 ObjectDefineProperty(target, prop, desc);
360 function aliasProperties(target, mapping) {
362 const desc = ReflectGetOwnPropertyDescriptor(target, key);
363 ObjectDefineProperty(target, mapping[key], desc);
/third_party/node/src/
H A Dmodule_wrap.cc753 void ModuleWrap::Initialize(Local<Object> target, in Initialize() argument
779 SetConstructorFunction(context, target, "ModuleWrap", tpl); in Initialize()
782 target, in Initialize()
786 target, in Initialize()
791 target->Set(context, \ in Initialize()
H A Dnode_http_parser.cc1194 void InitializeHttpParser(Local<Object> target, in InitializeHttpParser() argument
1202 realm->AddBindingData<BindingData>(context, target); in InitializeHttpParser()
1244 target->Set(env->context(), in InitializeHttpParser()
1263 SetConstructorFunction(context, target, "HTTPParser", t); in InitializeHttpParser()
1273 SetConstructorFunction(context, target, "ConnectionsList", c); in InitializeHttpParser()
/third_party/mesa3d/src/gallium/drivers/d3d12/
H A Dd3d12_screen.cpp127 * render-target. From the D3D11 functional spec (which also defines in d3d12_get_param()
536 enum pipe_texture_target target, in d3d12_is_format_supported()
546 if (target == PIPE_BUFFER) { in d3d12_is_format_supported()
586 switch (target) { in d3d12_is_format_supported()
607 unreachable("Unknown target"); in d3d12_is_format_supported()
619 if (target == PIPE_BUFFER) { in d3d12_is_format_supported()
649 fmt_info_sv.Format = d3d12_get_resource_srv_format(format, target); in d3d12_is_format_supported()
534 d3d12_is_format_supported(struct pipe_screen *pscreen, enum pipe_format format, enum pipe_texture_target target, unsigned sample_count, unsigned storage_sample_count, unsigned bind) d3d12_is_format_supported() argument
/third_party/pulseaudio/src/daemon/
H A Dohos_pa_main.c677 pa_log_target target = { .type = PA_LOG_STDERR, .file = NULL }; in real_main() local
678 pa_log_set_target(&target); in real_main()
1002 pa_log_target target = { .type = PA_LOG_JOURNAL, .file = NULL }; in real_main() local
1004 pa_log_target target = { .type = PA_LOG_SYSLOG, .file = NULL }; in real_main()
1006 pa_log_set_target(&target); in real_main()
/third_party/python/Lib/test/test_capi/
H A Dtest_misc.py965 threads = [threading.Thread(target=self.pendingcalls_thread,
1086 def target(): function
1099 target()
1100 t = threading.Thread(target=target)
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/
H A DEGLIOSurfaceClientBufferTest.cpp139 EGLint target = 0; in getTextureTarget() local
140 eglGetConfigAttrib(mDisplay, mConfig, EGL_BIND_TO_TEXTURE_TARGET_ANGLE, &target); in getTextureTarget()
141 return target; in getTextureTarget()
1049 // EGL_TEXTURE_FORMAT must be equal to the config's texture target in TEST_P()
1051 EGLint target = getTextureTarget(); in TEST_P() local
1053 switch (target) in TEST_P()
/third_party/python/Python/
H A Dast_opt.c837 CALL(astfold_expr, expr_ty, node_->target); in astfold_comprehension()
909 CALL(astfold_expr, expr_ty, node_->v.AugAssign.target); in astfold_stmt()
913 CALL(astfold_expr, expr_ty, node_->v.AnnAssign.target); in astfold_stmt()
920 CALL(astfold_expr, expr_ty, node_->v.For.target); in astfold_stmt()
928 CALL(astfold_expr, expr_ty, node_->v.AsyncFor.target); in astfold_stmt()
/third_party/vk-gl-cts/modules/glshared/
H A DglsLifetimeTests.cpp660 const RenderTarget& target = ctx.getRenderTarget(); in randomViewport() local
661 const GLint width = de::min(target.getWidth(), maxWidth); in randomViewport()
662 const GLint xOff = rnd.getInt(0, target.getWidth() - width); in randomViewport()
663 const GLint height = de::min(target.getHeight(), maxHeight); in randomViewport()
664 const GLint yOff = rnd.getInt(0, target.getHeight() - height); in randomViewport()
/third_party/vk-gl-cts/scripts/android/
H A Dbuild_apk.py532 "-target", "1.7",
640 "--target-sdk-version", str(config.javaApi),
894 def getPackageAndLibrariesForTarget (target):
898 if target == 'deqp':
900 elif target == 'openglcts':
903 raise Exception("Uknown target '%s'" % target)
947 help="Android API level to target in native code")
952 help="Android API level to target in Java code")
957 help="Android Tools level to target (
[all...]
/third_party/node/deps/v8/src/codegen/mips64/
H A Dassembler-mips64.h245 // Puts a labels target address at the given position.
249 // Read/Modify the code target address in the branch/call instruction at pc.
253 Address pc, Address target, in set_target_address_at()
255 set_target_value_at(pc, target, icache_flush_mode); in set_target_address_at()
263 Address pc, Address constant_pool, Address target, in set_target_address_at()
265 set_target_address_at(pc, target, icache_flush_mode); in set_target_address_at()
269 Address pc, uint64_t target,
278 Address instruction_payload, Code code, Address target);
280 // Get the size of the special target encoded at 'instruction_payload'.
286 Address pc, Address target,
252 set_target_address_at( Address pc, Address target, ICacheFlushMode icache_flush_mode = FLUSH_ICACHE_IF_NEEDED) set_target_address_at() argument
262 set_target_address_at( Address pc, Address constant_pool, Address target, ICacheFlushMode icache_flush_mode = FLUSH_ICACHE_IF_NEEDED) set_target_address_at() argument
[all...]
/third_party/node/deps/v8/src/profiler/
H A Dheap-snapshot-generator.cc61 // Checks that `host` retains `target`, according to the marking visitor. This
64 void CheckStrongReference(HeapObject host, HeapObject target) { in CheckStrongReference() argument
68 checked_objects_.insert(target); in CheckStrongReference()
70 // Check whether there is a direct strong reference from host to target. in CheckStrongReference()
71 if (reference_summary_.strong_references().find(target) != in CheckStrongReference()
76 // There is no direct reference from host to target, but sometimes heap in CheckStrongReference()
84 if (indirect.find(target) != indirect.end()) { in CheckStrongReference()
92 // Checks that `host` has a weak reference to `target`, according to the
94 void CheckWeakReference(HeapObject host, HeapObject target) { in CheckWeakReference() argument
98 checked_objects_.insert(target); in CheckWeakReference()
107 MarkReferenceCheckedWithoutChecking(HeapObject host, HeapObject target) MarkReferenceCheckedWithoutChecking() argument
1010 Code target = Code::GetCodeFromTargetAddress(rinfo->target_address()); global() variable
[all...]
/kernel/linux/linux-6.6/drivers/scsi/
H A Dipr.c280 "Logical unit not accessible, target port in unavailable state"},
1133 res->target = gscsi_res->target; in ipr_init_res_entry()
1138 res->target = find_first_zero_bit(ioa_cfg->target_ids, in ipr_init_res_entry()
1140 set_bit(res->target, ioa_cfg->target_ids); in ipr_init_res_entry()
1144 res->target = 0; in ipr_init_res_entry()
1147 res->target = find_first_zero_bit(ioa_cfg->array_ids, in ipr_init_res_entry()
1149 set_bit(res->target, ioa_cfg->array_ids); in ipr_init_res_entry()
1152 res->target = find_first_zero_bit(ioa_cfg->vset_ids, in ipr_init_res_entry()
1154 set_bit(res->target, ioa_cf in ipr_init_res_entry()
3242 u8 bus, target, lun; ipr_add_remove_thread() local
[all...]
/third_party/node/deps/v8/src/interpreter/
H A Dbytecode-generator.cc210 Statement* statement; // The target statement for the command or {nullptr}.
1414 // Build assignment to {new.target} variable if it is used. in GenerateBytecodeBody()
1491 // the incoming new target object. in AllocateTopLevelRegisters()
1775 execution_control()->Continue(stmt->target()); in VisitContinueStatement()
1781 execution_control()->Break(stmt->target()); in VisitBreakStatement()
2355 // Assign accumulator value to the 'each' target. in VisitForInStatement()
2446 // Assign to the 'each' target. in VisitForOfStatement()
4086 // Get the default value of a destructuring target. Will mutate the
4087 // destructuring target expression if there is a default value.
4095 Expression** target) { in GetDestructuringDefaultValue()
4094 GetDestructuringDefaultValue( Expression** target) GetDestructuringDefaultValue() argument
4376 Expression* target = pattern_property->value(); BuildDestructuringObjectAssignment() local
[all...]
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Djunit-4.10.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...

Completed in 56 milliseconds

1...<<181182183184185186187188189190>>...282