Searched refs:ISA (Results 1 - 25 of 42) sorted by relevance

12

/freebsd-11-stable/crypto/openssl/crypto/des/
H A DDES.pm5 @ISA = qw(Exporter DynaLoader);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libzpool/common/
H A Dzfs.d32 #pragma D attributes Evolving/Evolving/ISA provider zfs provider
35 #pragma D attributes Evolving/Evolving/ISA provider zfs name
36 #pragma D attributes Evolving/Evolving/ISA provider zfs args
/freebsd-11-stable/contrib/libdivsufsort/lib/
H A Dtrsort.c264 tr_copy(saidx_t *ISA, const saidx_t *SA, argument
274 if((0 <= (s = *c - depth)) && (ISA[s] == v)) {
276 ISA[s] = d - SA;
280 if((0 <= (s = *c - depth)) && (ISA[s] == v)) {
282 ISA[s] = d - SA;
289 tr_partialcopy(saidx_t *ISA, const saidx_t *SA, argument
299 if((0 <= (s = *c - depth)) && (ISA[s] == v)) {
301 rank = ISA[s + depth];
303 ISA[s] = newrank;
309 rank = ISA[*
327 tr_introsort(saidx_t *ISA, const saidx_t *ISAd, saidx_t *SA, saidx_t *first, saidx_t *last, trbudget_t *budget) argument
555 trsort(saidx_t *ISA, saidx_t *SA, saidx_t n, saidx_t depth) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DVFABIDemangling.cpp26 /// sets the `ISA` accordingly.
27 ParseRet tryParseISA(StringRef &MangledName, VFISAKind &ISA) { argument
33 ISA = VFISAKind::LLVM;
35 ISA = StringSwitch<VFISAKind>(MangledName.take_front(1))
305 // Extract ISA. An unknow ISA is also supported, so we accept all
307 VFISAKind ISA;
308 if (tryParseISA(MangledName, ISA) != ParseRet::OK)
381 if (ISA == VFISAKind::LLVM && VectorName == OriginalName)
406 return VFInfo({Shape, ScalarName, VectorName, ISA});
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp143 StringRef ISA = hasMips64r6() ? "MIPS64r6" : "MIPS32r6"; local
149 report_fatal_error(ISA + " is not compatible with the DSP ASE", false);
/freebsd-11-stable/sys/x86/x86/
H A Dmptable.c125 {ISA, "ISA "},
144 {1, 0, ISA, 255, NOBUS},
148 {2, 0, ISA, 1, PCI},
617 case ISA:
637 case ISA:
739 case ISA:
741 if (busses[intr->src_bus_id].bus_type == ISA)
1182 name = "ISA I/O";
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DVectorUtils.h51 LLVM, // LLVM internal ISA for functions that are not
53 Unknown // Unknown ISA
122 VFISAKind ISA; // Instruction Set Architecture. member in struct:llvm::VFInfo
126 return std::tie(Shape, ScalarName, VectorName, ISA) ==
127 std::tie(Shape, Other.ScalarName, Other.VectorName, Other.ISA);
132 /// LLVM Internal VFABI ISA token for vector functions.
/freebsd-11-stable/sys/x86/include/
H A Dmptable.h36 ISA = 6, enumerator in enum:busTypes
/freebsd-11-stable/sys/isa/
H A Disavar.h42 * ISA devices are partially ordered. This is to ensure that hardwired
46 * the ISA bus PNP standard.
145 __BUS_ACCESSOR(isa, var, ISA, ivar, type)
162 /* Device class for ISA bridges. */
193 * Allocate discontinuous resources for ISA bus.
/freebsd-11-stable/contrib/libdivsufsort/include/
H A Ddivsufsort_private.h200 trsort(saidx_t *ISA, saidx_t *SA, saidx_t n, saidx_t depth);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDeclCXX.cpp420 InitSegAttr *ISA) {
424 PtrArray->setSection(ISA->getSection());
469 auto *ISA = D->getAttr<InitSegAttr>(); local
482 } else if (PerformInit && ISA) {
483 EmitPointerToInitFunc(D, Addr, Fn, ISA);
417 EmitPointerToInitFunc(const VarDecl *D, llvm::GlobalVariable *GV, llvm::Function *InitFunc, InitSegAttr *ISA) argument
/freebsd-11-stable/crypto/openssl/
H A Dconfig585 ISA=`awk '/cpu model/{print$4;exit(0);}' /proc/cpuinfo`
586 case ${ISA:-generic} in
591 case ${ISA:-generic} in
/freebsd-11-stable/stand/
H A Dloader.mk54 # Machine-independant ISA PnP
H A Ddefs.mk68 # our text + data + BTX have to fit into 640k below the ISA hole.
/freebsd-11-stable/share/examples/drivers/
H A Dmake_device_driver.sh244 * ISA Attachment structures and functions.
299 * The aim of this routine in an ISA driver is to add child entries to
318 * The ISA PNP system will have automatically added it to the system and
380 * The ISA code calls this for each device it knows about,
520 * You would do ISA specific attach things here, but generically there aren't
538 * and undo anything we did in the ISA attach routine.
598 * See the comments in the ISA section regarding returning non-positive
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/AsmParser/
H A DAMDGPUAsmParser.cpp1121 AMDGPU::IsaVersion ISA = AMDGPU::getIsaVersion(getSTI().getCPU()); local
1123 if (ISA.Major >= 6 && AMDGPU::IsaInfo::hasCodeObjectV3(&getSTI())) {
1126 Sym->setVariableValue(MCConstantExpr::create(ISA.Major, Ctx));
1128 Sym->setVariableValue(MCConstantExpr::create(ISA.Minor, Ctx));
1130 Sym->setVariableValue(MCConstantExpr::create(ISA.Stepping, Ctx));
1134 Sym->setVariableValue(MCConstantExpr::create(ISA.Major, Ctx));
1136 Sym->setVariableValue(MCConstantExpr::create(ISA.Minor, Ctx));
1138 Sym->setVariableValue(MCConstantExpr::create(ISA.Stepping, Ctx));
1140 if (ISA.Major >= 6 && AMDGPU::IsaInfo::hasCodeObjectV3(&getSTI())) {
3048 // (red,red,red,red) etc.) The ISA documen
3996 AMDGPU::IsaVersion ISA = AMDGPU::getIsaVersion(getSTI().getCPU()); local
[all...]
/freebsd-11-stable/crypto/openssl/crypto/modes/asm/
H A Dghash-armv4.pl243 bx lr @ interoperable with Thumb ISA:-)
320 bx lr @ interoperable with Thumb ISA:-)
/freebsd-11-stable/crypto/openssl/crypto/sha/asm/
H A Dsha1-thumb.pl114 bx r3 @ switch to Thumb ISA
/freebsd-11-stable/secure/lib/libcrypto/arm/
H A Darmv4-mont.S175 .word 0xe12fff1e @ interoperable with Thumb ISA:-)
H A Darmv4-gf2m.S138 .word 0xe12fff1e @ interoperable with Thumb ISA:-)
H A Dghash-armv4.S179 .word 0xe12fff1e @ interoperable with Thumb ISA:-)
313 .word 0xe12fff1e @ interoperable with Thumb ISA:-)
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-mips.c204 /* MIPS ISA (Instruction Set Architecture) level. This is set to -1
276 /* MIPS ISA we are using for this output file. */
347 /* Return true if ISA supports 64 bit wide gp registers. */
348 #define ISA_HAS_64BIT_REGS(ISA) \
349 ((ISA) == ISA_MIPS3 \
350 || (ISA) == ISA_MIPS4 \
351 || (ISA) == ISA_MIPS5 \
352 || (ISA) == ISA_MIPS64 \
353 || (ISA) == ISA_MIPS64R2)
355 /* Return true if ISA support
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUInstPrinter.cpp1283 AMDGPU::IsaVersion ISA = AMDGPU::getIsaVersion(STI.getCPU()); local
1287 decodeWaitcnt(ISA, SImm16, Vmcnt, Expcnt, Lgkmcnt);
1291 if (Vmcnt != getVmcntBitMask(ISA)) {
1296 if (Expcnt != getExpcntBitMask(ISA)) {
1303 if (Lgkmcnt != getLgkmcntBitMask(ISA)) {
/freebsd-11-stable/crypto/openssl/crypto/bn/asm/
H A Darmv4-gf2m.pl200 bx lr @ interoperable with Thumb ISA:-)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTriple.cpp324 ARM::ISAKind ISA = ARM::parseArchISA(ArchName); local
330 switch (ISA) {
346 switch (ISA) {
371 if (ISA == ARM::ISAKind::THUMB &&

Completed in 311 milliseconds

12