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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/mclinker/include/mcld/Support/
GCFactoryListTraits.h 23 template<typename DataType>
24 class GCFactoryListTraits : public llvm::ilist_default_traits<DataType>
27 class SentinelNode : public DataType
36 DataType *createSentinel() const
37 { return reinterpret_cast<DataType*>(&mSentinel); }
39 static void destroySentinel(DataType*) { }
41 DataType *provideInitialHead() const
44 DataType *ensureHead(DataType*) const
47 static void noteHead(DataType*, DataType*) {
    [all...]
UniqueGCFactory.h 23 template<typename KeyType, typename DataType, size_t ChunkSize>
24 class UniqueGCFactoryBase : public GCFactoryBase<LinearAllocator<DataType, ChunkSize> >
27 typedef GCFactoryBase<LinearAllocator<DataType, ChunkSize> > Alloc;
28 typedef std::map<KeyType, DataType*> KeyMap;
32 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >()
36 : GCFactoryBase<LinearAllocator<DataType, ChunkSize> >(pNum)
43 DataType* find(const KeyType& pKey) {
50 const DataType* find(const KeyType& pKey) const {
57 DataType* produce(const KeyType& pKey, bool& pExist) {
63 DataType* data = Alloc::allocate()
    [all...]
Allocators.h 24 template<typename DataType, size_t ChunkSize>
28 typedef DataType value_type;
48 DataType data[ChunkSize];
51 template<typename DataType>
52 class Chunk<DataType, 0>
55 typedef DataType value_type;
61 data = (DataType*)malloc(sizeof(DataType)*m_Size);
87 DataType *data;
91 template<typename DataType>
    [all...]
  /frameworks/compile/mclinker/include/mcld/ADT/
TypeTraits.h 16 template<typename DataType>
19 template<typename DataType>
22 typedef DataType value_type;
23 typedef const DataType* pointer;
24 typedef const DataType& reference;
26 typedef ConstTraits<DataType> const_traits;
27 typedef NonConstTraits<DataType> nonconst_traits;
30 template<typename DataType>
33 typedef DataType value_type;
34 typedef DataType* pointer
    [all...]
StringEntry.h 19 template<typename DataType>
25 template<typename DataType>
30 typedef DataType value_type;
51 void setValue(const DataType& pVal)
67 DataType m_Value;
71 friend class StringEntryFactory<DataType>;
128 template<typename DataType>
132 typedef StringEntry<DataType> entry_type;
133 typedef typename StringEntry<DataType>::key_type key_type;
134 typedef typename StringEntry<DataType>::value_type value_type
    [all...]
BinTree.h 24 template<class DataType>
97 template<class DataType, class Traits, class IteratorType>
101 typedef DataType value_type;
140 template<class DataType, class Traits, class IteratorType>
141 class PolicyIterator : public PolicyIteratorBase<DataType, Traits, IteratorType>
144 typedef PolicyIterator<DataType, Traits, IteratorType> Self;
145 typedef PolicyIteratorBase<DataType, Traits, IteratorType> Base;
146 typedef PolicyIterator<DataType, typename Traits::nonconst_traits, IteratorType> iterator;
147 typedef PolicyIterator<DataType, typename Traits::const_traits, IteratorType> const_iterator;
173 template<class DataType>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
MessageQueue.h 51 // Essentially, MessageQueue acts as a queue of OwnPtr<DataType>.
52 template<typename DataType>
59 bool append(PassOwnPtr<DataType>);
60 void appendAndKill(PassOwnPtr<DataType>);
61 bool appendAndCheckEmpty(PassOwnPtr<DataType>);
62 void prepend(PassOwnPtr<DataType>);
64 PassOwnPtr<DataType> waitForMessage();
65 PassOwnPtr<DataType> tryGetMessage();
66 PassOwnPtr<DataType> tryGetMessageIgnoringKilled();
67 PassOwnPtr<DataType> waitForMessageWithTimeout(MessageQueueWaitResult&, double absoluteTime)
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/tools/
genapi.py 41 # Constants corresponding to the protobuf DataType.Type
42 class DataType:
47 if self.name == "pointer": # pointers map to the INT64 DataType
70 DataType.VOID = DataType("void")
71 DataType.CHAR = DataType("char")
72 DataType.BYTE = DataType("byte")
73 DataType.ENUM = DataType("enum"
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicColorMatrix.java 27 Element.DataType dtIn, int vsIn,
28 Element.DataType dtOut, int vsOut,
72 private void test(Element.DataType dtin, Element.DataType dtout, int subtest,
132 test(Element.DataType.UNSIGNED_8, Element.DataType.UNSIGNED_8, 0, false);
136 test(Element.DataType.FLOAT_32, Element.DataType.FLOAT_32, 0, false);
140 test(Element.DataType.UNSIGNED_8, Element.DataType.FLOAT_32, 0, false)
    [all...]
IntrinsicResize.java 27 private void testReszie(int w, int h, Element.DataType dt, int vecSize, float scaleX, float scaleY) {
55 if (dt == Element.DataType.UNSIGNED_8) {
83 testReszie(inX, inX, Element.DataType.UNSIGNED_8, 4, 1.f, 1.f);
87 testReszie(inX, inX, Element.DataType.UNSIGNED_8, 3, 1.f, 1.f);
91 testReszie(inX, inX, Element.DataType.UNSIGNED_8, 2, 1.f, 1.f);
95 testReszie(inX, inX, Element.DataType.UNSIGNED_8, 1, 1.f, 1.f);
100 testReszie(inX, inX, Element.DataType.UNSIGNED_8, 4, 2.f, 2.f);
104 testReszie(inX, inX, Element.DataType.UNSIGNED_8, 3, 2.f, 2.f);
108 testReszie(inX, inX, Element.DataType.UNSIGNED_8, 2, 2.f, 2.f);
112 testReszie(inX, inX, Element.DataType.UNSIGNED_8, 1, 2.f, 2.f)
    [all...]
ElementTest.java 20 import android.renderscript.Element.DataType;
28 DataType.UNSIGNED_8,
31 DataType.UNSIGNED_5_6_5,
34 DataType.UNSIGNED_8,
37 DataType.UNSIGNED_5_5_5_1,
40 DataType.UNSIGNED_4_4_4_4,
43 DataType.UNSIGNED_8,
51 assertTrue(Element.createVector(mRS, DataType.FLOAT_32, len) != null);
52 assertTrue(Element.createVector(mRS, DataType.FLOAT_64, len) != null);
53 assertTrue(Element.createVector(mRS, DataType.SIGNED_8, len) != null)
    [all...]
IntrinsicConvolve3x3.java 23 private void testConvolve3(int w, int h, Element.DataType dt, int vecSize, Script.LaunchOptions sc) {
54 if (dt == Element.DataType.UNSIGNED_8) {
92 if (dt == Element.DataType.UNSIGNED_8) {
129 if (dt == Element.DataType.UNSIGNED_8) {
168 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 4, null);
172 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 3, null);
176 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 2, null);
180 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 1, null);
185 testConvolve3(100, 100, Element.DataType.FLOAT_32, 4, null);
190 testConvolve3(100, 100, Element.DataType.FLOAT_32, 3, null)
    [all...]
IntrinsicConvolve5x5.java 39 if (e.getDataType() == Element.DataType.UNSIGNED_8) {
76 private void testConvolve5(int w, int h, Element.DataType dt, int vecSize, Script.LaunchOptions sc) {
109 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 4, null);
113 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 3, null);
117 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 2, null);
121 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 1, null);
126 testConvolve5(100, 100, Element.DataType.FLOAT_32, 4, null);
130 testConvolve5(100, 100, Element.DataType.FLOAT_32, 3, null);
134 testConvolve5(100, 100, Element.DataType.FLOAT_32, 2, null);
138 testConvolve5(100, 100, Element.DataType.FLOAT_32, 1, null)
    [all...]
RSBaseCompute.java 80 protected Element getElement(RenderScript rs, Element.DataType dataType, int size) {
83 if (dataType == Element.DataType.FLOAT_64) {
85 } else if (dataType == Element.DataType.FLOAT_32) {
87 } else if (dataType == Element.DataType.SIGNED_64) {
89 } else if (dataType == Element.DataType.UNSIGNED_64)
    [all...]
  /external/deqp/framework/opengl/
gluShaderUtil.hpp 93 // DataType
95 enum DataType
182 const char* getDataTypeName (DataType dataType);
183 int getDataTypeScalarSize (DataType dataType);
184 DataType getDataTypeScalarType (DataType dataType);
185 DataType getDataTypeFloatScalars (DataType dataType)
    [all...]
gluTextureUtil.hpp 44 deUint32 dataType; //!< Data type.
48 , dataType (0)
54 , dataType (dataType_)
59 tcu::TextureFormat mapGLTransferFormat (deUint32 format, deUint32 dataType);
77 DataType getSampler1DType (tcu::TextureFormat format);
78 DataType getSampler2DType (tcu::TextureFormat format);
79 DataType getSamplerCubeType (tcu::TextureFormat format);
80 DataType getSampler2DArrayType (tcu::TextureFormat format);
81 DataType getSampler3DType (tcu::TextureFormat format);
82 DataType getSamplerCubeArrayType (tcu::TextureFormat format)
    [all...]
gluShaderUtil.cpp 166 // DataType
168 const char* getDataTypeName (DataType dataType)
243 DE_ASSERT(deInBounds32((int)dataType, 0, DE_LENGTH_OF_ARRAY(s_names)));
244 return s_names[(int)dataType];
247 int getDataTypeScalarSize (DataType dataType)
322 DE_ASSERT(deInBounds32((int)dataType, 0, DE_LENGTH_OF_ARRAY(s_sizes)));
323 return s_sizes[(int)dataType];
326 DataType getDataTypeScalarType (DataType dataType
    [all...]
  /external/deqp/modules/glshared/
glsShaderConstExprTests.hpp 48 using glu::DataType;
55 DataType inType;
59 DataType outType;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
icrsint.h 37 #define ADO_FIXED_LENGTH_ENTRY(Ordinal,DataType,Buffer,Status,Modify) {Ordinal,DataType,0,0,0,offsetof(ADORowClass,Buffer),offsetof(ADORowClass,Status),0,classoffset(CADORecordBinding,ADORowClass),Modify},
38 #define ADO_FIXED_LENGTH_ENTRY2(Ordinal,DataType,Buffer,Modify) {Ordinal,DataType,0,0,0,offsetof(ADORowClass,Buffer),0,0,classoffset(CADORecordBinding,ADORowClass),Modify},
39 #define ADO_NUMERIC_ENTRY(Ordinal,DataType,Buffer,Precision,Scale,Status,Modify) {Ordinal,DataType,Precision,Scale,0,offsetof(ADORowClass,Buffer),offsetof(ADORowClass,Status),0,classoffset(CADORecordBinding,ADORowClass),Modify},
40 #define ADO_NUMERIC_ENTRY2(Ordinal,DataType,Buffer,Precision,Scale,Modify) {Ordinal,DataType,Precision,Scale,0,offsetof(ADORowClass,Buffer),0,0,classoffset(CADORecordBinding,ADORowClass),Modify},
41 #define ADO_VARIABLE_LENGTH_ENTRY(Ordinal,DataType,Buffer,Size,Status,Length,Modify) {Ordinal,DataType,0,0,Size,offsetof(ADORowClass,Buffer),offsetof(ADORowClass,Status),offsetof(ADORowClass,Length),cl (…)
    [all...]
  /frameworks/base/rs/java/android/renderscript/
Element.java 35 * android.renderscript.Element.DataType} and a {@link
36 * android.renderscript.Element.DataKind}. The DataType encodes C type
62 DataType mType;
104 * DataType represents the basic type information for a basic element. The
119 public enum DataType {
157 DataType(int id, int size) {
162 DataType(int id) {
294 public DataType getDataType() {
314 rs.mElement_BOOLEAN = createUser(rs, DataType.BOOLEAN);
328 rs.mElement_U8 = createUser(rs, DataType.UNSIGNED_8)
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboTestUtil.hpp 46 // Helper class for constructing DataType vectors.
49 std::vector<glu::DataType> vec;
50 DataTypes& operator<< (glu::DataType type) { vec.push_back(type); return *this; }
58 FlatColorShader (glu::DataType outputType);
67 const glu::DataType m_outputType;
73 GradientShader (glu::DataType outputType);
82 const glu::DataType m_outputType;
88 Texture2DShader (const DataTypes& samplerTypes, glu::DataType outputType, const tcu::Vec4& outScale = tcu::Vec4(1.0f), const tcu::Vec4& outBias = tcu::Vec4(0.0f));
112 const glu::DataType m_outputType;
118 TextureCubeShader (glu::DataType samplerType, glu::DataType outputType)
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ElementThunker.java 64 static android.renderscript.Element.DataType convertType(DataType cdt) {
67 return android.renderscript.Element.DataType.NONE;
68 //case DataType.FLOAT_16:
70 return android.renderscript.Element.DataType.FLOAT_32;
72 return android.renderscript.Element.DataType.FLOAT_64;
74 return android.renderscript.Element.DataType.SIGNED_8;
76 return android.renderscript.Element.DataType.SIGNED_16;
78 return android.renderscript.Element.DataType.SIGNED_32;
80 return android.renderscript.Element.DataType.SIGNED_64
    [all...]
Element.java 40 * android.support.v8.renderscript.Element.DataType} and a {@link
41 * android.support.v8.renderscript.Element.DataKind}. The DataType encodes C
69 DataType mType;
115 * DataType represents the basic type information for a basic element. The
130 public enum DataType {
162 DataType(int id, int size) {
291 public DataType getDataType() {
311 rs.mElement_BOOLEAN = createUser(rs, DataType.BOOLEAN);
325 rs.mElement_U8 = createUser(rs, DataType.UNSIGNED_8);
339 rs.mElement_I8 = createUser(rs, DataType.SIGNED_8)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/
GenericRequestBuilder.java 45 * @param <DataType> The data type that the image {@link ModelLoader} will provide that can be decoded by the image
49 public class GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> {
52 private final ChildLoadProvider<ModelType, DataType, ResourceType, TranscodeType> loadProvider;
62 private GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType>
74 private Encoder<DataType> preSkipSourceEncoder;
77 LoadProvider<ModelType, DataType, ResourceType, TranscodeType> loadProvider,
83 new ChildLoadProvider<ModelType, DataType, ResourceType, TranscodeType>(loadProvider) : null;
118 public GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> thumbnail(
119 GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType>
150 public GenericRequestBuilder<ModelType, DataType, ResourceType, TranscodeType> thumbnail
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathByteStream.h 29 template<typename DataType>
31 DataType value;
32 unsigned char bytes[sizeof(DataType)];

Completed in 426 milliseconds

1 2 3 4 5 6 7 8 91011>>