HomeSort by relevance Sort by last modified time
    Searched refs:Elements (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/llvm/include/llvm/ADT/
SparseBitVector.h 30 /// storing the elements that have non-zero bits set. In order to make this
289 ElementList Elements;
295 if (Elements.empty()) {
296 CurrElementIter = Elements.begin();
297 return Elements.begin();
301 if (CurrElementIter == Elements.end())
310 while (ElementIter != Elements.begin()
314 while (ElementIter != Elements.end() &&
346 if (BitVector->Elements.empty()) {
350 Iter = BitVector->Elements.begin()
    [all...]
  /external/llvm/unittests/ADT/
SCCIteratorTest.cpp 35 BitVector Elements;
36 NodeSubset(BitVector e) : Elements(e) {}
39 NodeSubset() : Elements(0) {
43 NodeSubset(const NodeSubset &other) : Elements(other.Elements) {}
47 return other.Elements == this->Elements;
56 Elements |= 1U << Idx;
62 Elements &= ~(1U << Idx);
68 return (Elements & (1U << Idx)) != 0
    [all...]
  /external/llvm/lib/Support/
IntervalMap.cpp 120 IdxPair distribute(unsigned Nodes, unsigned Elements, unsigned Capacity,
123 assert(Elements + Grow <= Nodes * Capacity && "Not enough room for elements");
124 assert(Position <= Elements && "Invalid position");
129 const unsigned PerNode = (Elements + Grow) / Nodes;
130 const unsigned Extra = (Elements + Grow) % Nodes;
138 assert(Sum == Elements + Grow && "Bad distribution sum");
143 assert(NewSize[PosPair.first] && "Too few elements to need Grow");
153 assert(Sum == Elements && "Bad distribution sum");
  /external/mesa3d/src/glsl/
builtin_types.h 84 Elements(gl_DepthRangeParameters_fields),
150 Elements(gl_PointParameters_fields),
153 Elements(gl_MaterialParameters_fields),
156 Elements(gl_LightSourceParameters_fields),
159 Elements(gl_LightModelParameters_fields),
162 Elements(gl_LightModelProducts_fields),
165 Elements(gl_LightProducts_fields),
168 Elements(gl_FogParameters_fields),
ir_variable.cpp 132 ; i < Elements(builtin_110_deprecated_uniforms)
227 for (unsigned i = 0; i < Elements(builtin_core_vs_variables); i++) {
243 for (unsigned i = 0; i < Elements(builtin_core_vs_variables); i++) {
249 ; i < Elements(builtin_110_deprecated_vs_variables)
292 for (unsigned i = 0; i < Elements(builtin_130_vs_variables); i++) {
334 for (unsigned i = 0; i < Elements(builtin_core_fs_variables); i++) {
339 for (unsigned i = 0; i < Elements(builtin_100ES_fs_variables); i++) {
354 for (unsigned i = 0; i < Elements(builtin_core_fs_variables); i++) {
359 for (unsigned i = 0; i < Elements(builtin_110_fs_variables); i++) {
365 ; i < Elements(builtin_110_deprecated_fs_variables
    [all...]
glsl_types.cpp 26 #include "main/core.h" /* for Elements */
118 Elements(builtin_core_types),
121 Elements(builtin_structure_types),
132 Elements(builtin_110_types),
135 Elements(builtin_110_deprecated_structure_types),
146 Elements(builtin_120_types), false);
156 Elements(builtin_130_types), false);
166 Elements(builtin_ARB_texture_rectangle_types),
176 Elements(builtin_EXT_texture_array_types),
builtin_function.cpp     [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 196 /// Generates a global structure, initialized by the elements in the vector.
197 /// The element types must match the types of the structure elements in the
209 /// elements that the array type declares, of the type specified as the array
    [all...]
CGExprConstant.cpp 43 std::vector<llvm::Constant *> Elements;
118 Elements.push_back(InitCst);
165 assert(!Elements.empty() && "Elements can't be empty!");
201 llvm::Value *LastElt = Elements.back();
222 Elements.pop_back();
227 assert(isa<llvm::UndefValue>(Elements.back()) &&
228 Elements.back()->getType()->isIntegerTy(CharWidth) &&
233 Elements.back() = llvm::ConstantInt::get(CGM.getLLVMContext(), Tmp);
253 Elements.push_back(llvm::ConstantInt::get(CGM.getLLVMContext(), Tmp))
    [all...]
  /external/llvm/include/llvm/
DerivedTypes.h 184 /// laid out in memory consequtively with the elements directly one after the
186 /// elements as defined by TargetData (which is required to match what the code
216 static StructType *create(ArrayRef<Type*> Elements,
219 static StructType *create(ArrayRef<Type*> Elements);
221 ArrayRef<Type*> Elements,
224 static StructType *create(LLVMContext &Context, ArrayRef<Type*> Elements);
229 static StructType *get(LLVMContext &Context, ArrayRef<Type*> Elements,
237 /// structure types by specifying the elements as arguments. Note that this
266 void setBody(ArrayRef<Type*> Elements, bool isPacked = false);
274 // Iterator access to the elements
    [all...]
  /external/clang/include/clang/Analysis/
CFG.h 309 ElementList Elements;
349 : Elements(C), Label(NULL), Terminator(NULL), LoopTarget(NULL),
359 CFGElement front() const { return Elements.front(); }
360 CFGElement back() const { return Elements.back(); }
362 iterator begin() { return Elements.begin(); }
363 iterator end() { return Elements.end(); }
364 const_iterator begin() const { return Elements.begin(); }
365 const_iterator end() const { return Elements.end(); }
367 reverse_iterator rbegin() { return Elements.rbegin(); }
368 reverse_iterator rend() { return Elements.rend();
    [all...]
  /external/llvm/lib/VMCore/
ConstantsContext.h 482 std::vector<Constant*> Elements;
483 Elements.reserve(CP->getNumOperands());
485 Elements.push_back(CP->getOperand(i));
486 return Elements;
502 std::vector<Constant*> Elements;
503 Elements.reserve(CA->getNumOperands());
505 Elements.push_back(cast<Constant>(CA->getOperand(i)));
506 return Elements;
514 std::vector<Constant*> Elements;
515 Elements.reserve(CS->getNumOperands())
    [all...]
Type.cpp 188 // Okay, our struct is sized if all of the elements are.
400 void StructType::setBody(ArrayRef<Type*> Elements, bool isPacked) {
408 TypeAllocator.Allocate<Type*>(Elements.size());
409 memcpy(Elts, Elements.data(), sizeof(Elements[0])*Elements.size());
412 NumContainedTys = Elements.size();
469 assert(type != 0 && "Cannot create a struct type with no elements with this");
481 StructType *StructType::create(LLVMContext &Context, ArrayRef<Type*> Elements,
484 ST->setBody(Elements, isPacked)
    [all...]
  /external/llvm/include/llvm/Analysis/
DIBuilder.h 202 /// @param Elements class members.
212 DIArray Elements, MDNode *VTableHolder = 0,
223 /// @param Elements Struct elements.
228 DIArray Elements, unsigned RunTimeLang = 0);
238 /// @param Elements Union elements.
243 DIArray Elements, unsigned RunTimeLang = 0);
297 /// @param Elements Enumeration elements
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp 173 SmallVector<Type*, 16> Elements;
189 Elements.resize(SrcSTy->getNumElements());
190 for (unsigned i = 0, e = Elements.size(); i != e; ++i)
191 Elements[i] = getImpl(SrcSTy->getElementType(i));
193 DstSTy->setBody(Elements, SrcSTy->isPacked());
227 // If this is not a named struct type, then just map all of the elements and
235 // Remap all of the elements, keeping track of whether any of them change.
761 SmallVector<Constant*, 16> Elements;
764 Elements.push_back(I->getOperand(i));
769 Elements.append(DstAT->getNumElements(), Constant::getNullValue(EltTy))
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]
  /external/llvm/lib/Analysis/
DIBuilder.cpp 366 DIType DerivedFrom, DIArray Elements,
380 Elements,
430 unsigned Flags, DIArray Elements,
444 Elements,
456 DIArray Elements, unsigned RunTimeLang) {
469 Elements,
503 DIArray Elements) {
516 Elements,
632 DIArray DIBuilder::getOrCreateArray(ArrayRef<Value *> Elements) {
633 if (Elements.empty())
    [all...]
  /external/mesa3d/src/mesa/main/
compiler.h 505 #ifndef Elements
506 #define Elements(x) (sizeof(x)/sizeof(*(x)))
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Program.cpp     [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 723 DIArray Elements = CTy.getTypeArray();
726 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
728 DIDescriptor Enum(Elements.getElement(i));
738 DIArray Elements = CTy.getTypeArray();
739 DIDescriptor RTy = Elements.getElement(0);
744 for (unsigned i = 1, N = Elements.getNumElements(); i < N; ++i) {
745 DIDescriptor Ty = Elements.getElement(i);
764 // Add elements to structure type.
765 DIArray Elements = CTy.getTypeArray();
767 // A forward struct declared type may not have elements available
    [all...]
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_documentgetelementsbytagnamelength.js 79 NodeList of all the Elements with a given tagName.
84 that contains 5 elements.
hc_elementgetelementsbytagname.js 79 of all descendant Elements with the given tag name.
82 Create a NodeList of all the descendant elements
85 "0" since there are not any descendant elements
hc_elementgetelementsbytagnamenomatch.js 79 of all descendant Elements with the given tag name.
81 Create a NodeList of all the descendant elements
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_documentgetelementsbytagnamelength.js 79 NodeList of all the Elements with a given tagName.
84 that contains 5 elements.
hc_elementgetelementsbytagname.js 79 of all descendant Elements with the given tag name.
82 Create a NodeList of all the descendant elements
85 "0" since there are not any descendant elements

Completed in 655 milliseconds

1 2 3