Home
last modified time | relevance | path

Searched full:sme (Results 1 – 25 of 97) sorted by relevance

1234

/freebsd-src/contrib/wpa/wpa_supplicant/
H A Dsme.c2 * wpa_supplicant - SME
33 #include "sme.h"
67 if (!index_within_array(groups, wpa_s->sme.sae_group_index)) in sme_set_sae_group()
71 int group = groups[wpa_s->sme.sae_group_index]; in sme_set_sae_group()
74 if (!int_array_includes(wpa_s->sme.sae_rejected_groups, in sme_set_sae_group()
76 sae_set_group(&wpa_s->sme.sae, group) == 0) { in sme_set_sae_group()
77 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected SAE group %d", in sme_set_sae_group()
78 wpa_s->sme.sae.group); in sme_set_sae_group()
79 wpa_s->sme.sae.akmp = external ? in sme_set_sae_group()
80 wpa_s->sme in sme_set_sae_group()
[all...]
H A Devents.c40 #include "sme.h"
433 wpa_s->sme.bss_max_idle_period = 0;
2918 if (wpa_s->sme.bss_max_idle_period) { in wpa_supplicant_event_associnfo()
2920 msec = wpa_s->sme.bss_max_idle_period * 1024; /* times 1000 */ in wpa_supplicant_event_associnfo()
2944 wpa_s->sme.bss_max_idle_period = in wpa_supplicant_event_associnfo()
2947 "TU)%s", wpa_s->sme.bss_max_idle_period, in wpa_supplicant_event_associnfo()
2950 if (wpa_s->sme.bss_max_idle_period == 0) in wpa_supplicant_event_associnfo()
2951 wpa_s->sme.bss_max_idle_period = 1; in wpa_supplicant_event_associnfo()
2955 msec = wpa_s->sme.bss_max_idle_period * 1024; in wpa_supplicant_event_associnfo()
2963 wpa_s->sme in wpa_supplicant_event_associnfo()
[all...]
H A Dsme.h2 * wpa_supplicant - SME
/freebsd-src/contrib/llvm-project/llvm/include/llvm/TargetParser/
H A DAArch64TargetParser.h
/freebsd-src/sys/contrib/openzfs/module/zfs/
H A Dspa_checkpoint.c207 spa_checkpoint_discard_sync_callback(space_map_entry_t *sme, void *arg) in spa_checkpoint_discard_sync_callback() argument
211 metaslab_t *ms = vd->vdev_ms[sme->sme_offset >> vd->vdev_ms_shift]; in spa_checkpoint_discard_sync_callback()
212 uint64_t end = sme->sme_offset + sme->sme_run; in spa_checkpoint_discard_sync_callback()
227 VERIFY3U(sme->sme_type, ==, SM_FREE); in spa_checkpoint_discard_sync_callback()
228 VERIFY3U(sme->sme_offset, >=, ms->ms_start); in spa_checkpoint_discard_sync_callback()
240 range_tree_add(ms->ms_freeing, sme->sme_offset, sme->sme_run); in spa_checkpoint_discard_sync_callback()
244 sme->sme_run); in spa_checkpoint_discard_sync_callback()
245 ASSERT3U(vd->vdev_stat.vs_checkpoint_space, >=, sme in spa_checkpoint_discard_sync_callback()
[all...]
H A Dspace_map.c178 space_map_entry_t sme = { in space_map_iterate() local
186 error = callback(&sme, arg); in space_map_iterate()
367 space_map_entry_t sme = { in space_map_incremental_destroy() local
373 error = callback(&sme, arg); in space_map_incremental_destroy()
401 space_map_load_callback(space_map_entry_t *sme, void *arg) in space_map_load_callback() argument
404 if (sme->sme_type == smla->smla_type) { in space_map_load_callback()
405 VERIFY3U(range_tree_space(smla->smla_rt) + sme->sme_run, <=, in space_map_load_callback()
407 range_tree_add(smla->smla_rt, sme->sme_offset, sme->sme_run); in space_map_load_callback()
409 range_tree_remove(smla->smla_rt, sme->sme_offset, sme->sme_run); in space_map_load_callback()
H A Dvdev_indirect_mapping.c544 load_obsolete_sm_callback(space_map_entry_t *sme, void *arg) in load_obsolete_sm_callback() argument
547 ASSERT3S(sme->sme_type, ==, SM_ALLOC); in load_obsolete_sm_callback()
550 sme->sme_offset, sme->sme_run, losma->losma_counts); in load_obsolete_sm_callback()
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
H A Darm_sme.td1 //===--- arm_sme.td - ARM SME compiler interface ------------------------===//
9 // This file defines the TableGen definitions from which the ARM SME header
24 let SMETargetGuard = "sme" in {
49 let SMETargetGuard = "sme" in {
63 let SMETargetGuard = "sme" in {
88 let SMETargetGuard = "sme" in {
102 let SMETargetGuard = "sme" in {
123 let SMETargetGuard = "sme" in {
141 // SME - Zero
143 let SMETargetGuard = "sme" i
[all...]
H A DBuiltinsSME.def1 //===--- BuiltinsSME.def - SME Builtin function database --------*- C++ -*-===//
9 // This file defines the SME-specific builtin function database. Users of
H A Darm_sve_sme_incl.td1 //===--- arm_sve_sme_incl.td - ARM SVE/SME compiler interface -------------===//
10 // SVE and SME intrinsics.
228 def VerifyRuntimeMode : FlagType<0x40000000000>; // Use for intrinsics that are common between SVE and SME.
278 string SMETargetGuard = "sme";
H A DTargetBuiltins.h57 namespace SME {
75 LastSMEBuiltin = SME::FirstTSBuiltin - 1,
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AArch64/Utils/
H A DAArch64SMEAttributes.h1 //===-- AArch64SMEAttributes.h - Helper for interpreting SME attributes -*-===//
20 /// SMEAttrs is a utility class to parse the SME ACLE attributes on functions.
38 // Enum with bitmasks for each individual SME feature.
44 SME_ABI_Routine = 1 << 3, // Used for SME ABI routines to avoid lazy saves
H A DAArch64SMEAttributes.cpp1 //===-- AArch64SMEAttributes.cpp - Helper for interpreting SME attributes -===//
/freebsd-src/contrib/llvm-project/compiler-rt/lib/builtins/aarch64/
H A Dsme-abi.S5 // This patch implements the support routines for the SME ABI,
7 // https://github.com/ARM-software/abi-aa/blob/main/aapcs64/aapcs64.rst#sme-support-routines
26 .arch armv9-a+sme
156 // If the current thread does not have access to SME, the subroutine does
H A Dsme-abi-init.c8 // We have multiple ways to check that the function has SME, depending on our
/freebsd-src/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DSMEABIPass.cpp1 //===--------- SMEABI - SME ABI-------------------------------------------===//
9 // This pass implements parts of the the SME ABI, such as:
32 #define DEBUG_TYPE "aarch64-sme-abi"
50 static const char *name = "SME ABI Pass"; in INITIALIZE_PASS_BEGIN()
H A DAArch64.td
H A DAArch64RegisterInfo.cpp112 "supported to improve calls to SME ACLE save/restore/disable-za " in getCalleeSavedRegs()
119 "only supported to improve calls to SME ACLE __arm_get_current_vg " in getCalleeSavedRegs()
126 "only supported to improve calls to SME ACLE __arm_sme_state " in getCalleeSavedRegs()
167 "only supported to improve calls to SME ACLE save/restore/disable-za " in getDarwinCalleeSavedRegs()
174 "only supported to improve calls to SME ACLE __arm_get_current_vg " in getDarwinCalleeSavedRegs()
181 "only supported to improve calls to SME ACLE __arm_sme_state " in getDarwinCalleeSavedRegs()
466 // SME tiles are not allocatable. in getReservedRegs()
/freebsd-src/contrib/llvm-project/clang/utils/TableGen/
H A DTableGen.cpp249 clEnumValN(GenArmSmeHeader, "gen-arm-sme-header",
251 clEnumValN(GenArmSmeBuiltins, "gen-arm-sme-builtins",
253 clEnumValN(GenArmSmeBuiltinCG, "gen-arm-sme-builtin-codegen",
255 clEnumValN(GenArmSmeRangeChecks, "gen-arm-sme-sema-rangechecks",
257 clEnumValN(GenArmSmeStreamingAttrs, "gen-arm-sme-streaming-attrs",
259 clEnumValN(GenArmSmeBuiltinZAState, "gen-arm-sme-builtin-za-state",
H A DSveEmitter.cpp47 enum class ACLEKind { SVE, SME }; enumerator
397 /// Emit all the SME __builtin prototypes and code needed by Sema.
1095 case ACLEKind::SME: in encodeTypeFlags()
1478 << FromV.builtin_str() << "\", \"n\", \"sme|sve\")\n"; in createCodeGenMap()
1583 OS << "/*===---- arm_sme.h - ARM SME intrinsics " in createSMEHeader()
1636 OS << "__ai __attribute__((target(\"sme\"))) void svundef_za(void) " in createSMEBuiltins()
1640 createCoreHeaderIntrinsics(OS, *this, ACLEKind::SME); in createSMEBuiltins()
1735 OS << "case SME::BI__builtin_sme_" << Def->getMangledName() << ":\n"; in createBuiltinZAState()
1781 OS << "case SME::BI__builtin_sme_" << Name << ":\n"; in createStreamingAttrs()
1795 case ACLEKind::SME in createStreamingAttrs()
[all...]
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterInfoPOSIX_arm64.cpp83 // Only present when SME is present
215 "Scalable Matrix Extension Registers", "sme", k_num_sme_register, nullptr};
257 // The TLS set always contains tpidr but only has tpidr2 when SME is in RegisterInfoPOSIX_arm64()
403 // This must be added now, rather than when vg is defined because SME is a in AddRegSetSME()
512 // ZT0 is part of the SME register set only if SME2 is present. in IsSMERegZT()
H A DRegisterInfoPOSIX_arm64.h163 // In normal operation this is const. Only when SVE or SME registers change
/freebsd-src/sys/contrib/openzfs/cmd/zdb/
H A Dzdb.c333 typedef int (*zdb_log_sm_cb_t)(spa_t *spa, space_map_entry_t *sme, uint64_t txg,
344 iterate_through_spacemap_logs_cb(space_map_entry_t *sme, void *arg) in iterate_through_spacemap_logs_cb()
347 return (uic->uic_cb(uic->uic_spa, sme, uic->uic_txg, uic->uic_arg));
412 metaslab_spacemap_validation_cb(space_map_entry_t *sme, void *arg) in metaslab_spacemap_validation_cb()
415 uint64_t offset = sme->sme_offset; in metaslab_spacemap_validation_cb()
416 uint64_t size = sme->sme_run; in metaslab_spacemap_validation_cb()
417 uint64_t txg = sme->sme_txg; in metaslab_spacemap_validation_cb()
419 if (sme->sme_type == SM_ALLOC) { in metaslab_spacemap_validation_cb()
447 if (sme->sme_type != SM_ALLOC) { in metaslab_spacemap_validation_cb()
458 spacemap_check_sm_log_cb(spa_t *spa, space_map_entry_t *sme, in spacemap_check_sm_log_cb()
342 iterate_through_spacemap_logs_cb(space_map_entry_t * sme,void * arg) iterate_through_spacemap_logs_cb() argument
410 metaslab_spacemap_validation_cb(space_map_entry_t * sme,void * arg) metaslab_spacemap_validation_cb() argument
456 spacemap_check_sm_log_cb(spa_t * spa,space_map_entry_t * sme,uint64_t txg,void * arg) spacemap_check_sm_log_cb() argument
5930 load_unflushed_svr_segs_cb(spa_t * spa,space_map_entry_t * sme,uint64_t txg,void * arg) load_unflushed_svr_segs_cb() argument
6144 checkpoint_sm_exclude_entry_cb(space_map_entry_t * sme,void * arg) checkpoint_sm_exclude_entry_cb() argument
6246 count_unflushed_space_cb(spa_t * spa,space_map_entry_t * sme,uint64_t txg,void * arg) count_unflushed_space_cb() argument
6285 load_unflushed_cb(spa_t * spa,space_map_entry_t * sme,uint64_t txg,void * arg) load_unflushed_cb() argument
7505 verify_checkpoint_sm_entry_cb(space_map_entry_t * sme,void * arg) verify_checkpoint_sm_entry_cb() argument
8063 log_spacemap_obsolete_stats_cb(spa_t * spa,space_map_entry_t * sme,uint64_t txg,void * arg) log_spacemap_obsolete_stats_cb() argument
[all...]
/freebsd-src/contrib/llvm-project/clang/lib/Basic/Targets/
H A DAArch64.cpp763 .Case("sme", HasSME) in handleTargetFeatures()
766 .Case("sme-f64f64", HasSMEF64F64) in handleTargetFeatures()
767 .Case("sme-i16i64", HasSMEI16I64) in handleTargetFeatures()
768 .Case("sme-fa64", HasSMEFA64) in handleTargetFeatures()
769 .Case("sme-f16f16", HasSMEF16F16) in handleTargetFeatures()
770 .Case("sme-b16b16", HasSMEB16B16) in handleTargetFeatures()
892 if (Feature == "+sme") { in handleTargetFeatures()
910 if (Feature == "+sme-f64f64") { in handleTargetFeatures()
916 if (Feature == "+sme-i16i64") { in handleTargetFeatures()
922 if (Feature == "+sme in handleTargetFeatures()
[all...]
/freebsd-src/share/misc/
H A Diso639428 se sme sme Northern Sami

1234