HomeSort by relevance Sort by last modified time
    Searched refs:deInt32 (Results 26 - 50 of 176) sorted by null

12 3 4 5 6 7 8

  /external/deqp/framework/delibs/decpp/
deSpinBarrier.cpp 27 #include "deInt32.h"
34 SpinBarrier::SpinBarrier (deInt32 numThreads)
60 inline SpinBarrier::WaitMode getWaitMode (SpinBarrier::WaitMode requested, deUint32 numCores, deInt32 numThreads)
78 const deInt32 cachedNumThreads = m_numThreads;
129 const deInt32 cachedNumThreads = m_numThreads;
175 TestThread (SpinBarrier& barrier, volatile deInt32* sharedVar, int numThreads, int threadNdx)
215 volatile deInt32* const m_sharedVar;
237 volatile deInt32 sharedVar = 0;
287 de::Random rnd (deInt32Hash(m_numThreads) ^ deInt32Hash(m_threadNdx) ^ deInt32Hash((deInt32)m_waitMode));
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageAtomicOperationTests.cpp 170 static deInt32 getOperationInitialValue (const AtomicOperation op)
188 static deInt32 getAtomicFuncArgument (const AtomicOperation op, const IVec3& invocationID, const IVec3& gridSize)
224 static deInt32 computeBinaryAtomicOperationResult (const AtomicOperation op, const deInt32 a, const deInt32 b)
663 for (deInt32 z = 0; z < resultBuffer.getDepth(); z++)
664 for (deInt32 y = 0; y < resultBuffer.getHeight(); y++)
665 for (deInt32 x = 0; x < resultBuffer.getWidth(); x++)
667 deInt32 resultValue = resultBuffer.getPixelInt(x, y, z).x();
671 deInt32 reference = getOperationInitialValue(m_operation)
    [all...]
vktImageQualifiersTests.cpp 61 static const deInt32 g_ShaderReadOffsetsX[4] = { 1, 4, 7, 10 };
62 static const deInt32 g_ShaderReadOffsetsY[4] = { 2, 5, 8, 11 };
63 static const deInt32 g_ShaderReadOffsetsZ[4] = { 3, 6, 9, 12 };
429 for (deInt32 z = 0; z < baseAccess.getDepth(); ++z)
430 for (deInt32 y = 0; y < baseAccess.getHeight(); ++y)
431 for (deInt32 x = 0; x < baseAccess.getWidth(); ++x)
438 for (deInt32 z = 0; z < referenceAccess.getDepth(); ++z)
439 for (deInt32 y = 0; y < referenceAccess.getHeight(); ++y)
440 for (deInt32 x = 0; x < referenceAccess.getWidth(); ++x)
442 const deInt32 groupBaseX = x / localWorkGroupSize.x() * localWorkGroupSize.x()
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateVPTests.cpp 155 const deInt32 frameWidth = referenceFrame.getWidth();
156 const deInt32 frameHeight = referenceFrame.getHeight();
202 const deInt32 frameWidth = referenceFrame.getWidth();
203 const deInt32 frameHeight = referenceFrame.getHeight();
291 const deInt32 quarterWidth = WIDTH / 4;
292 const deInt32 quarterHeight = HEIGHT / 4;
305 { { (deInt32)halfWidth, quarterHeight }, { quarterWidth, quarterHeight } },
306 { { (deInt32)halfWidth, (deInt32)halfHeight }, { quarterWidth, quarterHeight } },
307 { { quarterWidth, (deInt32)halfHeight }, { quarterWidth, quarterHeight } }
    [all...]
  /external/deqp/framework/common/
tcuRandomValueIterator.hpp 54 template <> inline deInt32 getRandomValue<deInt32> (de::Random& rnd) { return (deInt32)rnd.getUint32(); }
tcuTexVerifierUtil.hpp 40 inline Vector<float, Size> computeFloatingPointError (const Vector<float, Size>& value, const Vector<deInt32, Size>& numAccurateBits)
49 inline Vector<float, Size> computeFixedPointError (const Vector<deInt32, Size>& numAccurateBits)
tcuAstcUtil.cpp 91 inline deInt32 signExtend (deInt32 src, int numSrcBits)
766 inline void bitTransferSigned (deInt32& a, deInt32& b)
810 deInt32 red = (deInt32)getBits(v0, 0, 5);
811 deInt32 green = (deInt32)getBits(v1, 0, 4);
812 deInt32 blue = (deInt32)getBits(v2, 0, 4)
    [all...]
tcuSeedBuilder.hpp 57 SeedBuilder& operator<< (SeedBuilder& builder, deInt32 value);
  /external/deqp/framework/delibs/debase/
