Searched defs:maxLevel (Results 1 - 20 of 20) sorted by path

/external/deqp/framework/common/
H A DtcuTexLookupVerifier.cpp1281 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
1283 DE_ASSERT(minLevel <= maxLevel);
1285 for (int level = minLevel; level <= maxLevel; level++)
1299 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); local
1301 DE_ASSERT(minLevel <= maxLevel);
1303 for (int level = minLevel; level <= maxLevel; level++)
1346 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
1348 DE_ASSERT(minLevel <= maxLevel);
1350 for (int level = minLevel; level <= maxLevel; level++)
1364 const int maxLevel local
1639 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
1663 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); local
1732 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
1750 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); local
1802 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
1820 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); local
1896 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
1914 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); local
1991 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); local
2015 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); local
[all...]
H A DtcuTexture.cpp1738 int maxLevel = (int)numLevels-1; local
1739 int level = deClamp32((int)deFloatCeil(lod + 0.5f) - 1, 0, maxLevel);
1748 int maxLevel = (int)numLevels-1; local
1749 int level0 = deClamp32((int)deFloatFloor(lod), 0, maxLevel);
1750 int level1 = de::min(maxLevel, level0 + 1);
1778 int maxLevel = (int)numLevels-1; local
1779 int level = deClamp32((int)deFloatCeil(lod + 0.5f) - 1, 0, maxLevel);
1788 int maxLevel = (int)numLevels-1; local
1789 int level0 = deClamp32((int)deFloatFloor(lod), 0, maxLevel);
1790 int level1 = de::min(maxLevel, level
1818 int maxLevel = (int)numLevels-1; local
1828 int maxLevel = (int)numLevels-1; local
1858 int maxLevel = (int)numLevels-1; local
1868 int maxLevel = (int)numLevels-1; local
1898 int maxLevel = (int)numLevels-1; local
1908 int maxLevel = (int)numLevels-1; local
[all...]
/external/deqp/framework/opengl/simplereference/
H A DsglrReferenceContext.hpp98 void setMaxLevel (int maxLevel) { m_maxLevel = maxLevel; } argument
/external/deqp/modules/gles2/functional/
H A Des2fTextureUnitTests.cpp436 const deInt32 maxLevel = (lodMax + epsilon < 0.5f) ? (0) : (deCeilFloatToInt32(lodMax + epsilon + 0.5f) - 1); local
441 maxLevel != minLevel)
/external/deqp/modules/gles3/functional/
H A Des3fShaderTextureFunctionTests.cpp1210 const int maxLevel = testSize.lod + testSize.lodBase; local
1211 const int levels = maxLevel + 1;
H A Des3fTextureMipmapTests.cpp1700 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x82cfa4e) % numLevels; local
1702 return maxLevel;
1713 params.maxLevel = getMaxLevel(cellNdx);
2015 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x974e21) % numLevels; local
2017 return maxLevel;
2028 params.maxLevel = getMaxLevel(cellNdx);
2332 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x9111e7) % numLevels; local
2334 return maxLevel;
2345 params.maxLevel = getMaxLevel(cellNdx);
H A Des3fTextureUnitTests.cpp592 const deInt32 maxLevel = (lodMax + epsilon < 0.5f) ? (0) : (deCeilFloatToInt32(lodMax + epsilon + 0.5f) - 1); local
597 maxLevel != minLevel)
/external/deqp/modules/glshared/
H A DglsTextureTestUtil.cpp110 static tcu::Texture1DView getSubView (const tcu::Texture1DView& view, int baseLevel, int maxLevel) argument
113 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1);
118 static tcu::Texture2DView getSubView (const tcu::Texture2DView& view, int baseLevel, int maxLevel) argument
121 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1);
126 static tcu::TextureCubeView getSubView (const tcu::TextureCubeView& view, int baseLevel, int maxLevel) argument
129 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1);
139 static tcu::Texture3DView getSubView (const tcu::Texture3DView& view, int baseLevel, int maxLevel) argument
142 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1);
147 static tcu::TextureCubeArrayView getSubView (const tcu::TextureCubeArrayView& view, int baseLevel, int maxLevel) argument
150 const int clampedMax = de::clamp(maxLevel, clampedBas
[all...]
H A DglsTextureTestUtil.hpp334 , maxLevel (1000)
345 , maxLevel (1000)
354 int maxLevel; member in struct:deqp::gls::TextureTestUtil::ReferenceParams
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/icu/icu4c/source/common/
H A Dubidiln.c409 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
415 * Since each run is moved but not modified, and since at the initial maxLevel
417 * don't need to do anything there and can predecrement maxLevel.
431 * However, for all maxLevel>paraLevel, this run will never be reordered
432 * and does not need to be taken into account. maxLevel==paraLevel is only reordered
439 reorderLine(UBiDi *pBiDi, UBiDiLevel minLevel, UBiDiLevel maxLevel) { argument
445 if(maxLevel<=(minLevel|1)) {
465 while(--maxLevel>=minLevel) {
470 /* look for a sequence of runs that are all at >=maxLevel */
472 while(firstRun<runCount && levels[runs[firstRun].logicalStart]<maxLevel) {
604 UBiDiLevel minLevel=UBIDI_MAX_EXPLICIT_LEVEL+1, maxLevel=0; local
718 UBiDiLevel level, minLevel, maxLevel; local
756 UBiDiLevel minLevel = 0, maxLevel = 0; local
819 UBiDiLevel minLevel = 0, maxLevel = 0; local
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiLine.java332 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
338 * Since each run is moved but not modified, and since at the initial maxLevel
340 * don't need to do anything there and can predecrement maxLevel.
354 * However, for all maxLevel>paraLevel, this run will never be reordered
355 * and does not need to be taken into account. maxLevel==paraLevel is only reordered
361 private static void reorderLine(Bidi bidi, byte minLevel, byte maxLevel) { argument
364 if (maxLevel<=(minLevel|1)) {
389 while (--maxLevel >= minLevel) {
394 /* look for a sequence of runs that are all at >=maxLevel */
396 while (firstRun < runCount && levels[runs[firstRun].start] < maxLevel) {
[all...]
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta.c3242 const GLuint maxLevel = texObj->MaxLevel; local
3361 for (dstLevel = baseLevel + 1; dstLevel <= maxLevel; dstLevel++) {
/external/mesa3d/src/mesa/main/
H A Dmipmap.c1886 GLuint maxLevel)
1894 for (level = texObj->BaseLevel; level < maxLevel; level++) {
2018 GLuint maxLevel)
2079 for (level = texObj->BaseLevel; level < maxLevel; level++) {
2168 GLint maxLevel; local
2174 maxLevel = _mesa_max_texture_levels(ctx, texObj->Target) - 1;
2175 ASSERT(maxLevel >= 0); /* bad target */
2177 maxLevel = MIN2(maxLevel, texObj->MaxLevel);
2180 generate_mipmap_compressed(ctx, target, texObj, srcImage, maxLevel);
1883 generate_mipmap_uncompressed(struct gl_context *ctx, GLenum target, struct gl_texture_object *texObj, const struct gl_texture_image *srcImage, GLuint maxLevel) argument
2015 generate_mipmap_compressed(struct gl_context *ctx, GLenum target, struct gl_texture_object *texObj, struct gl_texture_image *srcImage, GLuint maxLevel) argument
[all...]
H A Dtexobj.c579 const GLint maxLevel = t->_MaxLevel; local
583 if (minLevel > maxLevel) {
584 incomplete(t, BASE, "minLevel > maxLevel");
608 if (i >= minLevel && i <= maxLevel) {
/external/opencv/cxcore/src/
H A Dcxdrawing.cpp2417 int maxLevel, int thickness,
2452 if( maxLevel < 0 )
2456 maxLevel = -maxLevel+1;
2471 cvInitTreeNodeIterator( &iterator, contour, maxLevel );
2415 cvDrawContours( void* img, CvSeq* contour, CvScalar externalColor, CvScalar holeColor, int maxLevel, int thickness, int line_type, CvPoint offset ) argument
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/skia/bench/
H A DPictureNestingBench.cpp19 PictureNesting(const char* name, int maxLevel, int maxPictureLevel) argument
20 : fMaxLevel(maxLevel)
111 PictureNestingRecording(int maxLevel, int maxPictureLevel) argument
112 : INHERITED("recording", maxLevel, maxPictureLevel) {
138 PictureNestingPlayback(int maxLevel, int maxPictureLevel) argument
139 : INHERITED("playback", maxLevel, maxPictureLevel) {
/external/webrtc/src/modules/audio_processing/agc/
H A Danalog_agc.c203 /* |maxLevel| is strictly >= |micVol|, so this condition should be
205 assert(stt->maxLevel > stt->maxAnalog);
210 tmp16 = (WebRtc_Word16)(stt->maxLevel - stt->maxAnalog);
790 tmp32 = WEBRTC_SPL_RSHIFT_W32((stt->maxLevel - stt->minLevel) * (WebRtc_Word32)51, 9);
810 tmp32 = WEBRTC_SPL_RSHIFT_W32((stt->maxLevel - stt->minLevel) * (WebRtc_Word32)51, 9);
831 if (inMicLevelTmp > stt->maxLevel)
833 // Always allow the user to raise the volume above the maxLevel.
834 stt->maxLevel = inMicLevelTmp;
981 * stt->maxLevel = (15 * stt->maxLevel
1526 WebRtcAgc_Init(void *agcInst, WebRtc_Word32 minLevel, WebRtc_Word32 maxLevel, WebRtc_Word16 agcMode, WebRtc_UWord32 fs) argument
[all...]
H A Danalog_agc.h108 WebRtc_Word32 maxLevel; // Max possible vol level, incl dig gain member in struct:__anon17080

Completed in 633 milliseconds