| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | APValue.h | 278 struct Arr { 281 Arr(unsigned NumElts, unsigned ArrSize); 282 Arr(const Arr &) = delete; 283 Arr &operator=(const Arr &) = delete; 284 ~Arr(); 311 ComplexAPFloat, Vec, Arr, StructData, 579 return ((Arr *)(char *)&Data)->Elts[I]; 590 return ((Arr *)(char *)&Data)->Elts[getArrayInitializedElts()]; 597 return ((const Arr *)(const void *)&Data)->NumElts; 601 return ((const Arr *)(const void *)&Data)->ArrSize;
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | ArrayRef.h | 104 /*implicit*/ constexpr ArrayRef(const T (&Arr LLVM_LIFETIME_BOUND)[N]) in ArrayRef() 105 : Data(Arr), Length(N) {} in ArrayRef() 347 /*implicit*/ constexpr MutableArrayRef(T (&Arr)[N]) : ArrayRef<T>(Arr) {} in MutableArrayRef() 512 template <typename T, size_t N> ArrayRef(const T (&Arr)[N]) -> ArrayRef<T>; 542 MutableArrayRef(T (&Arr)[N]) -> MutableArrayRef<T>;
|
| /freebsd/contrib/tcsh/nls/french/ |
| H A D | set2 | 5 3 Arrêté 43 41 Arrêt du système imminent
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | APValue.cpp | 294 APValue::Arr::Arr(unsigned NumElts, unsigned Size) : in Arr() function in APValue::Arr 297 APValue::Arr::~Arr() { delete [] Elts; } in ~Arr() 424 ((Arr *)(char *)&Data)->~Arr(); in DestroyDataAndMakeUninit() 1096 new ((void *)(char *)&Data) Arr(InitElts, Size); in MakeArray()
|
| H A D | DeclCXX.cpp | 3749 APValue &Arr = APVal.getStructField(3) = in getAsAPValue() local 3752 Arr.getArrayInitializedElt(I) = in getAsAPValue()
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Module.cpp | 838 auto *Arr = dyn_cast_or_null<ConstantDataArray>(CM->getValue()); in getSDKVersionMD() local 839 if (!Arr) in getSDKVersionMD() 842 if (Index >= Arr->getNumElements()) in getSDKVersionMD() 844 return (unsigned)Arr->getElementAsInteger(Index); in getSDKVersionMD()
|
| H A D | Constants.cpp | 2858 static bool isAllZeros(StringRef Arr) { in isAllZeros() argument 2859 for (char I : Arr) in isAllZeros()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Mustache.cpp | 555 auto Arr = *Data.getAsArray(); in toMustacheString() local 556 if (Arr.empty()) in toMustacheString() 619 if (const json::Array *Arr = ContextPtr->getAsArray()) { in render() local 620 for (const json::Value &V : *Arr) in render()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | ELF.h | 103 DataRegion(ArrayRef<T> Arr) : First(Arr.data()), Size(Arr.size()) {} in DataRegion() 999 ArrayRef<T> Arr = *EntriesOrErr; in getEntry() local 1000 if (Entry >= Arr.size()) in getEntry() 1006 return &Arr[Entry]; in getEntry()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | DeclSpec.h | 1640 ArrayTypeInfo Arr; member 1653 case DeclaratorChunk::Array: return Arr.destroy(); in destroy() 1704 I.Arr.TypeQuals = TypeQuals; in getArray() 1705 I.Arr.hasStatic = isStatic; in getArray() 1706 I.Arr.isStar = isStar; in getArray() 1707 I.Arr.NumElts = NumElts; in getArray() 2452 !chunk->Arr.NumElts); in isArrayOfUnknownBound()
|
| H A D | Overload.h | 1408 llvm::MutableArrayRef<Expr *> Arr = in getPersistentArgsArray() local 1410 llvm::copy(std::initializer_list<Expr *>{Exprs...}, Arr.data()); in getPersistentArgsArray() 1411 return Arr; in getPersistentArgsArray()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/ |
| H A D | WinCOFFObjectWriter.cpp | 540 std::vector<COFFSection *> Arr; in writeSectionHeaders() local 542 Arr.push_back(Section.get()); in writeSectionHeaders() 543 llvm::sort(Arr, [](const COFFSection *A, const COFFSection *B) { in writeSectionHeaders() 547 for (auto &Section : Arr) { in writeSectionHeaders()
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | InstrProf.cpp | 753 auto *Arr = cast<ConstantDataArray>(NameVar->getInitializer()); in getPGOFuncNameVarInitializer() local 755 Arr->isCString() ? Arr->getAsCString() : Arr->getAsString(); in getPGOFuncNameVarInitializer()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemorySSAUpdater.cpp | 774 const ValueToValueMapTy *const Arr[] = {&VMap}; in updateExitBlocksForClonedLoop() local 775 privateUpdateExitBlocksForClonedLoop(ExitBlocks, std::begin(Arr), in updateExitBlocksForClonedLoop() 776 std::end(Arr), DT); in updateExitBlocksForClonedLoop()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | StructurizeCFG.cpp | 114 uint32_t Arr[] = {Weights->TrueWeight, Weights->FalseWeight}; in setMetadata() local 115 setBranchWeights(Br, Arr, false); in setMetadata()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaTemplateVariadic.cpp | 1077 if (Chunk.Arr.NumElts && in containsUnexpandedParameterPacks() 1078 Chunk.Arr.NumElts->containsUnexpandedParameterPack()) in containsUnexpandedParameterPacks()
|
| H A D | SemaFunctionEffects.cpp | 1106 const ArrayType *Arr = Ty->getAsArrayTypeUnsafe(); in followTypeDtor() local 1107 QT = Arr->getElementType(); in followTypeDtor()
|
| H A D | SemaExprCXX.cpp | 2019 if (Chunk.Arr.hasStatic) in ActOnCXXNew() 2022 if (!Chunk.Arr.NumElts && !Initializer) in ActOnCXXNew() 2026 ArraySize = Chunk.Arr.NumElts; in ActOnCXXNew() 2036 DeclaratorChunk::ArrayTypeInfo &Array = D.getTypeObject(I).Arr; in ActOnCXXNew()
|
| H A D | SemaType.cpp | 3604 if (!C.Arr.NumElts) in warnAboutRedundantParens() 4729 DeclaratorChunk::ArrayTypeInfo &ATI = DeclType.Arr; in GetFullTypeForDeclarator() 4741 !NextDeclType.Arr.NumElts) in GetFullTypeForDeclarator() 6176 TL.setSizeExpr(static_cast<Expr*>(Chunk.Arr.NumElts)); in VisitArrayTypeLoc()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | ELFDumper.cpp | 5518 getGNUPropertyList(ArrayRef<uint8_t> Arr, typename ELFT::Half EMachine) { in getGNUPropertyList() argument 5522 while (Arr.size() >= 8) { in getGNUPropertyList() 5523 uint32_t Type = *reinterpret_cast<const Elf_Word *>(Arr.data()); in getGNUPropertyList() 5524 uint32_t DataSize = *reinterpret_cast<const Elf_Word *>(Arr.data() + 4); in getGNUPropertyList() 5525 Arr = Arr.drop_front(8); in getGNUPropertyList() 5531 if (Arr.size() < PaddedSize) { in getGNUPropertyList() 5537 Type, DataSize, Arr.take_front(PaddedSize), EMachine)); in getGNUPropertyList() 5538 Arr = Arr.drop_front(PaddedSize); in getGNUPropertyList() 5541 if (!Arr.empty()) in getGNUPropertyList()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGExprCXX.cpp | 2159 while (const ConstantArrayType *Arr in EmitCXXDeleteExpr() local 2162 DeleteTy = Arr->getElementType(); in EmitCXXDeleteExpr()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonInstrInfo.cpp | 1093 auto *Arr = cast<ConstantDataArray>(GV->getInitializer()); in expandPostRAPseudo() local 1094 StringRef NameStr = Arr->isCString() ? Arr->getAsCString() : Arr->getAsString(); in expandPostRAPseudo()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | ExprEngine.cpp | 3340 const Expr *Arr = Ex->getCommonExpr()->getSourceExpr(); in VisitArrayInitLoopExpr() local 3387 if (const auto *ME = dyn_cast<MemberExpr>(Arr)) { in VisitArrayInitLoopExpr() 3413 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Arr)) in VisitArrayInitLoopExpr()
|
| H A D | BugReporterVisitors.cpp | 2278 if (const auto *Arr = dyn_cast<ArraySubscriptExpr>(Inner)) in handle() local 2280 Arr->getIdx(), LVNode, in handle()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinter.cpp | 3191 auto *Arr = cast<ConstantArray>(GV->getInitializer()); in emitSpecialLLVMGlobal() local 3192 for (auto &U : Arr->operands()) { in emitSpecialLLVMGlobal()
|