Searched defs:maxLevel (Results 1 - 25 of 38) sorted by relevance

12

/external/skia/bench/
H A DPictureNestingBench.cpp19 PictureNesting(const char* name, int maxLevel, int maxPictureLevel) argument
20 : fMaxLevel(maxLevel)
110 PictureNestingRecording(int maxLevel, int maxPictureLevel) argument
111 : INHERITED("recording", maxLevel, maxPictureLevel) {
137 PictureNestingPlayback(int maxLevel, int maxPictureLevel) argument
138 : INHERITED("playback", maxLevel, maxPictureLevel) {
/external/skqp/bench/
H A DPictureNestingBench.cpp19 PictureNesting(const char* name, int maxLevel, int maxPictureLevel) argument
20 : fMaxLevel(maxLevel)
110 PictureNestingRecording(int maxLevel, int maxPictureLevel) argument
111 : INHERITED("recording", maxLevel, maxPictureLevel) {
137 PictureNestingPlayback(int maxLevel, int maxPictureLevel) argument
138 : INHERITED("playback", maxLevel, maxPictureLevel) {
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBidiLine.java335 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
341 * Since each run is moved but not modified, and since at the initial maxLevel
343 * don't need to do anything there and can predecrement maxLevel.
357 * However, for all maxLevel>paraLevel, this run will never be reordered
358 * and does not need to be taken into account. maxLevel==paraLevel is only reordered
364 private static void reorderLine(Bidi bidi, byte minLevel, byte maxLevel) { argument
367 if (maxLevel<=(minLevel|1)) {
392 while (--maxLevel >= minLevel) {
397 /* look for a sequence of runs that are all at >=maxLevel */
399 while (firstRun < runCount && levels[runs[firstRun].start] < maxLevel) {
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiLine.java334 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
340 * Since each run is moved but not modified, and since at the initial maxLevel
342 * don't need to do anything there and can predecrement maxLevel.
356 * However, for all maxLevel>paraLevel, this run will never be reordered
357 * and does not need to be taken into account. maxLevel==paraLevel is only reordered
363 private static void reorderLine(Bidi bidi, byte minLevel, byte maxLevel) { argument
366 if (maxLevel<=(minLevel|1)) {
391 while (--maxLevel >= minLevel) {
396 /* look for a sequence of runs that are all at >=maxLevel */
398 while (firstRun < runCount && levels[runs[firstRun].start] < maxLevel) {
[all...]
/external/mesa3d/src/mesa/drivers/common/
H A Dmeta_generate_mipmap.c153 const GLuint maxLevel = texObj->MaxLevel; local
269 _mesa_prepare_mipmap_levels(ctx, texObj, baseLevel, maxLevel);
271 for (dstLevel = baseLevel + 1; dstLevel <= maxLevel; dstLevel++) {
/external/swiftshader/third_party/LLVM/include/llvm/
H A DDefaultPasses.h116 static unsigned OptimzationFlags(unsigned minLevel=0, unsigned maxLevel=0xf, argument
119 ((maxLevel<<MaxOptimizationLevelShift) & MaxOptimizationLevelMask)
/external/deqp/framework/opengl/
H A DgluTextureTestUtil.hpp128 , maxLevel (1000)
139 , maxLevel (1000)
148 int maxLevel; member in struct:glu::TextureTestUtil::ReferenceParams
H A DgluTextureTestUtil.cpp103 static tcu::Texture1DView getSubView (const tcu::Texture1DView& view, int baseLevel, int maxLevel) argument
106 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1);
111 static tcu::Texture2DView getSubView (const tcu::Texture2DView& view, int baseLevel, int maxLevel) argument
114 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1);
119 static tcu::TextureCubeView getSubView (const tcu::TextureCubeView& view, int baseLevel, int maxLevel) argument
122 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1);
132 static tcu::Texture3DView getSubView (const tcu::Texture3DView& view, int baseLevel, int maxLevel) argument
135 const int clampedMax = de::clamp(maxLevel, clampedBase, view.getNumLevels()-1);
140 static tcu::TextureCubeArrayView getSubView (const tcu::TextureCubeArrayView& view, int baseLevel, int maxLevel) argument
143 const int clampedMax = de::clamp(maxLevel, clampedBas
[all...]
/external/icu/icu4c/source/common/
H A Dubidiln.cpp407 * Here, runCount>1 and maxLevel>=minLevel>=paraLevel.
413 * Since each run is moved but not modified, and since at the initial maxLevel
415 * don't need to do anything there and can predecrement maxLevel.
429 * However, for all maxLevel>paraLevel, this run will never be reordered
430 * and does not need to be taken into account. maxLevel==paraLevel is only reordered
437 reorderLine(UBiDi *pBiDi, UBiDiLevel minLevel, UBiDiLevel maxLevel) { argument
443 if(maxLevel<=(minLevel|1)) {
463 while(--maxLevel>=minLevel) {
468 /* look for a sequence of runs that are all at >=maxLevel */
470 while(firstRun<runCount && levels[runs[firstRun].logicalStart]<maxLevel) {
602 UBiDiLevel minLevel=UBIDI_MAX_EXPLICIT_LEVEL+1, maxLevel=0; local
716 UBiDiLevel level, minLevel, maxLevel; local
754 UBiDiLevel minLevel = 0, maxLevel = 0; local
817 UBiDiLevel minLevel = 0, maxLevel = 0; local
[all...]
/external/webrtc/webrtc/modules/audio_processing/agc/legacy/
H A Danalog_agc.h107 int32_t maxLevel; // Max possible vol level, incl dig gain member in struct:__anon30842
H A Danalog_agc.c141 /* |maxLevel| is strictly >= |micVol|, so this condition should be
143 assert(stt->maxLevel > stt->maxAnalog);
148 tmp16 = (int16_t)(stt->maxLevel - stt->maxAnalog);
678 tmp32 = ((stt->maxLevel - stt->minLevel) * 51) >> 9;
698 tmp32 = ((stt->maxLevel - stt->minLevel) * 51) >> 9;
726 if (inMicLevelTmp > stt->maxLevel)
728 // Always allow the user to raise the volume above the maxLevel.
729 stt->maxLevel = inMicLevelTmp;
879 stt->maxLevel = (15 * stt->maxLevel
1348 WebRtcAgc_Init(void *agcInst, int32_t minLevel, int32_t maxLevel, int16_t agcMode, uint32_t fs) argument
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fASTCDecompressionCases.cpp206 ASTCSupportLevel maxLevel = ASTCSUPPORTLEVEL_NONE; local
213 maxLevel = de::max(maxLevel, ext == "GL_KHR_texture_compression_astc_hdr" ? ASTCSUPPORTLEVEL_HDR
219 maxLevel = de::max(maxLevel, ext == "GL_KHR_texture_compression_astc_ldr" ? ASTCSUPPORTLEVEL_LDR
226 return maxLevel;
H A Des3fTextureMipmapTests.cpp1701 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x82cfa4e) % numLevels; local
1703 return maxLevel;
1714 params.maxLevel = getMaxLevel(cellNdx);
2016 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x974e21) % numLevels; local
2018 return maxLevel;
2029 params.maxLevel = getMaxLevel(cellNdx);
2333 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(getName()) ^ 0x9111e7) % numLevels; local
2335 return maxLevel;
2346 params.maxLevel = getMaxLevel(cellNdx);
H A Des3fTextureUnitTests.cpp593 const deInt32 maxLevel = (lodMax + epsilon < 0.5f) ? (0) : (deCeilFloatToInt32(lodMax + epsilon + 0.5f) - 1); local
598 maxLevel != minLevel)
/external/swiftshader/src/Renderer/
H A DSampler.cpp77 texture.maxLevel = 1000;
350 void Sampler::setMaxLevel(int maxLevel) argument
352 texture.maxLevel = maxLevel;
H A DSampler.hpp57 int maxLevel; member in struct:sw::Texture
193 void setMaxLevel(int maxLevel);
H A DPixelProcessor.cpp513 void PixelProcessor::setMaxLevel(unsigned int sampler, int maxLevel) argument
517 context->sampler[sampler].setMaxLevel(maxLevel);
H A DVertexProcessor.cpp668 void VertexProcessor::setMaxLevel(unsigned int sampler, int maxLevel) argument
672 context->sampler[TEXTURE_IMAGE_UNITS + sampler].setMaxLevel(maxLevel);
/external/mesa3d/src/mesa/main/
H A Dtexobj.c807 const GLint maxLevel = t->_MaxLevel; local
811 if (minLevel > maxLevel) {
812 incomplete(t, MIPMAP, "minLevel > maxLevel");
839 if (i >= minLevel && i <= maxLevel) {
H A Dmipmap.c1887 unsigned baseLevel, unsigned maxLevel)
1900 for (unsigned level = baseLevel + 1; level <= maxLevel; level++) {
1925 GLuint maxLevel)
1933 for (level = texObj->BaseLevel; level < maxLevel; level++) {
2045 GLuint maxLevel)
2120 for (level = texObj->BaseLevel; level < maxLevel; level++) {
2213 GLint maxLevel; local
2219 maxLevel = _mesa_max_texture_levels(ctx, texObj->Target) - 1;
2220 assert(maxLevel >= 0); /* bad target */
2222 maxLevel
1885 _mesa_prepare_mipmap_levels(struct gl_context *ctx, struct gl_texture_object *texObj, unsigned baseLevel, unsigned maxLevel) argument
1922 generate_mipmap_uncompressed(struct gl_context *ctx, GLenum target, struct gl_texture_object *texObj, const struct gl_texture_image *srcImage, GLuint maxLevel) argument
2042 generate_mipmap_compressed(struct gl_context *ctx, GLenum target, struct gl_texture_object *texObj, struct gl_texture_image *srcImage, GLuint maxLevel) argument
[all...]
/external/swiftshader/src/OpenGL/libGLESv2/
H A DTexture.cpp233 bool Texture::setMaxLevel(GLint maxLevel) argument
235 mMaxLevel = maxLevel;
/external/deqp/external/vulkancts/modules/vulkan/texture/
H A DvktTextureMipmapTests.cpp1004 refParams.maxLevel = deLog2Floor32(de::max(m_texWidth, m_texHeight));
1022 m_renderer.getTextureBinding(0)->updateTextureViewMipLevels(refParams.baseLevel, refParams.maxLevel);
1163 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(m_testParam.minFilterName) ^ 0x82cfa4e) % numLevels; local
1165 return maxLevel;
1170 params.maxLevel = getMaxLevel(cellNdx);
1261 refParams.maxLevel = deLog2Floor32(m_texSize);
1280 m_renderer.getTextureBinding(0)->updateTextureViewMipLevels(refParams.baseLevel, refParams.maxLevel);
1423 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(m_testParam.minFilterName) ^ 0x974e21) % numLevels; local
1425 return maxLevel;
1430 params.maxLevel
1690 const int maxLevel = (deInt32Hash(cellNdx) ^ deStringHash(m_testParam.minFilterName) ^ 0x9111e7) % numLevels; local
[all...]
H A DvktTextureTestUtil.cpp377 void TextureBinding::updateTextureViewMipLevels (deUint32 baseLevel, deUint32 maxLevel) argument
398 maxLevel-baseLevel+1, // deUint32 levelCount;
/external/deqp/modules/gles2/functional/
H A Des2fTextureUnitTests.cpp437 const deInt32 maxLevel = (lodMax + epsilon < 0.5f) ? (0) : (deCeilFloatToInt32(lodMax + epsilon + 0.5f) - 1); local
442 maxLevel != minLevel)
/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

Completed in 1012 milliseconds

12