deMath.h 199 DE_INLINE float deInt32ToFloat (deInt32 x) { return (float)x; }
203 float deInt32ToFloatRoundToNegInf (deInt32 x);
207 float deInt32ToFloatRoundToPosInf (deInt32 x);
211 DE_INLINE deInt32 deChopFloatToInt32 (float x) { return (deInt32)x; }
212 DE_INLINE deInt32 deFloorFloatToInt32 (float x) { return (deInt32)(deFloatFloor(x)); }
213 DE_INLINE deInt32 deCeilFloatToInt32 (float x) { return (deInt32)(deFloatCeil(x)); }
217 DE_INLINE deInt32 deRoundFloatToInt32 (float x) { if(x >= 0.0f) return (deInt32)(x + 0.5f); else return (deInt32) (…)
    [all...]
  /external/deqp/framework/opengl/simplereference/
sglrReferenceContext.hpp 719 virtual void vertexAttribI4i (deUint32 index, deInt32, deInt32, deInt32, deInt32);
722 virtual deInt32 getAttribLocation (deUint32 program, const char *name);
724 virtual void uniform1f (deInt32 location, float);
725 virtual void uniform1i (deInt32 location, deInt32);
726 virtual void uniform1fv (deInt32 index, deInt32 count, const float*)
    [all...]
sglrGLContext.cpp 701 void GLContext::vertexAttribI4i (deUint32 index, deInt32 x, deInt32 y, deInt32 z, deInt32 w)
711 deInt32 GLContext::getAttribLocation (deUint32 program, const char *name)
716 void GLContext::uniform1f (deInt32 location, float v0)
721 void GLContext::uniform1i (deInt32 location, deInt32 v0)
726 void GLContext::uniform1fv (deInt32 location, deInt32 count, const float* value
    [all...]
sglrContextUtil.cpp 64 deInt32 posLoc = ctx.getAttribLocation(program, "a_position");
65 deInt32 coordLoc = ctx.getAttribLocation(program, "a_coord");
134 deInt32 posLoc = ctx.getAttribLocation(program, "a_position");
135 deInt32 coordLoc = ctx.getAttribLocation(program, "a_coord");
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineClearUtil.cpp 52 const tcu::IVec4 result ((deInt32)deFloatRound(color.x()), (deInt32)deFloatRound(color.y()),
53 (deInt32)deFloatRound(color.z()), (deInt32)deFloatRound(color.w()));
  /external/deqp/modules/gles2/functional/
es2fApiCase.hpp 53 void checkBooleans (deInt32 value, deUint8 expected);
  /external/deqp/modules/gles3/functional/
es3fApiCase.hpp 53 void checkBooleans (deInt32 value, deUint8 expected);
es3fInstancedRenderingTests.cpp 75 deInt32 i32;
79 VarComp(deInt32 v) : i32(v) {}
168 vec.push_back(VarComp((deInt32)(val*FLOAT_INT_SCALE + FLOAT_INT_BIAS)));
586 deInt32 intR = (deInt32)(r*FLOAT_INT_SCALE + FLOAT_INT_BIAS);
587 deInt32 intG = (deInt32)(g*FLOAT_INT_SCALE + FLOAT_INT_BIAS);
588 deInt32 intB = (deInt32)(b*FLOAT_INT_SCALE + FLOAT_INT_BIAS);
595 deUint32 uintR = (deInt32)(r*FLOAT_UINT_SCALE + FLOAT_UINT_BIAS)
    [all...]
  /external/deqp/framework/egl/wrapper/
eglwTypes.inl 45 typedef deInt32 EGLint;
  /external/deqp/modules/gles31/functional/
es31fMultisampleShaderRenderCase.hpp 112 deInt32 m_numTargetSamples;
126 deInt32 m_renderCount;
es31fShaderIntegerFunctionTests.cpp 32 #include "deInt32.h"
96 case glu::TYPE_INT: str << ((const deInt32*)varValue.value)[compNdx]; break;
124 return deUint32(0 - deInt32((integer & (1 << (integerLength - 1))) << 1)) | integer;
677 in0[valueNdx*scalarSize + compNdx] = (deInt32)easyCases[easyCaseNdx].x;
678 in1[valueNdx*scalarSize + compNdx] = (deInt32)easyCases[easyCaseNdx].y;
688 const deInt32 base0 = (deInt32)rnd.getUint32();
689 const deInt32 base1 = (deInt32)rnd.getUint32();
707 const deInt32 in0 = ((const deInt32*)inputs[0])[compNdx]
    [all...]
  /external/deqp/framework/opengl/
gluProgramInterfaceQuery.hpp 66 deInt32 arrayStride; //!< GL_ARRAY_STRIDE
67 deInt32 matrixStride; //!< GL_MATRIX_STRIDE
69 deInt32 topLevelArrayStride; //!< GL_TOP_LEVEL_ARRAY_STRIDE - set only for GL_BUFFER_VARIABLEs
  /external/deqp/framework/platform/android/
tcuAndroidInternals.hpp 74 typedef deInt32 status_t;
94 typedef deInt32 PixelFormat;
tcuAndroidInternals.cpp 140 static deInt32 getExpectedNativeBufferVersion (void)
160 return *pointerToOffset<deInt32>(base, 4);
213 const deInt32 version = getNativeBaseVersion(base);
214 const deInt32 expectedVersion = getExpectedNativeBufferVersion();
  /external/deqp/framework/delibs/dethread/
deThreadTest.c 38 deInt32 val = *((deInt32*)arg);
94 deInt32 val = 123;
108 deInt32 ret;
185 deInt32 counter;
186 deInt32 counter2;
187 deInt32 maxVal;
193 deInt32 numIncremented = 0;
197 deInt32 localCounter;
408 deInt32 val
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderIntegerFunctionTests.cpp 34 #include "deInt32.h"
98 case glu::TYPE_INT: str << ((const deInt32*)varValue.value)[compNdx]; break;
126 return deUint32(0 - deInt32((integer & (1 << (integerLength - 1))) << 1)) | integer;
248 static int findMSB (deInt32 value)
271 static deInt32 toPrecision (deInt32 value, int numIntegerBits)
273 return (deInt32)extendSignTo32((deUint32)value & getLowBitMask(numIntegerBits), numIntegerBits);
825 in0[valueNdx*scalarSize + compNdx] = (deInt32)easyCases[easyCaseNdx].x;
826 in1[valueNdx*scalarSize + compNdx] = (deInt32)easyCases[easyCaseNdx].y;
836 const deInt32 base0 = (deInt32)rnd.getUint32()
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmComputeShaderTestUtil.hpp 77 typedef Buffer<deInt32> Int32Buffer;

Completed in 1152 milliseconds

12 3 4 5 6 7 8