Searched refs:AT (Results 1 - 25 of 142) sorted by relevance

123456

/freebsd-current/contrib/libdiff/test/
H A Darraylist_test.c34 #define insert_test(AT) do {\
35 printf("insert at [" #AT "]:\n"); \
36 ARRAYLIST_INSERT(p, list, AT); \
37 *p = AT; \
/freebsd-current/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_checks.h27 constexpr unsigned SigTrapEncoding(ErrorAction EA, AccessType AT, argument
30 0x10 * (AT == AccessType::Store) + LogSize;
34 constexpr unsigned SigTrapEncoding(ErrorAction EA, AccessType AT) { argument
35 return SigTrapEncoding(EA, AT, 0xf);
38 template <ErrorAction EA, AccessType AT, size_t LogSize>
49 .is_store = AT == AccessType::Store,
50 .is_load = AT == AccessType::Load,
60 asm("brk %1\n\t" ::"r"(x0), "n"(0x900 + SigTrapEncoding(EA, AT, LogSize)));
69 "nopl %c0(%%rax)\n" ::"n"(0x40 + SigTrapEncoding(EA, AT, LogSize)),
79 "I"(0x40 + SigTrapEncoding(EA, AT, LogSiz
[all...]
/freebsd-current/crypto/openssl/crypto/bn/asm/
H A Dalpha-mont.pl84 cmplt $num,4,AT
85 bne AT,.Lexit
88 s8addq $num,16,AT
90 subq sp,AT,sp
92 lda AT,-4096(zero) # mov -4096,AT
94 and sp,AT,sp
107 cmpult $lo1,$lo0,AT
108 addq $hi1,AT,$hi1
129 cmpult $lo0,$hi0,AT
[all...]
/freebsd-current/lib/libpam/pam.d/
H A DMakefile25 CONFGROUPS+= AT
26 AT+= atrun
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMCInstLower.h51 auto &AT = static_cast<const AMDGPUTargetMachine &>(TM); local
60 if (Op->isNullValue() && AT.getNullPointerValue(SrcAddr) == 0) {
62 return MCConstantExpr::create(AT.getNullPointerValue(DstAddr),
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNonnullGlobalConstantsChecker.cpp114 if (const auto *AT = dyn_cast<AttributedType>(T)) {
115 if (AT->getAttrKind() == attr::TypeNonNull)
117 Ty = AT->getModifiedType();
H A DMallocSizeofChecker.cpp169 while (const ArrayType *AT = T->getAsArrayTypeUnsafe()) {
170 QualType ElemType = AT->getElementType();
171 if (typesCompatible(C, PT, AT->getElementType()))
H A DIterator.cpp270 APSIntType AT = BV.getAPSIntType(T); local
274 llvm::APSInt Max = AT.getMaxValue() / AT.getValue(Scale);
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DABIInfo.cpp63 if (const ConstantArrayType *AT = getContext().getAsConstantArrayType(Ty)) {
64 uint64_t NElements = AT->getSize().getZExtValue();
67 if (!isHomogeneousAggregate(AT->getElementType(), Base, Members))
99 while (const ConstantArrayType *AT =
101 if (AT->getSize().getZExtValue() == 0)
103 FT = AT->getElementType();
H A DCGNonTrivialStruct.cpp96 if (const auto *AT = asDerived().getContext().getAsArrayType(FT)) {
97 asDerived().visitArray(PCK, AT, FT.isVolatileQualified(), FD,
183 void visitArray(FieldKind FK, const ArrayType *AT, bool IsVolatile, argument
188 return asDerived().visitTrivial(QualType(AT, 0), FD, CurStructOffset);
193 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
279 if (const auto *AT = getContext().getAsArrayType(FT)) {
280 visitArray(PDIK, AT, FT.isVolatileQualified(), FD, CurStructOffset);
296 if (const auto *AT = getContext().getAsArrayType(FT)) {
297 visitArray(DK, AT, FT.isVolatileQualified(), FD, CurStructOffset);
344 void visitArray(FieldKind FK, const ArrayType *AT, boo argument
644 visitArray(FieldKind FK, const ArrayType *AT, bool IsVolatile, const FieldDecl *FD, CharUnits CurStructOffset, std::array<Address, 1> Addrs) argument
[all...]
H A DABIInfoImpl.cpp259 while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) {
260 if (AT->getSize() == 0)
262 FT = AT->getElementType();
354 while (const ConstantArrayType *AT = Context.getAsConstantArrayType(FT)) {
355 if (AT->getSize().getZExtValue() != 1)
357 FT = AT->getElementType();
/freebsd-current/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DCBufferDataLayout.cpp76 } else if (auto *AT = dyn_cast<ArrayType>(Ty)) {
77 unsigned NumElts = AT->getNumElements();
81 TypeSize EltSize = getTypeAllocSize(AT->getElementType());
/freebsd-current/usr.bin/tip/tip/
H A Dremote.c47 &AT, &DV, &CM, &CU, &EL, &IE, &OE, &PN, &PR, &DI,
132 if (DU && AT == NOSTR) {
H A Dacu.c45 * If DU is true, we should dial an ACU whose type is AT.
92 if ((acu = acutype(AT)) == NOACU)
/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DXCore.cpp543 const ArrayType *AT,
546 if (AT->getSizeModifier() != ArraySizeModifier::Normal)
549 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
556 if (!appendType(Enc, AT->getElementType(), CGM, TSC))
604 if (const ArrayType *AT = QT->getAsArrayTypeUnsafe())
607 return appendArrayType(Enc, QT, AT, CGM, TSC, "");
648 if (const ArrayType *AT = QT->getAsArrayTypeUnsafe()) {
652 return appendArrayType(Enc, QT, AT, CGM, TSC, "*");
542 appendArrayType(SmallStringEnc &Enc, QualType QT, const ArrayType *AT, const CodeGen::CodeGenModule &CGM, TypeStringCache &TSC, StringRef NoSizeEnc) argument
/freebsd-current/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreLowerThreadLocal.cpp125 ArrayType *AT = dyn_cast<ArrayType>(Ty); local
126 return AT && (AT->getNumElements() == 0);
/freebsd-current/contrib/llvm-project/clang/lib/Lex/
H A DMacroArgs.cpp174 const Token *AT = getUnexpArgument(Arg);
175 unsigned NumToks = getArgLength(AT)+1; // Include the EOF.
181 PP.EnterTokenStream(AT, NumToks, false /*disable expand*/,
/freebsd-current/usr.bin/at/
H A Dat.c90 enum { ATQ, ATRM, AT, BATCH, CAT }; /* what program we want to run */ enumerator in enum:__anon6413
738 int program = AT; /* our default program */
806 if (program != AT)
814 if (program != AT)
820 if (program != AT)
828 if (program != AT)
873 case AT:
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DTypeLoc.cpp630 const AutoType *AT) {
632 DeclarationNameInfo(AT->getTypeConstraintConcept()->getDeclName(), Loc,
633 AT->getTypeConstraintConcept()->getDeclName());
634 unsigned size = AT->getTypeConstraintArguments().size();
637 Context, AT->getTypeConstraintArguments(), TALI, Loc);
641 TemplateArgumentLoc(AT->getTypeConstraintArguments()[i],
647 AT->getTypeConstraintConcept(),
628 createTrivialConceptReference(ASTContext &Context, SourceLocation Loc, const AutoType *AT) argument
/freebsd-current/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp811 [this](const ArrayType *AT) -> bool {
812 if (!AT)
815 auto IsIncompleteArray = [](const ArrayType *AT) {
816 return isa<IncompleteArrayType>(AT);
818 auto IsArrayOfZero = [](const ArrayType *AT) {
819 const auto *CAT = dyn_cast<ConstantArrayType>(AT);
822 auto IsArrayOfOne = [](const ArrayType *AT) {
823 const auto *CAT = dyn_cast<ConstantArrayType>(AT);
835 return IsArrayOfOne(AT) || IsArrayOfZero(AT) || IsIncompleteArra
[all...]
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-select-words.mk21 AT= @ macro
130 @echo 'LIST:[$${AT}]="${LIST:[${AT}]}"'
/freebsd-current/contrib/tcpdump/
H A Dprint-atalk.c195 ND_PRINT("AT ");
225 #define AT(member) ataddr_string(ndo, (ap->member[1]<<8)|ap->member[2],ap->member[3]) macro
245 ND_PRINT("who-has %s tell %s", AT(pdaddr), AT(psaddr));
249 ND_PRINT("reply %s is-at %s", AT(psaddr), GET_ETHERADDR_STRING(ap->hsaddr));
253 ND_PRINT("probe %s tell %s", AT(pdaddr), AT(psaddr));
/freebsd-current/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsBranchExpansion.cpp399 unsigned ATReg = ABI.IsN64() ? Mips::AT_64 : Mips::AT;
494 BuildMI(*LongBrMBB, Pos, DL, TII->get(Mips::LONG_BRANCH_LUi), Mips::AT)
501 BuildMI(*MFp, DL, TII->get(Mips::LONG_BRANCH_ADDiu), Mips::AT)
502 .addReg(Mips::AT)
516 BuildMI(*BalTgtMBB, Pos, DL, TII->get(Mips::ADDu), Mips::AT)
518 .addReg(Mips::AT);
712 Mips::AT)
715 Mips::AT)
716 .addReg(Mips::AT)
/freebsd-current/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVDuplicatesTracker.cpp41 prebuildReg2Entry(AT, Reg2Entry);
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp373 Error MinimalTypeDumpVisitor::visitKnownRecord(CVType &CVR, ArrayRecord &AT) { argument
374 if (AT.Name.empty()) {
375 P.formatLine("size: {0}, index type: {1}, element type: {2}", AT.Size,
376 AT.IndexType, AT.ElementType);
379 AT.Name, AT.Size, AT.IndexType, AT.ElementType);

Completed in 365 milliseconds

123456