/external/webrtc/webrtc/modules/audio_processing/agc/legacy/ |
D | analog_agc.c | 143 assert(stt->maxLevel > stt->maxAnalog); in WebRtcAgc_AddMic() 148 tmp16 = (int16_t)(stt->maxLevel - stt->maxAnalog); in WebRtcAgc_AddMic() 678 tmp32 = ((stt->maxLevel - stt->minLevel) * 51) >> 9; in WebRtcAgc_ProcessAnalog() 698 tmp32 = ((stt->maxLevel - stt->minLevel) * 51) >> 9; in WebRtcAgc_ProcessAnalog() 726 if (inMicLevelTmp > stt->maxLevel) in WebRtcAgc_ProcessAnalog() 729 stt->maxLevel = inMicLevelTmp; in WebRtcAgc_ProcessAnalog() 879 stt->maxLevel = (15 * stt->maxLevel + stt->micVol) / 16; in WebRtcAgc_ProcessAnalog() 880 stt->maxLevel = WEBRTC_SPL_MAX(stt->maxLevel, stt->maxAnalog); in WebRtcAgc_ProcessAnalog() 908 stt->maxLevel); in WebRtcAgc_ProcessAnalog() 927 stt->maxLevel = (15 * stt->maxLevel + stt->micVol) / 16; in WebRtcAgc_ProcessAnalog() [all …]
|
D | gain_control.h | 248 int32_t maxLevel,
|
D | analog_agc.h | 107 int32_t maxLevel; // Max possible vol level, incl dig gain member
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | BidiLine.java | 361 private static void reorderLine(Bidi bidi, byte minLevel, byte maxLevel) { in reorderLine() argument 364 if (maxLevel<=(minLevel|1)) { in reorderLine() 389 while (--maxLevel >= minLevel) { in reorderLine() 396 while (firstRun < runCount && levels[runs[firstRun].start] < maxLevel) { in reorderLine() 405 levels[runs[limitRun].start]>=maxLevel; ) {} in reorderLine() 528 byte maxLevel=0; in getRuns() 556 if (level > maxLevel) { in getRuns() 557 maxLevel = level; in getRuns() 582 reorderLine(bidi, minLevel, maxLevel); in getRuns() 631 byte level, minLevel, maxLevel; in prepareReorder() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | BidiLine.java | 362 private static void reorderLine(Bidi bidi, byte minLevel, byte maxLevel) { in reorderLine() argument 365 if (maxLevel<=(minLevel|1)) { in reorderLine() 390 while (--maxLevel >= minLevel) { in reorderLine() 397 while (firstRun < runCount && levels[runs[firstRun].start] < maxLevel) { in reorderLine() 406 levels[runs[limitRun].start]>=maxLevel; ) {} in reorderLine() 529 byte maxLevel=0; in getRuns() 557 if (level > maxLevel) { in getRuns() 558 maxLevel = level; in getRuns() 583 reorderLine(bidi, minLevel, maxLevel); in getRuns() 632 byte level, minLevel, maxLevel; in prepareReorder() [all …]
|
/external/skia/bench/ |
D | PictureNestingBench.cpp | 19 PictureNesting(const char* name, int maxLevel, int maxPictureLevel) in PictureNesting() argument 20 : fMaxLevel(maxLevel) in PictureNesting() 111 PictureNestingRecording(int maxLevel, int maxPictureLevel) in PictureNestingRecording() argument 112 : INHERITED("recording", maxLevel, maxPictureLevel) { in PictureNestingRecording() 138 PictureNestingPlayback(int maxLevel, int maxPictureLevel) in PictureNestingPlayback() argument 139 : INHERITED("playback", maxLevel, maxPictureLevel) { in PictureNestingPlayback()
|
/external/icu/icu4c/source/common/ |
D | ubidiln.c | 435 reorderLine(UBiDi *pBiDi, UBiDiLevel minLevel, UBiDiLevel maxLevel) { in reorderLine() argument 441 if(maxLevel<=(minLevel|1)) { in reorderLine() 461 while(--maxLevel>=minLevel) { in reorderLine() 468 while(firstRun<runCount && levels[runs[firstRun].logicalStart]<maxLevel) { in reorderLine() 476 … for(limitRun=firstRun; ++limitRun<runCount && levels[runs[limitRun].logicalStart]>=maxLevel;) {} in reorderLine() 600 UBiDiLevel minLevel=UBIDI_MAX_EXPLICIT_LEVEL+1, maxLevel=0; in ubidi_getRuns() local 631 if(level>maxLevel) { in ubidi_getRuns() 632 maxLevel=level; in ubidi_getRuns() 660 reorderLine(pBiDi, minLevel, maxLevel); in ubidi_getRuns() 714 UBiDiLevel level, minLevel, maxLevel; in prepareReorder() local [all …]
|
/external/deqp/framework/common/ |
D | tcuTexLookupVerifier.cpp | 1340 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); in isLookupResultValid() local 1342 DE_ASSERT(minLevel <= maxLevel); in isLookupResultValid() 1344 for (int level = minLevel; level <= maxLevel; level++) in isLookupResultValid() 1358 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); in isLookupResultValid() local 1360 DE_ASSERT(minLevel <= maxLevel); in isLookupResultValid() 1362 for (int level = minLevel; level <= maxLevel; level++) in isLookupResultValid() 1405 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); in isLookupResultValid() local 1407 DE_ASSERT(minLevel <= maxLevel); in isLookupResultValid() 1409 for (int level = minLevel; level <= maxLevel; level++) in isLookupResultValid() 1423 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); in isLookupResultValid() local [all …]
|
D | tcuTexture.cpp | 2134 int maxLevel = (int)numLevels-1; in sampleLevelArray1DOffset() local 2135 int level = deClamp32((int)deFloatCeil(lod + 0.5f) - 1, 0, maxLevel); in sampleLevelArray1DOffset() 2144 int maxLevel = (int)numLevels-1; in sampleLevelArray1DOffset() local 2145 int level0 = deClamp32((int)deFloatFloor(lod), 0, maxLevel); in sampleLevelArray1DOffset() 2146 int level1 = de::min(maxLevel, level0 + 1); in sampleLevelArray1DOffset() 2174 int maxLevel = (int)numLevels-1; in sampleLevelArray2DOffset() local 2175 int level = deClamp32((int)deFloatCeil(lod + 0.5f) - 1, 0, maxLevel); in sampleLevelArray2DOffset() 2184 int maxLevel = (int)numLevels-1; in sampleLevelArray2DOffset() local 2185 int level0 = deClamp32((int)deFloatFloor(lod), 0, maxLevel); in sampleLevelArray2DOffset() 2186 int level1 = de::min(maxLevel, level0 + 1); in sampleLevelArray2DOffset() [all …]
|
D | tcuTexCompareVerifier.cpp | 838 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); in isTexCompareResultValid() local 840 DE_ASSERT(minLevel <= maxLevel); in isTexCompareResultValid() 842 for (int level = minLevel; level <= maxLevel; level++) in isTexCompareResultValid() 856 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); in isTexCompareResultValid() local 858 DE_ASSERT(minLevel <= maxLevel); in isTexCompareResultValid() 860 for (int level = minLevel; level <= maxLevel; level++) in isTexCompareResultValid() 1121 const int maxLevel = de::clamp((int)deFloatFloor(maxLod), minTexLevel, maxTexLevel-1); in isTexCompareResultValid() local 1123 DE_ASSERT(minLevel <= maxLevel); in isTexCompareResultValid() 1125 for (int level = minLevel; level <= maxLevel; level++) in isTexCompareResultValid() 1139 const int maxLevel = de::clamp((int)deFloatFloor(maxLod + 0.5f), minTexLevel, maxTexLevel); in isTexCompareResultValid() local [all …]
|
/external/doclava/res/assets/templates/assets/ |
D | doclava-developer-reference.js | 28 var maxLevel = SINCE_DATA.length; 31 …userApiLevel = userApiLevel == 0 ? maxLevel : userApiLevel; // If there's no cookie (zero), use th… 42 for (var i = maxLevel-1; i >= 0; i--) { 54 var maxLevel = SINCE_DATA.length; 56 var selectedLevel = maxLevel;
|
/external/deqp/modules/gles3/functional/ |
D | es3fASTCDecompressionCases.cpp | 206 ASTCSupportLevel maxLevel = ASTCSUPPORTLEVEL_NONE; in getASTCSupportLevel() local 213 maxLevel = de::max(maxLevel, ext == "GL_KHR_texture_compression_astc_hdr" ? ASTCSUPPORTLEVEL_HDR in getASTCSupportLevel() 219 maxLevel = de::max(maxLevel, ext == "GL_KHR_texture_compression_astc_ldr" ? ASTCSUPPORTLEVEL_LDR in getASTCSupportLevel() 226 return maxLevel; in getASTCSupportLevel()
|
D | es3fTextureMipmapTests.cpp | 1700 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x82cfa4e) % numLevels; in getMaxLevel() local 1702 return maxLevel; in getMaxLevel() 1713 params.maxLevel = getMaxLevel(cellNdx); in getReferenceParams() 2015 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x974e21) % numLevels; in getMaxLevel() local 2017 return maxLevel; in getMaxLevel() 2028 params.maxLevel = getMaxLevel(cellNdx); in getReferenceParams() 2332 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x9111e7) % numLevels; in getMaxLevel() local 2334 return maxLevel; in getMaxLevel() 2345 params.maxLevel = getMaxLevel(cellNdx); in getReferenceParams()
|
D | es3fTextureUnitTests.cpp | 592 …const deInt32 maxLevel = (lodMax + epsilon < 0.5f) ? (0) : (deCeilFloatToInt32(lodMax + epsilon + … in makeSafeLods() local 597 maxLevel != minLevel) in makeSafeLods()
|
D | es3fShaderTextureFunctionTests.cpp | 1147 const int maxLevel = testSize.lod + testSize.lodBase; in testTextureSize() local 1148 const int levels = maxLevel + 1; in testTextureSize()
|
/external/deqp/modules/glshared/ |
D | glsTextureTestUtil.hpp | 324 , maxLevel (1000) in ReferenceParams() 335 , maxLevel (1000) in ReferenceParams() 344 int maxLevel; member
|
D | glsTextureTestUtil.cpp | 110 static tcu::Texture1DView getSubView (const tcu::Texture1DView& view, int baseLevel, int maxLevel) in getSubView() argument 113 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1); in getSubView() 118 static tcu::Texture2DView getSubView (const tcu::Texture2DView& view, int baseLevel, int maxLevel) in getSubView() argument 121 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1); in getSubView() 126 …tic tcu::TextureCubeView getSubView (const tcu::TextureCubeView& view, int baseLevel, int maxLevel) in getSubView() argument 129 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1); in getSubView() 139 static tcu::Texture3DView getSubView (const tcu::Texture3DView& view, int baseLevel, int maxLevel) in getSubView() argument 142 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1); in getSubView() 147 …extureCubeArrayView getSubView (const tcu::TextureCubeArrayView& view, int baseLevel, int maxLevel) in getSubView() argument 150 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1); in getSubView() [all …]
|
/external/mesa3d/src/mesa/main/ |
D | mipmap.c | 1886 GLuint maxLevel) in generate_mipmap_uncompressed() argument 1894 for (level = texObj->BaseLevel; level < maxLevel; level++) { in generate_mipmap_uncompressed() 2018 GLuint maxLevel) in generate_mipmap_compressed() argument 2079 for (level = texObj->BaseLevel; level < maxLevel; level++) { in generate_mipmap_compressed() 2168 GLint maxLevel; in _mesa_generate_mipmap() local 2174 maxLevel = _mesa_max_texture_levels(ctx, texObj->Target) - 1; in _mesa_generate_mipmap() 2175 ASSERT(maxLevel >= 0); /* bad target */ in _mesa_generate_mipmap() 2177 maxLevel = MIN2(maxLevel, texObj->MaxLevel); in _mesa_generate_mipmap() 2180 generate_mipmap_compressed(ctx, target, texObj, srcImage, maxLevel); in _mesa_generate_mipmap() 2182 generate_mipmap_uncompressed(ctx, target, texObj, srcImage, maxLevel); in _mesa_generate_mipmap()
|
D | texobj.c | 579 const GLint maxLevel = t->_MaxLevel; in _mesa_test_texobj_completeness() local 583 if (minLevel > maxLevel) { in _mesa_test_texobj_completeness() 608 if (i >= minLevel && i <= maxLevel) { in _mesa_test_texobj_completeness()
|
/external/opencv/cxcore/src/ |
D | cxdrawing.cpp | 2417 int maxLevel, int thickness, in cvDrawContours() argument 2452 if( maxLevel < 0 ) in cvDrawContours() 2456 maxLevel = -maxLevel+1; in cvDrawContours() 2471 cvInitTreeNodeIterator( &iterator, contour, maxLevel ); in cvDrawContours()
|
/external/deqp/modules/gles2/functional/ |
D | es2fTextureUnitTests.cpp | 436 …const deInt32 maxLevel = (lodMax + epsilon < 0.5f) ? (0) : (deCeilFloatToInt32(lodMax + epsilon + … in makeSafeLods() local 441 maxLevel != minLevel) in makeSafeLods()
|
/external/deqp/framework/opengl/simplereference/ |
D | sglrReferenceContext.hpp | 98 void setMaxLevel (int maxLevel) { m_maxLevel = maxLevel; } in setMaxLevel() argument
|
/external/deqp/modules/gles31/functional/ |
D | es31fCopyImageTests.cpp | 940 renderParams.maxLevel = level; in renderTexture2DView() 1102 renderParams.maxLevel = level; in renderTexture3DView() 1222 renderParams.maxLevel = level; in renderTextureCubemapView() 1401 renderParams.maxLevel = level; in renderTexture2DArrayView()
|
/external/mesa3d/src/mesa/drivers/common/ |
D | meta.c | 3242 const GLuint maxLevel = texObj->MaxLevel; in _mesa_meta_GenerateMipmap() local 3361 for (dstLevel = baseLevel + 1; dstLevel <= maxLevel; dstLevel++) { in _mesa_meta_GenerateMipmap()
|