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

1 2 3 4 5 6 7 8 91011

  /external/deqp/framework/egl/
egluConfigInfo.hpp 42 deInt32 bufferSize;
43 deInt32 redSize;
44 deInt32 greenSize;
45 deInt32 blueSize;
46 deInt32 luminanceSize;
47 deInt32 alphaSize;
48 deInt32 alphaMaskSize;
53 deInt32 configId;
54 deInt32 conformant;
55 deInt32 depthSize
    [all...]
  /external/deqp/framework/delibs/decpp/
deSpinBarrier.hpp 57 SpinBarrier (deInt32 numThreads);
78 volatile deInt32 m_numThreads;
79 volatile deInt32 m_numEntered;
80 volatile deInt32 m_numLeaving;
81 volatile deInt32 m_numRemoved;
  /external/deqp/framework/delibs/dethread/
deAtomic.c 28 DE_STATIC_ASSERT(sizeof(long) == sizeof(deInt32));
  /external/deqp/framework/delibs/destream/
deRingbuffer.h 33 deRingbuffer* deRingbuffer_create (deInt32 blockSize, deInt32 blockCount);
deStreamCpyThread.h 37 deInt32 bufferSize;
40 deStreamCpyThread* deStreamCpyThread_create (deInStream* input, deOutStream* output, deInt32 bufferSize);
deInStream.h 38 DE_INLINE deStreamResult deInStream_read (deInStream* stream, void* buf, deInt32 bufSize, deInt32* numWritten);
44 DE_INLINE deStreamResult deInStream_read (deInStream* stream, void* buf, deInt32 bufSize, deInt32* numWritten)
deIOStream.h 52 typedef deStreamResult (*deIOStreamReadFunc) (deStreamData* stream, void* buf, deInt32 bufSize, deInt32* numRead);
53 typedef deStreamResult (*deIOStreamWriteFunc) (deStreamData* stream, const void* buf, deInt32 bufSize, deInt32* numWritten);
77 DE_INLINE deStreamResult deIOStream_read (deIOStream* stream, void* buf, deInt32 bufSize, deInt32* numRead);
78 DE_INLINE deStreamResult deIOStream_write (deIOStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten);
86 DE_INLINE deStreamResult deIOStream_write (deIOStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten
    [all...]
deRingbuffer.c 25 #include "deInt32.h"
34 deInt32 blockSize;
35 deInt32 blockCount;
36 deInt32* blockUsage;
42 deInt32 outBlock;
43 deInt32 outPos;
45 deInt32 inBlock;
46 deInt32 inPos;
52 deRingbuffer* deRingbuffer_create (deInt32 blockSize, deInt32 blockCount
    [all...]
deOutStream.h 38 DE_INLINE deStreamResult deOutStream_write (deOutStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten);
45 DE_INLINE deStreamResult deOutStream_write (deOutStream* stream, const void* buf, deInt32 bufSize, deInt32* numWritten)
deStreamCpyThread.c 35 deInt32 read = 0;
36 deInt32 written = 0;
43 deInt32 wrote = 0;
60 deStreamCpyThread* deStreamCpyThread_create (deInStream* input, deOutStream* output, deInt32 bufferSize)
  /external/deqp/external/openglcts/modules/common/
glcConfigList.hpp 96 AOSPConfig(ConfigType type_, int id_, deUint32 surfaceTypes_, deInt32 redBits_, deInt32 greenBits_,
97 deInt32 blueBits_, deInt32 alphaBits_, deInt32 depthBits_, deInt32 stencilBits_, deInt32 samples_)
128 deInt32 redBits;
129 deInt32 greenBits;
130 deInt32 blueBits
    [all...]
glcConfigListEGL.cpp 107 deInt32 redSize = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_RED_SIZE);
108 deInt32 greenSize = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_GREEN_SIZE);
109 deInt32 blueSize = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_BLUE_SIZE);
110 deInt32 alphaSize = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_ALPHA_SIZE);
111 deInt32 depthSize = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_DEPTH_SIZE);
112 deInt32 stencilSize = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_STENCIL_SIZE);
113 deInt32 numSamples = eglu::getConfigAttribInt(library, display, *cfgIter, EGL_SAMPLES);
  /external/deqp/framework/delibs/debase/
