HomeSort by relevance Sort by last modified time
    Searched full:structtype (Results 1 - 25 of 338) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/include/llvm/Linker/
IRMover.h 21 class StructType;
30 KeyTy(const StructType *ST);
34 static StructType *getEmptyKey();
35 static StructType *getTombstoneKey();
37 static unsigned getHashValue(const StructType *ST);
38 static bool isEqual(const KeyTy &LHS, const StructType *RHS);
39 static bool isEqual(const StructType *LHS, const StructType *RHS);
45 DenseSet<StructType *> OpaqueStructTypes;
48 DenseSet<StructType *, StructTypeKeyInfo> NonOpaqueStructTypes
    [all...]
  /external/llvm/unittests/IR/
TypesTest.cpp 17 TEST(TypesTest, StructType) {
21 StructType *Struct = StructType::create(C, "FooBar");
33 StructType *Foo = StructType::create(C, "Foo");
34 StructType *Bar = StructType::create(C, "Bar");
  /external/libchrome/base/json/
json_value_converter.h 91 template <typename StructType>
96 template<typename StructType>
101 virtual bool ConvertField(const base::Value& value, StructType* obj)
117 template <typename StructType, typename FieldType>
118 class FieldConverter : public FieldConverterBase<StructType> {
121 FieldType StructType::* field,
123 : FieldConverterBase<StructType>(path),
128 bool ConvertField(const base::Value& value, StructType* dst) const override {
133 FieldType StructType::* field_pointer_;
359 template <class StructType>
    [all...]
  /external/clang/lib/CodeGen/
CGOpenCLRuntime.cpp 44 return llvm::PointerType::get(llvm::StructType::create(
47 return llvm::PointerType::get(llvm::StructType::create(
50 return llvm::PointerType::get(llvm::StructType::create(
53 return llvm::PointerType::get(llvm::StructType::create(
56 return llvm::PointerType::get(llvm::StructType::create(
60 llvm::StructType::create(Ctx, "opencl.image2d_depth_t"), ImgAddrSpc);
63 llvm::StructType::create(Ctx, "opencl.image2d_array_depth_t"),
67 llvm::StructType::create(Ctx, "opencl.image2d_msaa_t"), ImgAddrSpc);
70 llvm::StructType::create(Ctx, "opencl.image2d_array_msaa_t"),
74 llvm::StructType::create(Ctx, "opencl.image2d_msaa_depth_t")
    [all...]
CGRecordLayout.h 20 class StructType;
118 llvm::StructType *CompleteObjectType;
122 llvm::StructType *BaseSubobjectType;
150 CGRecordLayout(llvm::StructType *CompleteObjectType,
151 llvm::StructType *BaseSubobjectType,
161 llvm::StructType *getLLVMType() const {
167 llvm::StructType *getBaseSubobjectLLVMType() const {
183 /// \brief Return llvm::StructType element number that corresponds to the
  /external/llvm/test/Transforms/GlobalOpt/
2005-09-27-Crash.ll 6 %structtype.test = type { i32, %arraytype.Signed }
11 %tmp.9 = getelementptr %structtype.test, %structtype.test* bitcast ({ i32, { i32, [2 x i32] } }* @structinstance.test to %structtype.test*), i32 0, i32 0 ; <i32*> [#uses=0]
  /external/deqp/framework/opengl/
gluVarType.hpp 36 class StructType;
55 explicit VarType (const StructType* structPtr); //!< Struct type constructor.
68 const StructType* getStructPtr (void) const { DE_ASSERT(isStructType()); return m_data.structPtr; }
110 const StructType* structPtr;
140 class StructType
146 StructType (const char* typeName) : m_typeName(typeName) {}
147 ~StructType (void) {}
162 bool operator== (const StructType& other) const;
163 bool operator!= (const StructType& other) const;
296 DeclareStructTypePtr (const StructType* structPtr_, int indentLevel_) : structPtr(structPtr_), indentLevel(indentLevel_) {
    [all...]
gluVarType.cpp 57 VarType::VarType (const StructType* structPtr)
101 for (StructType::ConstIterator iter = m_data.structPtr->begin(); iter != m_data.structPtr->end(); iter++)
153 // StructType implementation.
155 void StructType::addMember (const char* name, const VarType& type)
160 bool StructType::operator== (const StructType& other) const
165 bool StructType::operator!= (const StructType& other) const
378 const StructType* structPtr = curType->getStructPtr();
413 for (StructType::ConstIterator memberIter = decl.structPtr->begin(); memberIter != decl.structPtr->end(); memberIt (…)
    [all...]
  /frameworks/compile/libbcc/lib/Renderscript/
RSInvokeHelperPass.cpp 49 llvm::StructType* rsAllocationType;
50 llvm::StructType* rsElementType;
51 llvm::StructType* rsSamplerType;
52 llvm::StructType* rsScriptType;
53 llvm::StructType* rsTypeType;
78 rsAllocationType = llvm::StructType::create(rsBaseObj, kAllocationTypeName);
79 rsElementType = llvm::StructType::create(rsBaseObj, kElementTypeName);
80 rsSamplerType = llvm::StructType::create(rsBaseObj, kSamplerTypeName);
81 rsScriptType = llvm::StructType::create(rsBaseObj, kScriptTypeName);
82 rsTypeType = llvm::StructType::create(rsBaseObj, kTypeTypeName)
    [all...]
  /external/deqp/modules/glshared/
glsUniformBlockCase.hpp 69 class StructType;
78 explicit VarType (const StructType* structPtr);
91 const StructType& getStruct (void) const { return *m_data.structPtr; }
115 const StructType* structPtr;
141 class StructType
147 StructType (const char* typeName) : m_typeName(typeName) {}
148 ~StructType (void) {}
217 StructType& allocStruct (const char* name);
218 const StructType* findStruct (const char* name) const;
219 void getNamedStructs (std::vector<const StructType*>& structs) const
    [all...]
  /external/clang/test/Sema/
invalid-decl.c 28 } StructType;
29 void f(StructType *buf) {
  /external/llvm/lib/IR/
Operator.cpp 30 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
Type.cpp 103 if (auto *STy = dyn_cast<StructType>(this)) {
162 return cast<StructType>(this)->isSized(Visited);
186 return cast<StructType>(this)->getName();
190 return cast<StructType>(this)->getNumElements();
194 return cast<StructType>(this)->getElementType(N);
393 // StructType Implementation
398 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes,
403 StructType *ST;
407 ST = new (Context.pImpl->TypeAllocator) StructType(Context)
    [all...]
  /external/llvm/include/llvm/IR/
TypeFinder.h 24 class StructType;
37 std::vector<StructType*> StructTypes;
46 typedef std::vector<StructType*>::iterator iterator;
47 typedef std::vector<StructType*>::const_iterator const_iterator;
59 StructType *&operator[](unsigned Idx) { return StructTypes[Idx]; }
DerivedTypes.h 146 /// CompositeType - Common super class of ArrayType, StructType, PointerType
170 /// StructType - Class to represent struct types. There are two different kinds
175 /// the StructType::get() forms.
182 /// StructType::create() forms.
190 class StructType : public CompositeType {
191 StructType(const StructType &) = delete;
192 const StructType &operator=(const StructType &) = delete;
193 StructType(LLVMContext &C
    [all...]
GVMaterializer.h 30 class StructType;
58 virtual std::vector<StructType *> getIdentifiedStructTypes() const = 0;
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktUniformBlockCase.hpp 64 class StructType;
73 explicit VarType (const StructType* structPtr);
86 const StructType& getStruct (void) const { return *m_data.structPtr; }
110 const StructType* structPtr;
140 class StructType
146 StructType (const std::string& typeName) : m_typeName(typeName) {}
147 ~StructType (void) {}
212 typedef de::SharedPtr<StructType> StructTypeSP;
221 StructType& allocStruct (const std::string& name);
222 void getNamedStructs (std::vector<const StructType*>& structs) const
    [all...]
  /external/llvm/lib/Target/
Target.cpp 121 StructType *STy = unwrap<StructType>(StructTy);
127 StructType *STy = unwrap<StructType>(StructTy);
  /external/llvm/lib/Linker/
IRMover.cpp 37 SmallVector<StructType *, 16> SpeculativeDstOpaqueTypes;
41 SmallVector<StructType *, 16> SrcDefinitionsToResolve;
45 SmallPtrSet<StructType *, 16> DstResolvedOpaqueTypes;
63 Type *get(Type *SrcTy, SmallPtrSet<StructType *, 8> &Visited);
65 void finishType(StructType *DTy, StructType *STy, ArrayRef<Type *> ETypes);
92 for (StructType *Ty : SpeculativeDstOpaqueTypes)
96 if (auto *STy = dyn_cast<StructType>(Ty))
126 if (StructType *SSTy = dyn_cast<StructType>(SrcTy))
    [all...]
  /external/deqp/modules/gles31/functional/
es31fUniformLocationTests.hpp 31 class StructType;
41 typedef std::vector<glu::StructType*> StructList;
  /frameworks/compile/slang/
slang_rs_export_func.h 33 class StructType;
102 bool checkParameterPacketType(llvm::StructType *ParamTy) const;
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_foreach_multi.java 83 ScriptField_RetStruct StructType = new ScriptField_RetStruct(RS, Xdim);
84 Out3 = StructType.getAllocation();
  /prebuilts/go/darwin-x86/src/encoding/gob/
doc.go 182 StructT *StructType
198 type structType struct {
231 StructType 20
330 03 // Add 3 to field number; now 2 (wireType.structType; this is a struct).
331 // structType starts with an embedded CommonType, which appears
336 50 6f 69 6e 74 // wireType.structType.CommonType.name = "Point"
338 ff 82 // wireType.structType.CommonType._id = 65
339 00 // end of embedded wiretype.structType.CommonType struct
340 01 // add 1 to field number (now 1, the field array in wireType.structType)
341 02 // There are two fields in the type (len(structType.field)
    [all...]
  /prebuilts/go/linux-x86/src/encoding/gob/
doc.go 182 StructT *StructType
198 type structType struct {
231 StructType 20
330 03 // Add 3 to field number; now 2 (wireType.structType; this is a struct).
331 // structType starts with an embedded CommonType, which appears
336 50 6f 69 6e 74 // wireType.structType.CommonType.name = "Point"
338 ff 82 // wireType.structType.CommonType._id = 65
339 00 // end of embedded wiretype.structType.CommonType struct
340 01 // add 1 to field number (now 1, the field array in wireType.structType)
341 02 // There are two fields in the type (len(structType.field)
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
simple-object-elf.c 248 BUFFER points to the external data. STRUCTTYPE is the appropriate
252 #define ELF_FETCH_STRUCT_FIELD(TYPEFUNCS, STRUCTTYPE, FIELD, BUFFER, TYPE) \
253 ((TYPEFUNCS)->fetch_ ## TYPE ((BUFFER) + offsetof (STRUCTTYPE, FIELD)))
256 SIZE is 32 or 64. STRUCTTYPE is the name of the struct from
261 #define ELF_FETCH_SIZED_FIELD(TYPEFUNCS, SIZE, STRUCTTYPE, BUFFER, \
264 Elf ## SIZE ## _External_ ## STRUCTTYPE, \
269 #define ELF_FETCH_FIELD(TYPEFUNCS, CLASS, STRUCTTYPE, BUFFER, \
272 ? ELF_FETCH_SIZED_FIELD (TYPEFUNCS, 32, STRUCTTYPE, BUFFER, FIELD, \
274 : ELF_FETCH_SIZED_FIELD (TYPEFUNCS, 64, STRUCTTYPE, BUFFER, FIELD, \
279 points to the external data. STRUCTTYPE is the appropriat
    [all...]

Completed in 2031 milliseconds

1 2 3 4 5 6 7 8 91011>>