Home
last modified time | relevance | path

Searched refs:AT (Results 1 – 25 of 294) sorted by relevance

12345678910>>...12

/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrFutureMMA.td17 bits<3> AT;
24 let Inst{6-8} = AT{2-0};
39 bits<3> AT;
45 let Inst{6-8} = AT{2-0};
58 bits<3> AT;
63 let Inst{6-8} = AT{2-0};
75 (ins wacc:$AT),
76 "dmxxextfdmr512 $AT, $XAp, $XBp, 0", []> {
82 (ins wacc_hi:$AT),
83 "dmxxextfdmr512 $AT, $XAp, $XBp, 1", []> {
[all …]
H A DPPCInstrMMA.td19 XX3Form_AT3_XAB6<opcode, !or(xo, 0x01), (outs acc:$AT), IOL,
21 RegConstraint<"@earlyclobber $AT">;
23 XX3Form_AT3_XAB6<opcode, xo, (outs acc:$AT), !con((ins acc:$ATi), IOL),
25 RegConstraint<"$ATi = $AT">, NoEncode<"$ATi">;
29 XX3Form_AT3_XAB6<opcode, !or(xo, 0x01), (outs wacc:$AT), IOL,
31 RegConstraint<"@earlyclobber $AT">;
33 XX3Form_AT3_XAB6<opcode, xo, (outs wacc:$AT), !con((ins wacc:$ATi), IOL),
35 RegConstraint<"$ATi = $AT">, NoEncode<"$ATi">;
47 opcode, !or(xo, 0x01), (outs acc:$AT),
51 RegConstraint<"@earlyclobber $AT">;
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_checks.h27 constexpr unsigned SigTrapEncoding(ErrorAction EA, AccessType AT, in SigTrapEncoding() argument
30 0x10 * (AT == AccessType::Store) + LogSize; in SigTrapEncoding()
34 constexpr unsigned SigTrapEncoding(ErrorAction EA, AccessType AT) { in SigTrapEncoding() argument
35 return SigTrapEncoding(EA, AT, 0xf); in SigTrapEncoding()
38 template <ErrorAction EA, AccessType AT, size_t LogSize>
49 .is_store = AT == AccessType::Store, in SigTrap()
50 .is_load = AT == AccessType::Load, in SigTrap()
60 asm("brk %1\n\t" ::"r"(x0), "n"(0x900 + SigTrapEncoding(EA, AT, LogSize))); in SigTrap()
69 "nopl %c0(%%rax)\n" ::"n"(0x40 + SigTrapEncoding(EA, AT, LogSize)), in SigTrap()
79 "I"(0x40 + SigTrapEncoding(EA, AT, LogSize))); in SigTrap()
[all …]
/freebsd/contrib/ntp/
H A Dreadme.y2kfixes2 AT&T Freeware Year 2000 Certification
6 been certified by AT&T Labs as part of the "Freeware Y2K
11 For its own internal business purposes AT&T Labs has
14 for AT&T's needs. As a service to the computing community
15 AT&T Labs is freely releasing this information to the
17 for what AT&T Labs considers an "application".
19 For use outside of AT&T, AT&T Labs is not certifying this
22 2000, nor work with current applications. Nor is AT&T
30 AT&T's intent is to ensure these Y2K patches are freely
41 Various Y2K updates and tests provided by AT&T Labs.
[all …]
/freebsd/contrib/file/magic/Magdir/
H A Dplan94 # plan9: file(1) magic for AT&T Bell Labs' Plan 9 executables and object files
8 0 belong 0x00000197 Plan 9 executable, AT&T Hobbit
13 0 belong 0x0000048B Plan 9 executable, AT&T DSP 3210
22 0 belong 0x430D013C Plan 9 object file, AT&T Hobbit
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMCInstLower.h51 auto &AT = static_cast<const AMDGPUTargetMachine &>(TM); in lowerAddrSpaceCast() local
60 if (Op->isNullValue() && AT.getNullPointerValue(SrcAddr) == 0) { in lowerAddrSpaceCast()
62 return MCConstantExpr::create(AT.getNullPointerValue(DstAddr), in lowerAddrSpaceCast()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DABIInfo.cpp63 if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) { in isHomogeneousAggregate() local
64 uint64_t NElements = AT->getZExtSize(); in isHomogeneousAggregate()
67 if (!isHomogeneousAggregate(AT->getElementType(), Base, Members)) in isHomogeneousAggregate()
99 while (const ConstantArrayType *AT = in isHomogeneousAggregate() local
101 if (AT->isZeroSize()) in isHomogeneousAggregate()
103 FT = AT->getElementType(); in isHomogeneousAggregate()
H A DCGNonTrivialStruct.cpp96 if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) { in visitWithKind() local
97 asDerived().visitArray(PCK, AT, FT.isVolatileQualified(), FD, in visitWithKind()
183 void visitArray(FieldKind FK, const ArrayType *AT, bool IsVolatile, in visitArray()
188 return asDerived().visitTrivial(QualType(AT, 0), FD, CurStructOffset); in visitArray()
193 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT); in visitArray()
279 if (const auto *AT = getContext().getAsArrayType(FT)) { in visitWithKind() local
280 visitArray(PDIK, AT, FT.isVolatileQualified(), FD, CurStructOffset); in visitWithKind()
296 if (const auto *AT = getContext().getAsArrayType(FT)) { in visitWithKind() local
297 visitArray(DK, AT, FT.isVolatileQualified(), FD, CurStructOffset); in visitWithKind()
344 void visitArray(FieldKind FK, const ArrayType *AT, bool IsVolatile, in visitArray()
[all …]
/freebsd/usr.bin/col/
H A DREADME23 Known differences between AT&T's col and this one (# is delimiter):
24 Input AT&T col this col
35 AT&T col claims to do this but doesn't.
38 is produced (the AT&T col is silent). The -l flag (not in AT&T col) can
/freebsd/contrib/llvm-project/lld/docs/ELF/
H A Dlinker_script.rst82 section [address] [(type)] : [AT(lma)] [ALIGN(section_align)] [SUBALIGN](subsection_align)] {
85 } [>region] [AT>lma_region] [:phdr ...] [=fillexp] [,]
138 A load address (LMA) can be specified by ``AT(lma)`` or ``AT>lma_region``.
140 - ``AT(lma)`` specifies the exact load address. If the linker script does not
142 - ``AT>lma_region`` specifies the LMA region. The lack of ``AT>lma_region``
152 If neither ``AT(lma)`` nor ``AT>lma_region`` is specified:
/freebsd/share/i18n/csmapper/EBCDIC/
H A DEBCDIC.part3 AT-DE
4 AT-DE-A
/freebsd/share/i18n/esdb/EBCDIC/
H A DEBCDIC.part3 AT-DE
4 AT-DE-A
/freebsd/contrib/byacc/
H A DREADME8 as compatible as possible with AT&T Yacc. Berkeley Yacc can accept any input
9 specification that conforms to the AT&T Yacc documentation. Specifications
10 that take advantage of undocumented features of AT&T Yacc will probably be
H A DNEW_FEATURES11 algorithm as AT&T Yacc. There will still be differences in the way
12 error recovery works because AT&T Yacc uses more default reductions
31 those produced by AT&T Yacc.
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNonnullGlobalConstantsChecker.cpp114 if (const auto *AT = dyn_cast<AttributedType>(T)) { in isGlobalConstString() local
115 if (AT->getAttrKind() == attr::TypeNonNull) in isGlobalConstString()
117 Ty = AT->getModifiedType(); in isGlobalConstString()
/freebsd/contrib/netbsd-tests/lib/libc/regex/data/att/
H A DREADME1 AT&T test data from: http://www2.research.att.com/~gsf/testregex/
4 testregex.c 2004-05-31 is the latest source for the AT&T Research
/freebsd/lib/libpam/pam.d/
H A DMakefile24 CONFGROUPS+= AT
25 AT+= atrun
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DXCore.cpp543 const ArrayType *AT, in appendArrayType() argument
546 if (AT->getSizeModifier() != ArraySizeModifier::Normal) in appendArrayType()
549 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) in appendArrayType()
556 if (!appendType(Enc, AT->getElementType(), CGM, TSC)) in appendArrayType()
604 if (const ArrayType *AT = QT->getAsArrayTypeUnsafe()) in appendType() local
607 return appendArrayType(Enc, QT, AT, CGM, TSC, ""); in appendType()
648 if (const ArrayType *AT = QT->getAsArrayTypeUnsafe()) { in getTypeString() local
652 return appendArrayType(Enc, QT, AT, CGM, TSC, "*"); in getTypeString()
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DCBufferDataLayout.cpp76 } else if (auto *AT = dyn_cast<ArrayType>(Ty)) { in getTypeAllocSize() local
77 unsigned NumElts = AT->getNumElements(); in getTypeAllocSize()
81 TypeSize EltSize = getTypeAllocSize(AT->getElementType()); in getTypeAllocSize()
/freebsd/usr.bin/at/
H A Dat.c90 enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */ enumerator
738 int program = AT; /* our default program */ in main()
806 if (program != AT) in main()
814 if (program != AT) in main()
820 if (program != AT) in main()
828 if (program != AT) in main()
873 case AT: in main()
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp374 Error MinimalTypeDumpVisitor::visitKnownRecord(CVType &CVR, ArrayRecord &AT) { in visitKnownRecord() argument
375 if (AT.Name.empty()) { in visitKnownRecord()
376 P.formatLine("size: {0}, index type: {1}, element type: {2}", AT.Size, in visitKnownRecord()
377 AT.IndexType, AT.ElementType); in visitKnownRecord()
380 AT.Name, AT.Size, AT.IndexType, AT.ElementType); in visitKnownRecord()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp830 [this](const ArrayType *AT) -> bool { in getStaticSize() argument
831 if (!AT) in getStaticSize()
834 auto IsIncompleteArray = [](const ArrayType *AT) { in getStaticSize() argument
835 return isa<IncompleteArrayType>(AT); in getStaticSize()
837 auto IsArrayOfZero = [](const ArrayType *AT) { in getStaticSize() argument
838 const auto *CAT = dyn_cast<ConstantArrayType>(AT); in getStaticSize()
841 auto IsArrayOfOne = [](const ArrayType *AT) { in getStaticSize() argument
842 const auto *CAT = dyn_cast<ConstantArrayType>(AT); in getStaticSize()
854 return IsArrayOfOne(AT) || IsArrayOfZero(AT) || IsIncompleteArray(AT); in getStaticSize()
857 return IsArrayOfOne(AT) || IsArrayOfZero(AT) || IsIncompleteArray(AT); in getStaticSize()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp128 ArrayType *AT = dyn_cast<ArrayType>(Ty); in isZeroLengthArray() local
129 return AT && (AT->getNumElements() == 0); in isZeroLengthArray()
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsBranchExpansion.cpp398 unsigned ATReg = ABI.IsN64() ? Mips::AT_64 : Mips::AT; in buildProperJumpMI()
493 BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_LUi), Mips::AT) in expandToLongBranch()
500 BuildMI(*MFp, DL, TII->get(Mips::LONG_BRANCH_ADDiu), Mips::AT) in expandToLongBranch()
501 .addReg(Mips::AT) in expandToLongBranch()
515 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::ADDu), Mips::AT) in expandToLongBranch()
517 .addReg(Mips::AT); in expandToLongBranch()
711 Mips::AT) in expandToLongBranch()
714 Mips::AT) in expandToLongBranch()
715 .addReg(Mips::AT) in expandToLongBranch()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DTypeLoc.cpp637 const AutoType *AT) { in createTrivialConceptReference() argument
639 DeclarationNameInfo(AT->getTypeConstraintConcept()->getDeclName(), Loc, in createTrivialConceptReference()
640 AT->getTypeConstraintConcept()->getDeclName()); in createTrivialConceptReference()
641 unsigned size = AT->getTypeConstraintArguments().size(); in createTrivialConceptReference()
644 Context, AT->getTypeConstraintArguments(), TALI, Loc); in createTrivialConceptReference()
648 TemplateArgumentLoc(AT->getTypeConstraintArguments()[i], in createTrivialConceptReference()
654 AT->getTypeConstraintConcept(), in createTrivialConceptReference()

12345678910>>...12