deMathTest.c 29 static deBool conversionToFloatLosesPrecision (deInt32 x)
43 static void testSingleInt32ToFloat (deInt32 x)
62 deInt32 u;
94 testSingleInt32ToFloat((deInt32)x);
98 testSingleInt32ToFloat((deInt32)deRandom_getUint32(&rnd));
deInt32.h 172 DE_INLINE deInt32 deSignBit32 (deInt32 a)
174 return (deInt32)((deUint32)a & 0x80000000u);
340 DE_INLINE deInt32 deAlign32 (deInt32 val, deInt32 align)
450 DE_INLINE int deLog2Floor32 (deInt32 a)
461 DE_INLINE int deLog2Ceil32 (deInt32 a)
520 DE_INLINE deInt32 deSafeMul32 (deInt32 a, deInt32 b
    [all...]
deMath.c 25 #include "deInt32.h"
138 float deInt32ToFloatRoundToNegInf (deInt32 x)
158 return (float)(deInt32)(~lostMask & (deUint32)x);
163 DE_ASSERT( (deInt32)(float)x == x );
169 const float nearestHigher = (float)-(deInt32)(~lostMask & (deUint32)-x);
174 DE_ASSERT((deInt32)(float)nearestHigher > (deInt32)(float)nearestLower);
183 float deInt32ToFloatRoundToPosInf (deInt32 x)
deString.h 42 deInt32 deVsprintf (char* string, size_t size, const char* format, va_list args);
43 deInt32 deSprintf (char* string, size_t size, const char* format, ...) DE_PRINTF_FUNC_ATTR(3, 4);
deMath.h 200 DE_INLINE float deInt32ToFloat (deInt32 x) { return (float)x; }
204 float deInt32ToFloatRoundToNegInf (deInt32 x);
208 float deInt32ToFloatRoundToPosInf (deInt32 x);
212 DE_INLINE deInt32 deChopFloatToInt32 (float x) { return (deInt32)x; }
213 DE_INLINE deInt32 deFloorFloatToInt32 (float x) { return (deInt32)(deFloatFloor(x)); }
214 DE_INLINE deInt32 deCeilFloatToInt32 (float x) { return (deInt32)(deFloatCeil(x)); }
216 DE_INLINE deInt32 deChopToInt32 (double x) { return (deInt32)x;
    [all...]
  /external/deqp/framework/opengl/simplereference/
sglrContext.hpp 156 virtual void vertexAttribI4i (deUint32 index, deInt32, deInt32, deInt32, deInt32) = DE_NULL;
159 virtual deInt32 getAttribLocation (deUint32 program, const char *name) = DE_NULL;
161 virtual void uniform1f (deInt32 index, float) = DE_NULL;
162 virtual void uniform1i (deInt32 index, deInt32) = DE_NULL;
163 virtual void uniform1fv (deInt32 index, deInt32 count, const float*) = DE_NULL
    [all...]
sglrGLContext.hpp 168 virtual void vertexAttribI4i (deUint32 index, deInt32, deInt32, deInt32, deInt32);
171 virtual deInt32 getAttribLocation (deUint32 program, const char *name);
173 virtual void uniform1f (deInt32 location, float);
174 virtual void uniform1i (deInt32 location, deInt32);
175 virtual void uniform1fv (deInt32 index, deInt32 count, const float*)
    [all...]
  /external/deqp/framework/referencerenderer/
rrGenericVector.hpp 56 deInt32 iData[4];
136 inline deInt32* GenericVec4::getAccess<deInt32> ()
142 inline const deInt32* GenericVec4::getAccess<deInt32> () const
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktSampleVerifierUtil.hpp 41 deInt32 ulp);
43 deInt32 mod (const deInt32 a,
44 const deInt32 n);
45 deInt32 mirror (const deInt32 n);
85 deInt32 wrapTexelCoord (const deInt32 coord,
vktSampleVerifierUtil.cpp 44 deInt32 mod (const deInt32 a, const deInt32 n)
46 const deInt32 result = a % n;
51 deInt32 mirror (const deInt32 n)
138 float addUlp (float num, deInt32 ulp)
189 texelGridOffset[compNdx] += (deInt32) subdivisions;
204 baseTexel[compNdx] = gridCoord[compNdx] / (deInt32) subdivisions;
205 texelGridOffset[compNdx] = gridCoord[compNdx] % (deInt32) subdivisions
    [all...]
  /external/deqp/modules/gles2/functional/
es2fApiCase.cpp 89 checkBooleans((deInt32)value, expected);
92 void ApiCase::checkBooleans (deInt32 value, deUint8 expected)
94 if (value != (deInt32)expected)
104 deInt32 numFormats;
  /external/deqp/modules/gles3/functional/
es3fApiCase.cpp 91 checkBooleans((deInt32)value, expected);
94 void ApiCase::checkBooleans (deInt32 value, deUint8 expected)
96 if (value != (deInt32)expected)
106 deInt32 numFormats;
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmComputeShaderTestUtil.hpp 68 static void fillRandomScalars (de::Random& rnd, deInt32 minValue, deInt32 maxValue, deInt32* dst, deInt32 numValues)
89 std::vector<deInt32> inputInts (m_numInputElements, 0);
97 size_t inputSize = m_numInputElements * sizeof(deInt32);
105 size_t outputSize = m_numOutputElements * sizeof(deInt32);
110 deInt32* const bytesAsInt = reinterpret_cast<deInt32*>(&bytes.front());
127 bytes.resize(m_numInputElements * sizeof(deInt32), 0xff)
    [all...]

Completed in 860 milliseconds

1 2 3 4 5 6 7 8 91011