HomeSort by relevance Sort by last modified time
    Searched refs:levels (Results 101 - 125 of 321) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/mesa3d/include/GLES2/
gl2ext.h     [all...]
  /frameworks/base/media/jni/
android_media_MediaProfiles.cpp 286 Vector<int> levels = sProfiles->getImageEncodingQualityLevels(cameraId); local
287 if (index < 0 || index >= levels.size()) {
291 return static_cast<jint>(levels[index]);
  /frameworks/native/opengl/include/GLES/
glext.h     [all...]
  /frameworks/native/opengl/include/GLES2/
gl2ext.h     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Extensions3D.h 299 void texStorage2DEXT(unsigned target, int levels, unsigned internalformat, int width, int height);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_tex_copy.c 131 timg->mt->levels[level].rowstride / dst_bpp,
radeon_texture.c 169 lvl = &image->mt->levels[image->base.Base.Level];
252 radeon_mipmap_level *lvl = &image->mt->levels[texImage->Level];
723 lvl = &image->mt->levels[level];
733 for (i = 0; i < mt->levels[level].depth; i++)
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
swrast.h 279 GLsizei levels, GLsizei width,
  /external/eigen/bench/btl/data/
gnuplot_common_settings.hh 42 set cntrparam levels auto 5
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_tex_copy.c 131 timg->mt->levels[level].rowstride / dst_bpp,
radeon_texture.c 169 lvl = &image->mt->levels[image->base.Base.Level];
252 radeon_mipmap_level *lvl = &image->mt->levels[texImage->Level];
723 lvl = &image->mt->levels[level];
733 for (i = 0; i < mt->levels[level].depth; i++)
  /external/mesa3d/src/mesa/swrast/
swrast.h 279 GLsizei levels, GLsizei width,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
check.py 30 type=self.levels[level],
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
check.py 30 type=self.levels[level],
  /external/libvpx/libvpx/examples/includes/HTML-Toc-0.91/
TocGenerator.pm 242 {levels}{$aClass}[$aLevel - 1] || 0;
292 # Loop through levels
347 # returns: Group id levels.
437 # Reset groups and levels
700 $groupIdManager->{levels}{$groupId}[$level - 1] += 1;
701 # Reset remaining levels of same group
702 for ($i = $level; $i < @{$groupIdManager->{levels}{$groupId}}; $i++) {
703 $groupIdManager->{levels}{$groupId}[$i] = 0;
718 $groupIdManager->{levels}{$groupId}[$level - 1] . " ";
966 $self->{levels} = undef
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
AndouKun.java 528 final LevelTree.LevelGroup currentGroup = LevelTree.levels.get(mLevelRow);
529 final int count = currentGroup.levels.size();
541 if (currentGroup.levels.get(x).completed == false) {
559 if (mLevelRow < LevelTree.levels.size()) {
561 if (currentLevel.inThePast || LevelTree.levels.get(mLevelRow).levels.size() > 1) {
  /external/chromium_org/third_party/icu/source/test/cintltst/
cbiditst.c 105 static void printUnicode(const UChar *s, int32_t length, const UBiDiLevel *levels);
376 strcpy(buffer, "BAD LEVELS");
422 const UBiDiLevel *levels; local
428 levels = ubidi_getLevels(bidi, &errorCode);
430 strcpy(levelChars, "BAD LEVELS");
434 lev = levels[i];
443 log_err("Levels: %s", levelChars); fputs("\n", stderr);
480 /* For UBIDI_REORDER_RUNS_ONLY, it would not be correct to check levels[i],
818 UBiDiLevel levels[UBIDI_MAX_EXPLICIT_LEVEL]={1,2,3,4,5,6,7,8,9,10}; local
822 ubidi_setPara(bidi,src,srcSize,UBIDI_DEFAULT_LTR,levels,&ec)
852 UBiDiLevel levels[UBIDI_MAX_EXPLICIT_LEVEL]={1,2,3,4,5,6,7,8,9,10}; local
884 const UBiDiLevel *levels=test->levels; local
995 const UBiDiLevel *levels; local
    [all...]
  /external/chromium_org/ppapi/lib/gl/include/GLES2/
gl2ext.h     [all...]
  /external/chromium_org/third_party/khronos/GLES2/
gl2ext.h     [all...]
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-reference.js 40 // Handle provisional api levels; the provisional level will always be the highest possible level
41 // Provisional api levels will also have a length; other stuff that's just missing a level won't,
81 + "<p><a href='" +toRoot+ "guide/appendix/api-levels.html'>What is the API Level?</a></p></div>");
101 // Handle provisional api levels; if this item's level is the provisional one, set it to the max
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Texture.h 157 void storage(GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height);
231 void storage(GLsizei levels, GLenum internalformat, GLsizei size);
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
Renderer11.h 164 virtual TextureStorage *createTextureStorage2D(int levels, GLenum internalformat, GLenum usage, bool forceRenderable, GLsizei width, GLsizei height);
165 virtual TextureStorage *createTextureStorageCube(int levels, GLenum internalformat, GLenum usage, bool forceRenderable, int size);
Renderer9.h 179 virtual TextureStorage *createTextureStorage2D(int levels, GLenum internalformat, GLenum usage, bool forceRenderable, GLsizei width, GLsizei height);
180 virtual TextureStorage *createTextureStorageCube(int levels, GLenum internalformat, GLenum usage, bool forceRenderable, int size);
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_math.h 722 u_minify(unsigned value, unsigned levels)
724 return MAX2(1, value >> levels);
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.h 722 u_minify(unsigned value, unsigned levels)
724 return MAX2(1, value >> levels);

Completed in 3787 milliseconds

1 2 3 45 6 7 8 91011>>