HomeSort by: relevance | last modified time | path
    Searched refs:Element (Results 1 - 25 of 86) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
BitcodeCommon.h 22 using Align = Bitfield::Element<unsigned, 0, 5>;
23 using UsedWithInAlloca = Bitfield::Element<bool, Align::NextBit, 1>;
24 using ExplicitType = Bitfield::Element<bool, UsedWithInAlloca::NextBit, 1>;
25 using SwiftError = Bitfield::Element<bool, ExplicitType::NextBit, 1>;
  /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/mpl/bind/dist/doc/arm/_ext/
namedconf.py 24 class ToBeReplacedStatementList(nodes.General, nodes.Element):
rndcconf.py 24 class ToBeReplacedStatementList(nodes.General, nodes.Element):
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/digest/
murmurhash.d 64 // The incoming data will be buffered and hashed element by element.
82 // Data type must be the same as the hasher's element type:
122 + $(LI `ubyte[Element.sizeof] finish()`)
126 + `Element.sizeof`:
128 + $(LI `void putElements(scope const(Element[]) elements...)`)
131 + $(LI `Element get()`)
132 + $(LI `ubyte[Element.sizeof] getBytes()`)
145 alias Element = uint; /// The element type for 32-bit implementation
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Tooling/
FileMatchTrie.cpp 74 StringRef Element(llvm::sys::path::filename(
76 Children[Element].Path = Path;
78 StringRef Element(llvm::sys::path::filename(
80 Children[Element].insert(NewPath, ConsumedLength + Element.size() + 1);
118 StringRef Element(llvm::sys::path::filename(FileName.drop_back(
121 Children.find(Element);
125 ConsumedLength + Element.size() + 1);
RefactoringCallbacks.cpp 203 for (const auto &Element : Template) {
204 switch (Element.Type) {
206 ToText += Element.Value;
209 auto NodeIter = NodeMap.find(Element.Value);
211 llvm::errs() << "Node " << Element.Value
  /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/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/DebugInfo/PDB/Native/
NativeTypeArray.cpp 56 NativeRawSymbol &Element =
58 return getLength() / Element.getLength();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
PatternInit.cpp 66 llvm::SmallVector<llvm::Constant *, 8> Element(
69 return llvm::ConstantArray::get(ArrTy, Element);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
Recycler.h 98 void Deallocate(AllocatorType & /*Allocator*/, SubClass* Element) {
99 push(reinterpret_cast<FreeNode *>(Element));
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-account.h 41 using Depth = Bitfield::Element<int32_t, 0, 31>; // Low 31 bits.
42 using IsRecursive = Bitfield::Element<bool, 31, 1>; // Sign bit.
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/internal/
gmock-internal-utils.h 98 template <typename Element>
99 inline Element* GetRawPointer(Element* p) { return p; }
397 template <typename Element, size_t N>
398 class StlContainerView<Element[N]> {
400 typedef typename std::remove_const<Element>::type RawElement;
409 static const_reference ConstReference(const Element (&array)[N]) {
410 static_assert(std::is_same<Element, RawElement>::value,
411 "Element type must not be const");
414 static type Copy(const Element (&array)[N])
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-internal.h 981 // Finds the first element in the iterator range [begin, end) that
982 // equals elem. Element may be a native array type itself.
983 template <typename Iter, typename Element>
984 Iter ArrayAwareFind(Iter begin, Iter end, const Element& elem) {
1030 // support Element being a raw type (i.e. having no top-level const or
1032 // this requirement. Element can be an array type itself (hence
1034 template <typename Element>
1038 typedef Element value_type;
1039 typedef Element* iterator;
1040 typedef const Element* const_iterator
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/
Target.cpp 139 unsigned Element) {
141 return unwrap(TD)->getStructLayout(STy)->getElementOffset(Element);
  /src/external/mpl/bind/dist/bin/tests/
convert-trs-to-junit.py 13 from xml.etree.ElementTree import Element
116 testsuites = Element("testsuites")
  /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/include/llvm/IR/
Instruction.h 57 using OpaqueField = Bitfield::Element<uint16_t, 0, 15>;
66 typename Bitfield::Element<unsigned, Offset, 5,
70 using BoolBitfieldElementT = typename Bitfield::Element<bool, Offset, 1>;
74 typename Bitfield::Element<AtomicOrdering, Offset, 3,
80 using HasMetadataField = Bitfield::Element<bool, 15, 1>;
124 /// \returns an iterator pointing to the element after the erased one
289 /// Get all metadata attached to this Instruction. The first element of each
290 /// pair returned is the KindID, the second element is the metadata value.
  /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/AST/
CXXInheritance.cpp 201 CXXBasePathElement Element;
202 Element.Base = &BaseSpec;
203 Element.Class = Record;
205 Element.SubobjectNumber = 0;
207 Element.SubobjectNumber = Subobjects.NumberOfNonVirtBases;
208 ScratchPath.push_back(Element);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Transformer/
Parsing.cpp 123 template <typename Element>
124 llvm::Optional<Element> findOptional(const llvm::StringMap<Element> &Map,
192 // Parses a single element surrounded by parens. `Op` is applied to the parsed
  /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/include/llvm-c/
Target.h 276 /** Computes the structure element that contains the byte offset for a target.
281 /** Computes the byte offset of the indexed struct element for a target.
284 LLVMTypeRef StructTy, unsigned Element);
  /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...]

Completed in 64 milliseconds

1 2 3 4