| /freebsd-14.2/contrib/arm-optimized-routines/pl/math/ |
| H A D | v_asin_3u.c | 33 #define Small (0x3e50000000000000) /* 2^-12. */ macro 73 = vcgtq_u64 (vsubq_u64 (vreinterpretq_u64_f64 (ax), v_u64 (Small)), in V_NAME_D1() 74 v_u64 (One - Small)); in V_NAME_D1() 108 PL_TEST_INTERVAL (V_NAME_D1 (asin), 0, Small, 5000) 109 PL_TEST_INTERVAL (V_NAME_D1 (asin), Small, 0.5, 50000)
|
| H A D | v_acos_2u.c | 34 #define Small (0x3e50000000000000) /* 2^-53. */ macro 76 = vcgtq_u64 (vsubq_u64 (vreinterpretq_u64_f64 (ax), v_u64 (Small)), in V_NAME_D1() 77 v_u64 (Oneu - Small)); in V_NAME_D1() 117 PL_TEST_INTERVAL (V_NAME_D1 (acos), 0, Small, 5000) 118 PL_TEST_INTERVAL (V_NAME_D1 (acos), Small, 0.5, 50000)
|
| H A D | acosf_1u4.c | 18 #define Small (0x32800000) /* 2^-26. */ macro 94 PL_TEST_INTERVAL (acosf, 0, Small, 5000) 95 PL_TEST_INTERVAL (acosf, Small, 0.5, 50000)
|
| H A D | asinf_2u5.c | 17 #define Small (0x39800000) /* 2^-12. */ macro 95 PL_TEST_INTERVAL (asinf, 0, Small, 5000) 96 PL_TEST_INTERVAL (asinf, Small, 0.5, 50000)
|
| H A D | asin_3u.c | 17 #define Small (0x3e50000000000000) /* 2^-26. */ macro 101 PL_TEST_INTERVAL (asin, 0, Small, 5000) 102 PL_TEST_INTERVAL (asin, Small, 0.5, 50000)
|
| H A D | acos_2u.c | 18 #define Small (0x3c90000000000000) /* 2^-53. */ macro 95 PL_TEST_INTERVAL (acos, 0, Small, 5000) 96 PL_TEST_INTERVAL (acos, Small, 0.5, 50000)
|
| H A D | v_asinf_2u5.c | 28 #define Small 0x39800000 /* 2^-12. */ macro 67 = vcgtq_u32 (vsubq_u32 (ia, v_u32 (Small)), v_u32 (One - Small)); in V_NAME_F1()
|
| H A D | v_acosf_1u4.c | 29 #define Small 0x32800000 /* 2^-26. */ macro 71 = vcgtq_u32 (vsubq_u32 (ia, v_u32 (Small)), v_u32 (One - Small)); in V_NAME_F1()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Target/ |
| H A D | CodeGenCWrappers.h | 36 return CodeModel::Small; in unwrap() 44 return CodeModel::Small; in unwrap() 51 case CodeModel::Small: in wrap()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | DenseMap.h | 972 if (Small && RHS.Small) { in swap() 1001 if (!Small && !RHS.Small) { in swap() 1053 Small = true; in copyFrom() 1055 Small = false; in copyFrom() 1062 Small = true; in init() 1064 Small = false; in init() 1074 if (Small) { in grow() 1111 Small = true; in grow() 1164 assert(Small); in getInlineBuckets() 1177 assert(!Small); in getLargeRep() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | LanaiTargetObjectFile.cpp | 51 if (GO == nullptr) return TM.getCodeModel() == CodeModel::Small; in isGlobalInSmallSection() 78 if (!GVA) return TM.getCodeModel() == CodeModel::Small; in isGlobalInSmallSectionImpl() 86 if (TM.getCodeModel() == CodeModel::Small) in isGlobalInSmallSectionImpl()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | CodeGen.h | 31 enum Model { Tiny, Small, Kernel, Medium, Large }; enumerator 40 enum Level { Default=0, Small=1, Large=2 }; enumerator
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/XCore/ |
| H A D | XCoreTargetMachine.cpp | 36 if (*CM != CodeModel::Small && *CM != CodeModel::Large) in getEffectiveXCoreCodeModel() 40 return CodeModel::Small; in getEffectiveXCoreCodeModel()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/M68k/ |
| H A D | M68kSubtarget.cpp | 154 case CodeModel::Small: in classifyLocalReference() 200 case CodeModel::Small: in classifyGlobalReference()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
| H A D | LoongArchTargetMachine.cpp | 62 return CodeModel::Small; in getEffectiveLoongArchCodeModel() 65 case CodeModel::Small: in getEffectiveLoongArchCodeModel()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/net/ |
| H A D | sff,sfp.txt | 1 Small Form Factor (SFF) Committee Small Form-factor Pluggable (SFP)
|
| H A D | sff,sfp.yaml | 7 title: Small Form Factor (SFF) Committee Small Form-factor Pluggable (SFP)
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ |
| H A D | TargetMachine.cpp | 64 if (*CM == CodeModel::Small) in isLargeGlobalValue() 129 case CodeModel::Small: in getMaxCodeSize()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZTargetMachine.cpp | 137 return RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium; in getEffectiveSystemZCodeModel() 138 return CodeModel::Small; in getEffectiveSystemZCodeModel()
|
| H A D | SystemZSubtarget.cpp | 124 if (CM == CodeModel::Small) in isPC32DBLSymbol()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| H A D | SparcTargetMachine.cpp | 92 return RM == Reloc::PIC_ ? CodeModel::Small : CodeModel::Medium; in getEffectiveSparcCodeModel() 94 return CodeModel::Small; in getEffectiveSparcCodeModel()
|
| /freebsd-14.2/sys/arm64/conf/ |
| H A D | std.nxp | 29 device sff # Small Form Factor Transceivers
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Xtensa/ |
| H A D | XtensaTargetMachine.cpp | 54 getEffectiveCodeModel(CM, CodeModel::Small), OL), in XtensaTargetMachine()
|
| /freebsd-14.2/share/examples/pf/ |
| H A D | faq-example1 | 4 # Firewall for Home or Small Office
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/arm/ |
| H A D | ste-u300.txt | 18 S365 "Small Board U365":
|