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

1 2 3 4

  /external/deqp/framework/delibs/decpp/
deArrayUtil.hpp 36 DE_ASSERT(inBounds(offset, 0, Size));
44 DE_ASSERT(inBounds(offset, 0, Size));
deDefs.hpp 48 template<typename T> inline bool inBounds (T x, T a, T b) { return a <= x && x < b; }
deRingBuffer.hpp 153 DE_ASSERT(de::inBounds(offset, 0, getNumElements()));
deThreadSafeRingBuffer.cpp 77 DE_TEST_ASSERT(de::inBounds<int>(threadId, 0, (int)m_lastPayload.size()));
deBlockBuffer.cpp 101 DE_TEST_ASSERT(de::inBounds<int>(threadId, 0, (int)m_lastPayload.size()));
  /external/deqp/framework/common/
tcuSurface.hpp 72 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
89 DE_ASSERT(de::inBounds(x, 0, m_width) && de::inBounds(y, 0, m_height));
tcuTexture.cpp 610 DE_ASSERT(de::inBounds(x, 0, m_size.x()));
611 DE_ASSERT(de::inBounds(y, 0, m_size.y()));
612 DE_ASSERT(de::inBounds(z, 0, m_size.z()));
707 DE_ASSERT(de::inBounds(x, 0, m_size.x()));
708 DE_ASSERT(de::inBounds(y, 0, m_size.y()));
709 DE_ASSERT(de::inBounds(z, 0, m_size.z()));
811 DE_ASSERT(de::inBounds(x, 0, getWidth()));
812 DE_ASSERT(de::inBounds(y, 0, getHeight()));
813 DE_ASSERT(de::inBounds(z, 0, getDepth()));
850 DE_ASSERT(de::inBounds(x, 0, getWidth()))
    [all...]
tcuBilinearImageCompare.cpp 179 if (!de::inBounds(u, 0, (reference.getWidth()-1)<<NUM_SUBPIXEL_BITS) ||
180 !de::inBounds(v, 0, (reference.getHeight()-1)<<NUM_SUBPIXEL_BITS))
tcuTexture.hpp 475 const ConstPixelBufferAccess& getLevel (int ndx) const { DE_ASSERT(de::inBounds(ndx, 0, m_numLevels)); return m_levels[ndx]; }
526 const ConstPixelBufferAccess& getLevel (int ndx) const { DE_ASSERT(de::inBounds(ndx, 0, m_numLevels)); return m_levels[ndx]; }
738 const ConstPixelBufferAccess& getLevelFace (int ndx, CubeFace face) const { DE_ASSERT(de::inBounds(ndx, 0, m_numLevels)); return m_levels[face][ndx]; }
824 const ConstPixelBufferAccess& getLevel (int ndx) const { DE_ASSERT(de::inBounds(ndx, 0, m_numLevels)); return m_levels[ndx]; }
    [all...]
  /external/llvm/lib/IR/
