OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:deRandom_getUint32
(Results
1 - 18
of
18
) sorted by null
/external/deqp/framework/delibs/debase/
deRandom.c
49
deUint32
deRandom_getUint32
(deRandom* rnd)
69
deUint64 x =
deRandom_getUint32
(rnd);
70
return x << 32 |
deRandom_getUint32
(rnd);
80
return (float)(
deRandom_getUint32
(rnd) & 0xFFFFFFFu) / (float)(0xFFFFFFFu+1);
102
deUint32 val =
deRandom_getUint32
(rnd);
deRandom.h
48
deUint32
deRandom_getUint32
(deRandom* rnd);
deFloat16Test.c
101
deUint32 mantissa =
deRandom_getUint32
(&rnd);
119
deUint32 exponent =
deRandom_getUint32
(&rnd);
120
deUint32 mantissa =
deRandom_getUint32
(&rnd);
163
deUint32 exponent =
deRandom_getUint32
(&rnd);
164
deUint32 mantissa =
deRandom_getUint32
(&rnd);
180
deUint32 exponent =
deRandom_getUint32
(&rnd);
181
deUint32 mantissa =
deRandom_getUint32
(&rnd);
223
deUint32 mantissa =
deRandom_getUint32
(&rnd);
240
deUint32 exponent =
deRandom_getUint32
(&rnd);
241
deUint32 mantissa =
deRandom_getUint32
(&rnd)
[
all
...]
deMathTest.c
98
testSingleInt32ToFloat((deInt32)
deRandom_getUint32
(&rnd));
deInt32Test.c
149
deUint32 val = (
deRandom_getUint32
(&rnd) & ((1u<<numBits)-1)) | (1u<<numBits);
/external/deqp/modules/gles2/functional/
es2fPrerequisiteTests.cpp
133
r = (int)(
deRandom_getUint32
(&rnd) & 0xFF);
134
g = (int)(
deRandom_getUint32
(&rnd) & 0xFF);
135
b = (int)(
deRandom_getUint32
(&rnd) & 0xFF);
136
a = (int)(
deRandom_getUint32
(&rnd) & 0xFF);
212
x =
deRandom_getUint32
(&rnd) % (targetWidth - 1);
213
y =
deRandom_getUint32
(&rnd) % (targetHeight - 1);
214
imageWidth = 1 + (
deRandom_getUint32
(&rnd) % (targetWidth - x - 1));
215
imageHeight = 1 + (
deRandom_getUint32
(&rnd) % (targetHeight - y - 1));
223
int r = (int)(
deRandom_getUint32
(&rnd) & 0xFF);
224
int g = (int)(
deRandom_getUint32
(&rnd) & 0xFF)
[
all
...]
es2fFboRenderTest.cpp
574
int x =
deRandom_getUint32
(&rnd) % xMax;
575
int y =
deRandom_getUint32
(&rnd) % yMax;
683
int cX = (int)(
deRandom_getUint32
(&rnd) & 0x7fffffff) % width;
684
int cY = (int)(
deRandom_getUint32
(&rnd) & 0x7fffffff) % height;
685
int cWidth = (int)(
deRandom_getUint32
(&rnd) & 0x7fffffff) % (width-cX);
686
int cHeight = (int)(
deRandom_getUint32
(&rnd) & 0x7fffffff) % (height-cY);
687
Vec4 color = RGBA(
deRandom_getUint32
(&rnd)).toVec();
[
all
...]
/external/deqp/modules/gles3/functional/
es3fPrerequisiteTests.cpp
133
r = (int)(
deRandom_getUint32
(&rnd) & 0xFF);
134
g = (int)(
deRandom_getUint32
(&rnd) & 0xFF);
135
b = (int)(
deRandom_getUint32
(&rnd) & 0xFF);
136
a = (int)(
deRandom_getUint32
(&rnd) & 0xFF);
212
x =
deRandom_getUint32
(&rnd) % (targetWidth - 1);
213
y =
deRandom_getUint32
(&rnd) % (targetHeight - 1);
214
imageWidth = 1 + (
deRandom_getUint32
(&rnd) % (targetWidth - x - 1));
215
imageHeight = 1 + (
deRandom_getUint32
(&rnd) % (targetHeight - y - 1));
223
int r = (int)(
deRandom_getUint32
(&rnd) & 0xFF);
224
int g = (int)(
deRandom_getUint32
(&rnd) & 0xFF)
[
all
...]
es3fFboRenderTest.cpp
438
int x =
deRandom_getUint32
(&rnd) % xMax;
439
int y =
deRandom_getUint32
(&rnd) % yMax;
[
all
...]
/external/deqp/framework/delibs/decpp/
deRandom.hpp
53
deUint32 getUint32 (void) { return
deRandom_getUint32
(&m_rnd); }
54
deUint16 getUint16 (void) { return (deUint16)
deRandom_getUint32
(&m_rnd); }
55
deUint8 getUint8 (void) { return (deUint8)
deRandom_getUint32
(&m_rnd); }
/external/deqp/framework/delibs/deutil/
deTimerTest.c
57
int interval = minInterval + (int)(
deRandom_getUint32
(&rnd) % (deUint32)(maxInterval-minInterval+1));
/external/deqp/external/vulkancts/modules/vulkan/api/
vktApiMemoryRequirementInvarianceTests.cpp
91
m_size = (
deRandom_getUint32
(&random) % 1024) + 7;
93
m_usage = 1 << (
deRandom_getUint32
(&random) % 9);
95
m_memoryType = memoryTypes[
deRandom_getUint32
(&random) % memoryTypes.size()];
172
m_colorFormat = (VkFormat)linearformats[
deRandom_getUint32
(&random) % linearformats.size()];
174
m_colorFormat = (VkFormat)optimalformats[
deRandom_getUint32
(&random) % optimalformats.size()];
180
m_size = tcu::IVec2((
deRandom_getUint32
(&random) % 16 + 3) & ~(widthAlignment - 1),
181
(
deRandom_getUint32
(&random) % 16 + 3) & ~(heightAlignment - 1));
183
m_memoryType = memoryTypes[
deRandom_getUint32
(&random) % memoryTypes.size()];
597
int a =
deRandom_getUint32
(&m_random) % testCycles;
598
int b =
deRandom_getUint32
(&m_random) % testCycles
[
all
...]
/external/deqp/framework/delibs/depool/
deMemPool.c
177
if ((
deRandom_getUint32
(&parent->failRandom) & 16383) <= 15)
210
deRandom_init(&pool->failRandom, parent ?
deRandom_getUint32
(&parent->failRandom) : 0x1234abcd);
433
if ((
deRandom_getUint32
(&pool->failRandom) & 16383) <= 15)
/external/deqp/modules/glshared/
glsVertexArrayTests.cpp
237
return GLValue::Short::create((min == max ? min : (deInt16)(min + (
deRandom_getUint32
(&rnd) % (max.to<int>() - min.to<int>())))));
246
return GLValue::Ushort::create((min == max ? min : (deUint16)(min + (
deRandom_getUint32
(&rnd) % (max.to<int>() - min.to<int>())))));
255
return GLValue::Byte::create((min == max ? min : (deInt8)(min + (
deRandom_getUint32
(&rnd) % (max.to<int>() - min.to<int>())))));
264
return GLValue::Ubyte::create((min == max ? min : (deUint8)(min + (
deRandom_getUint32
(&rnd) % (max.to<int>() - min.to<int>())))));
273
return GLValue::Fixed::create((min == max ? min : min + (
deRandom_getUint32
(&rnd) % (max.to<deUint32>() - min.to<deUint32>()))));
294
return GLValue::Int::create((min == max ? min : min + (
deRandom_getUint32
(&rnd) % (max.to<deUint32>() - min.to<deUint32>()))));
303
return GLValue::Uint::create((min == max ? min : min + (
deRandom_getUint32
(&rnd) % (max.to<deUint32>() - min.to<deUint32>()))));
[
all
...]
glsDrawTest.cpp
693
return GLValue::Short::create((min == max ? min : (deInt16)(min + (
deRandom_getUint32
(&rnd) % (max.to<int>() - min.to<int>())))));
702
return GLValue::Ushort::create((min == max ? min : (deUint16)(min + (
deRandom_getUint32
(&rnd) % (max.to<int>() - min.to<int>())))));
711
return GLValue::Byte::create((min == max ? min : (deInt8)(min + (
deRandom_getUint32
(&rnd) % (max.to<int>() - min.to<int>())))));
720
return GLValue::Ubyte::create((min == max ? min : (deUint8)(min + (
deRandom_getUint32
(&rnd) % (max.to<int>() - min.to<int>())))));
729
return GLValue::Fixed::create((min == max ? min : min + (
deRandom_getUint32
(&rnd) % (max.to<deUint32>() - min.to<deUint32>()))));
750
return GLValue::Int::create((min == max ? min : min + (
deRandom_getUint32
(&rnd) % (max.to<deUint32>() - min.to<deUint32>()))));
759
return GLValue::Uint::create((min == max ? min : min + (
deRandom_getUint32
(&rnd) % (max.to<deUint32>() - min.to<deUint32>()))));
[
all
...]
/external/deqp/execserver/tools/
xsTest.cpp
989
((deUint32*)data)[ndx] =
deRandom_getUint32
(&rnd);
998
int blockSize = 1 +
deRandom_getUint32
(&rnd) % (dataSize-curPos);
1016
int numToRead = 1 +
deRandom_getUint32
(&rnd) % deMin(dataSize-curPos, DE_LENGTH_OF_ARRAY(block));
/external/deqp/framework/delibs/dethread/
deThreadTest.c
386
val =
deRandom_getUint32
(&random);
/external/deqp/external/vulkancts/modules/vulkan/binding_model/
vktBindingDescriptorSetRandomTests.cpp
299
return (
deRandom_getUint32
(rnd) % (max - min + 1)) + min;
[
all
...]
Completed in 702 milliseconds