| /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| NativeTypeArray.cpp | 56 NativeRawSymbol &Element = 58 return getLength() / Element.getLength();
|
| /src/sys/external/bsd/acpica/dist/dispatcher/ |
| dspkginit.c | 61 ACPI_OPERAND_OBJECT **Element); 153 * Allocate the element array (array of pointers to the individual 172 /* First arg is element count. Second arg begins the initializer list */ 241 /* This package element is already built, just get it */ 259 * Initialize this package element. This function handles the 276 /* Make new element ref count match original ref count */ 364 * DESCRIPTION: Resolve a named reference element within a package object 389 * to the location within the element array because a new object 428 * RETURN: Possible new element is stored to the indirect ElementPtr 430 * DESCRIPTION: Resolve a package element that is a reference to a name [all...] |
| /src/sys/external/bsd/acpica/dist/utilities/ |
| uttrack.c | 49 * element contains the caller's component, module name, function name, and 51 * AcpiUtTrackAllocation to add an element to the list; deletion 326 * 2) Element was found. Returns Allocation parameter. 327 * 3) Element was not found. Returns position where it should be 330 * DESCRIPTION: Searches for an element in the global allocation tracking list. 331 * If the element is not found, returns the location within the 332 * list where the element should be inserted. 349 ACPI_DEBUG_MEM_BLOCK *Element; 352 Element = AcpiGbl_GlobalList->ListHead; 353 if (!Element) [all...] |
| /src/external/bsd/ntp/dist/tests/ntpd/ |
| ntp_prio_q.c | 25 typedef struct Element 30 } element; typedef in typeref:struct:Element 35 return ((const element*)e1)->number < ((const element*)e2)->number; 43 element* e_ptr = debug_get_node(sizeof(element)); 70 element e = {"string", 3}; 71 element* e_ptr = debug_get_node(sizeof(element)); 79 element* e_ptr_returned = dequeue(q) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| DynamicType.cpp | 243 const auto &Element = *I; 246 printJson(Element, Out, NL, Space, IsDot) << " }";
|
| CallEvent.cpp | 192 // TODO: If we were to keep CFG element information as part of the CallEvent 508 const CFGElement Element = StackFrame->getCallSiteCFGElement(); 509 if (const auto Ctor = Element.getAs<CFGConstructor>()) { 513 if (const auto RecCall = Element.getAs<CFGCXXRecordTypedCall>()) {
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| Bitfields.h | 30 /// using Bool = Bitfield::Element<bool, 0, 1>; 40 /// using Suit = Bitfield::Element<SuitEnum, 1, 2, SuitEnum::SPADES>; 47 /// using Value = Bitfield::Element<unsigned, 3, 5>; 54 /// using SignedValue = Bitfield::Element<int, 3, 5>; 213 /// Describes an element of a Bitfield. This type is then used with the 223 struct Element {
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/ |
| ExecutionUtils.h | 51 /// Accessor for an element of the global_ctors/global_dtors array. 53 /// This class provides a read-only view of the element with any casts on 55 struct Element { 56 Element(unsigned Priority, Function *Func, Value *Data) 81 /// of this element of the global_ctors/global_dtors list. 82 Element operator*() const;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| X86ShuffleDecodeConstantPool.cpp | 78 // Extract all the undef/constant element data and pack into single bitsets. 101 // Only treat the element as UNDEF if all bits are UNDEF, otherwise 138 uint64_t Element = RawMask[i]; 139 // If the high bit (7) of the byte is set, the element is zeroed. 140 if (Element & (1 << 7)) 148 int Index = Base + (Element & 0xf); 159 assert((ElSize == 32 || ElSize == 64) && "Unexpected vector element size."); 179 uint64_t Element = RawMask[i]; 181 Index += (Element >> 1) & 0x1; 183 Index += Element & 0x3 [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| RelLookupTableConverter.cpp | 109 Constant *Element = cast<Constant>(Operand); 112 Constant *Target = llvm::ConstantExpr::getPtrToInt(Element, IntPtrTy);
|
| LowerMemIntrinsics.cpp | 343 Value *Element = LoopBuilder.CreateAlignedLoad( 345 PartSrcAlign, "element"); 347 Element, LoopBuilder.CreateInBoundsGEP(EltTy, DstAddr, IndexPtr), 364 FwdLoopBuilder.CreateAlignedLoad(EltTy, SrcGEP, PartSrcAlign, "element");
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaTemplateVariadic.cpp | 118 ObjCDictionaryElement Element = E->getKeyValueElement(I); 119 if (Element.isPackExpansion()) 122 TraverseStmt(Element.Key); 123 TraverseStmt(Element.Value);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| RegionInfoImpl.h | 122 // BBs that are not part of any loop are element of the Loop 410 for (RegionNodeT *Element : elements()) { 411 if (!Element->isSubRegion()) { 412 BlockT *BB = Element->template getNodeAs<BlockT>(); 507 for (const RegionNodeT *Element : elements()) { 508 OS << *Element << ", "; // TODO: remove the last ", 553 for (const typename Tr::RegionNodeT *Element : R->elements()) { 554 if (Element->isSubRegion()) { 555 const RegionT *SR = Element->template getNodeAs<RegionT>(); 558 BlockT *BB = Element->template getNodeAs<BlockT>() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
| Utils.cpp | 775 // Prefer the original element type. 821 // If the source is a vector of pointers, return a pointer element. 830 // If we can't produce the original element type, we have to use a smaller 838 // Try to preserve the original element type. 883 Register Element = MI.getOperand(I).getReg(); 884 if (!mi_match(Element, MRI, m_SpecificICst(SplatValue))) 900 Register Element = MI.getOperand(I).getReg(); 902 if (!mi_match(Element, MRI, m_ICst(ElementValue)))
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| MergeFunctions.cpp | 491 Value *Element = createCast( 496 Builder.CreateInsertValue(Result, Element, makeArrayRef(I));
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| BasicObjCFoundationChecks.cpp | 171 os << "Array element cannot be nil"; 323 warnIfNilExpr(AL->getElement(i), "Array element cannot be nil", C); 331 ObjCDictionaryElement Element = DL->getKeyValueElement(i); 332 warnIfNilExpr(Element.Key, "Dictionary key cannot be nil", C); 333 warnIfNilExpr(Element.Value, "Dictionary value cannot be nil", C); 891 const Stmt *Element = FCS->getElement(); 895 if (const DeclStmt *DS = dyn_cast<DeclStmt>(Element)) { 900 ElementLoc = State->getSVal(Element, LCtx).getAs<Loc>();
|
| /src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| MveEmitter.cpp | 226 // append an extra "x2" or whatever to their element type's cNameBase(). Then 289 const ScalarType *Element; 293 VectorType(const ScalarType *Element, unsigned Lanes) 294 : CRegularNamedType(TypeKind::Vector), Element(Element), Lanes(Lanes) {} 295 unsigned sizeInBits() const override { return Lanes * Element->sizeInBits(); } 297 bool requiresFloat() const override { return Element->requiresFloat(); } 300 return Element->cNameBase() + "x" + utostr(Lanes); 303 return "llvm::FixedVectorType::get(" + Element->llvmName() + ", " + 313 const VectorType *Element; [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/ |
| BTFDebug.cpp | 169 for (const auto Element : Elements) { 170 const auto *Enum = cast<DIEnumerator>(Element); 241 for (const auto *Element : Elements) { 243 const auto *DDTy = cast<DIDerivedType>(Element); 297 auto Element = Elements[I]; 298 if (Element) { 300 Param.Type = BDebug.getTypeId(Element); 473 for (const auto Element : Elements) { 474 visitTypeEntry(Element); 488 for (const auto *Element : Elements) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGExprConstant.cpp | 87 /// The size of the constant (the maximum end offset of any added element). 88 /// May be larger than the end of Elems.back() if we split the last element 233 "should have at most one element covering one byte"); 296 // If we already have an element starting at Pos, we're done. 301 // We found an element starting before Pos. Check for overlap. 525 // Re-wrap single element structs if necessary. Otherwise, leave any single 526 // element constant of the right size alone even if it has the wrong type. 661 // Attempt to reduce the array element to a single constant if necessary. 948 "missing initializer for non-zero element"); 1061 // Build a struct with the union sub-element as the first member [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Parse/ |
| ParseObjc.cpp | 3416 // Parse list of array element expressions (all must be id types). 3501 ObjCDictionaryElement Element = { 3504 Elements.push_back(Element);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/TableGen/ |
| Record.h | 177 /// 'list<Ty>' - Represent a list of element values, all of which must be of 691 assert(i < NumValues && "List element index out of range!"); 1144 /// List[4] - Represent access to one element of a var or 1148 unsigned Element; 1153 TI(T), Element(E) { 1169 unsigned getElementNum() const { return Element; }
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| ConstantFolding.cpp | 79 Constant *Element; 81 Element = C->getAggregateElement(NumSrcElts - i - 1); 83 Element = C->getAggregateElement(i); 85 if (Element && isa<UndefValue>(Element)) { 90 auto *ElementCI = dyn_cast_or_null<ConstantInt>(Element); 160 // If the element types match, IR can fold it. 219 // Build each element of the result. 232 // Zero extend the element to the right size. 254 auto *Element = C->getAggregateElement(i) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| R600ISelLowering.cpp | 1609 // We mask write here to teach later passes that the ith element of this 1803 // If the inserted element is an UNDEF, just use the input vector. 1813 // Check that we know which element is being inserted 1832 // Insert the element 1854 unsigned Element = Const->getZExtValue(); 1855 return Arg->getOperand(Element); 1863 unsigned Element = Const->getZExtValue(); 1865 Arg->getOperand(0).getOperand(Element));
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| InstCombineVectorOps.cpp | 56 /// one known element from a vector constant. 65 // to the scalar inserted element. An insertelement to a different constant 184 // of elements, see if we can find the source element from the source vector: 208 // into. Example: if we inserted element 1 of a <2 x i64> and we are 315 /// no user demands an element of V, then the corresponding bit 351 // For fixed-length vector, it's invalid to extract out-of-range element. 355 // This instruction only demands the single element from the input vector. 426 // Extracting the inserted element? 434 // If this is extracting an element from a shufflevector, figure out where 435 // it came from and extract from the appropriate input element instead [all...] |
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| StmtPrinter.cpp | 2410 ObjCDictionaryElement Element = E->getKeyValueElement(I); 2411 Visit(Element.Key); 2413 Visit(Element.Value); 2414 if (Element.isPackExpansion())
|