ConstantFold.h 50 Constant *ConstantFoldGetElementPtr(Constant *C, bool inBounds,
52 Constant *ConstantFoldGetElementPtr(Constant *C, bool inBounds,
  /external/deqp/framework/referencerenderer/
rrRasterizer.hpp 48 DE_ASSERT(de::inRange(numSamples, 1, maxSamples) && de::inBounds(x, 0, 2) && de::inBounds(y, 0, 2));
55 DE_ASSERT(de::inBounds(x, 0, 2) && de::inBounds(y, 0, 2));
  /external/deqp/framework/randomshaders/
rsgVariableValue.hpp 106 float asFloat (int ndx) const { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return m_value[ndx].floatVal; }
107 int asInt (int ndx) const { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return m_value[ndx].intVal; }
108 bool asBool (int ndx) const { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return m_value[ndx].boolVal; }
109 Scalar asScalar (int ndx) const { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return m_value[ndx]; }
112 T as (int ndx) const { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return this->m_value[ndx].template as<T>(); }
139 float& asFloat (int ndx) { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return this->m_value[ndx].floatVal; }
140 int& asInt (int ndx) { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return this->m_value[ndx].intVal; }
141 bool& asBool (int ndx) { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return this->m_value[ndx].boolVal; }
142 Scalar& asScalar (int ndx) { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return this->m_value[ndx]; }
145 T& as (int ndx) { DE_ASSERT(de::inBounds(ndx, 0, Stride)); return this->m_value[ndx].template as<T>();
    [all...]
rsgPrettyPrinter.cpp 125 DE_ASSERT(de::inBounds<int>(token, 0, (int)DE_LENGTH_OF_ARRAY(s_tokenStr)));
  /external/deqp/framework/opengl/
gluVarTypeUtil.cpp 137 TCU_CHECK(de::inBounds(ndx, 0, curType.getArraySize()));
142 TCU_CHECK(de::inBounds(ndx, 0, getDataTypeMatrixNumColumns(curType.getBasicType())));
147 TCU_CHECK(de::inBounds(ndx, 0, getDataTypeScalarSize(curType.getBasicType())));
gluShaderProgram.cpp 399 DE_ASSERT(de::inBounds<int>(shaderType, 0, DE_LENGTH_OF_ARRAY(s_typeMap)));
415 DE_ASSERT(de::inBounds<int>(shaderType, 0, DE_LENGTH_OF_ARRAY(s_typebitMap)));
431 DE_ASSERT(de::inBounds<int>(shaderType, 0, DE_LENGTH_OF_ARRAY(s_typeMap)));
gluVarTypeUtil.hpp 323 if (!curType->isStructType() || !de::inBounds(pathIter->index, 0, curType->getStructPtr()->getNumMembers()))
330 if (!curType->isArrayType() || (curType->getArraySize() != VarType::UNSIZED_ARRAY && !de::inBounds(pathIter->index, 0, curType->getArraySize())))
  /external/llvm/include/llvm/ADT/
IndexedMap.h 74 bool inBounds(IndexT n) const {
  /external/deqp/modules/gles2/functional/
es2fColorClearTest.cpp 178 if (de::inBounds(y, op.m_rect.y(), op.m_rect.y()+op.m_rect.w()))
194 if (de::inBounds(x, op.m_rect.x(), op.m_rect.x()+op.m_rect.z()) &&
195 de::inBounds(y, op.m_rect.y(), op.m_rect.y()+op.m_rect.w()))
  /external/deqp/modules/gles3/functional/
es3fColorClearTest.cpp 178 if (de::inBounds(y, op.m_rect.y(), op.m_rect.y()+op.m_rect.w()))
194 if (de::inBounds(x, op.m_rect.x(), op.m_rect.x()+op.m_rect.z()) &&
195 de::inBounds(y, op.m_rect.y(), op.m_rect.y()+op.m_rect.w()))
es3fBufferCopyTests.cpp 75 DE_ASSERT(de::inBounds(m_copySrcOffset, 0, m_srcSize) && de::inRange(m_copySrcOffset+m_copySize, m_copySrcOffset, m_srcSize));
76 DE_ASSERT(de::inBounds(m_copyDstOffset, 0, m_dstSize) && de::inRange(m_copyDstOffset+m_copySize, m_copyDstOffset, m_dstSize));
  /external/deqp/modules/glshared/
glsShaderPerformanceMeasurer.cpp 157 DE_ASSERT(de::inBounds(m_gridSizeX, 1, 256) && de::inBounds(m_gridSizeY, 1, 256));
342 DE_ASSERT(de::inBounds(gridW, 1, 256) && de::inBounds(gridH, 1, 256));
  /external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 165 if (!LiveOutRegInfo.inBounds(Reg))
LiveIntervalAnalysis.h 122 return VirtRegIntervals.inBounds(Reg) && VirtRegIntervals[Reg];
  /external/deqp/executor/
xeContainerFormatParser.cpp 111 DE_ASSERT(de::inBounds(offset, 0, m_elementLen) && numBytes > 0 && de::inRange(numBytes+offset, 0, m_elementLen));
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java     [all...]

Completed in 910 milliseconds

1 2 3 4