/external/libyuv/files/include/libyuv/ |
scale_argb.h | 27 FilterMode filtering);
|
scale.h | 21 // Supported filtering 34 FilterMode filtering); 38 // If filtering is kFilterNone, a simple nearest-neighbor algorithm is 40 // If filtering is kFilterBilinear, interpolation is used to produce a better 42 // If filtering is kFilterBox, averaging is used to produce ever better 55 FilterMode filtering);
|
/external/libvpx/libvpx/third_party/libyuv/include/libyuv/ |
scale.h | 21 // Supported filtering 30 // If filtering is kFilterNone, a simple nearest-neighbor algorithm is 32 // If filtering is kFilterBilinear, interpolation is used to produce a better 34 // If filtering is kFilterBox, averaging is used to produce ever better 46 FilterMode filtering);
|
/external/mesa3d/src/mapi/glapi/gen/ |
glapi_gen.mk | 24 # $(2): empty, es1, or es2 for entry point filtering 35 # $(2): empty, es1, or es2 for entry point filtering
|
/frameworks/base/libs/hwui/font/ |
CacheTexture.cpp | 170 const GLenum filtering = linearFiltering ? GL_LINEAR : GL_NEAREST; local 172 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, filtering); 173 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, filtering); 197 const GLenum filtering = getLinearFiltering() ? GL_LINEAR : GL_NEAREST; local 198 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, filtering); 199 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, filtering);
|
/external/libyuv/files/source/ |
scale.cc | 929 // Bilinear row filtering combines 16x2 -> 16x1. SSE2 version. 981 punpckhbw xmm0, xmm0 // duplicate last pixel for filtering 997 punpckhbw xmm0, xmm0 // duplicate last pixel for filtering 1014 punpckhbw xmm0, xmm0 // duplicate last pixel for filtering 1024 // Bilinear row filtering combines 16x2 -> 16x1. SSSE3 version. 1069 punpckhbw xmm0, xmm0 // duplicate last pixel for filtering 3011 FilterMode filtering = interpolate ? kFilterBox : kFilterNone; local [all...] |
scale_argb.cc | 189 // Bilinear row filtering combines 4x2 -> 4x1. SSE2 version. 241 movdqa [esi + edi], xmm0 // duplicate last pixel for filtering 278 // Bilinear row filtering combines 4x2 -> 4x1. SSSE3 version. 324 movdqa [esi + edi], xmm0 // duplicate last pixel for filtering 510 // Bilinear row filtering combines 4x2 -> 4x1. SSE2 version 582 // Bilinear row filtering combines 4x2 -> 4x1. SSSE3 version 780 // Duplicate the last pixel (4 bytes) for filtering. 798 FilterMode filtering) { 801 filtering ? ScaleARGBRowDown2Int_C : ScaleARGBRowDown2_C; 807 ScaleARGBRowDown2 = filtering ? ScaleARGBRowDown2Int_SSE2 [all...] |
/external/libvpx/libvpx/third_party/libyuv/source/ |
scale.c | 3835 FilterMode filtering = interpolate ? kFilterBox : kFilterNone; local [all...] |
/external/chromium_org/v8/test/webkit/fast/js/ |
JSON-parse-reviver.js | 44 debug("Ensure that the holder already has all the properties present at the start of filtering"); 54 debug("Ensure that returning undefined has removed the property 0 from the holder during filtering."); 61 debug("Ensure that changing the value of a property is reflected while filtering.") 72 debug("Ensure that we visited a value that we have deleted, and that deletion is reflected while filtering."); 127 debug("Ensure that the holder already has all the properties present at the start of filtering"); 142 debug("Ensure that changing the value of a property is reflected while filtering."); 153 debug("Ensure that we visited a value that we have deleted, and that deletion is reflected while filtering.");
|
/external/libvpx/libvpx/vp8/common/ppc/ |
filter_bilinear_altivec.asm | 41 ;# If there isn't any filtering to be done for the horizontal, then 186 ;# Finished filtering main horizontal block. If there is no 187 ;# vertical filtering, jump to storing the data. Otherwise 271 ;# Finished filtering main horizontal block. If there is no 272 ;# vertical filtering, jump to storing the data. Otherwise 361 ;# Finished filtering main horizontal block. If there is no 362 ;# vertical filtering, jump to storing the data. Otherwise 554 ;# Finished filtering main horizontal block. If there is no 555 ;# vertical filtering, jump to storing the data. Otherwise
|
variance_subpixel_altivec.asm | 41 ;# If there isn't any filtering to be done for the horizontal, then 213 ;# Finished filtering main horizontal block. If there is no 214 ;# vertical filtering, jump to storing the data. Otherwise 308 ;# Finished filtering main horizontal block. If there is no 309 ;# vertical filtering, jump to storing the data. Otherwise 426 ;# Finished filtering main horizontal block. If there is no 427 ;# vertical filtering, jump to storing the data. Otherwise 631 ;# Finished filtering main horizontal block. If there is no 632 ;# vertical filtering, jump to storing the data. Otherwise 732 ;# Finished filtering main horizontal block. If there is n [all...] |
filter_altivec.asm | 30 ;# Vertical filtering 209 ;# If there isn't any filtering to be done for the horizontal, then 244 ;# Finished filtering main horizontal block. If there is no 245 ;# vertical filtering, jump to storing the data. Otherwise 293 ;# filtering phase with one pass. 400 ;# If there isn't any filtering to be done for the horizontal, then 434 ;# Finished filtering main horizontal block. If there is no 435 ;# vertical filtering, jump to storing the data. Otherwise 572 ;# If there isn't any filtering to be done for the horizontal, then 614 ;# Finished filtering main horizontal block. If there is n [all...] |
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
Renderer.h | 161 virtual bool getFloat32TextureSupport(bool *filtering, bool *renderable) = 0; 162 virtual bool getFloat16TextureSupport(bool *filtering, bool *renderable) = 0;
|
Renderer11.h | 100 virtual bool getFloat32TextureSupport(bool *filtering, bool *renderable); 101 virtual bool getFloat16TextureSupport(bool *filtering, bool *renderable);
|
Renderer9.h | 115 virtual bool getFloat32TextureSupport(bool *filtering, bool *renderable); 116 virtual bool getFloat16TextureSupport(bool *filtering, bool *renderable);
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
Framebuffer.cpp | 363 bool filtering, renderable; 365 if ((gl::IsFloat32Format(internalformat) && !mRenderer->getFloat32TextureSupport(&filtering, &renderable)) || 366 (gl::IsFloat16Format(internalformat) && !mRenderer->getFloat16TextureSupport(&filtering, &renderable)))
|
Texture.cpp | 602 bool filtering, renderable; local 604 if ((IsFloat32Format(getInternalFormat(0)) && !mRenderer->getFloat32TextureSupport(&filtering, &renderable)) || 605 (IsFloat16Format(getInternalFormat(0)) && !mRenderer->getFloat16TextureSupport(&filtering, &renderable))) 1049 bool filtering, renderable; local 1051 if ((gl::ExtractType(getInternalFormat(GL_TEXTURE_CUBE_MAP_POSITIVE_X, 0)) == GL_FLOAT && !mRenderer->getFloat32TextureSupport(&filtering, &renderable)) || 1052 (gl::ExtractType(getInternalFormat(GL_TEXTURE_CUBE_MAP_POSITIVE_X, 0) == GL_HALF_FLOAT_OES) && !mRenderer->getFloat16TextureSupport(&filtering, &renderable))) [all...] |
/ndk/build/core/ |
setup-abi.mk | 31 # more general filtering in the future when introducing other ABIs.
|
/external/chromium_org/third_party/mesa/src/docs/ |
MESA_texture_signed_rgba.spec | 159 filtering of these signed formats would be still signed, but 160 negative values generated post-filtering would be clamped to
|
/external/mesa3d/docs/ |
MESA_texture_signed_rgba.spec | 159 filtering of these signed formats would be still signed, but 160 negative values generated post-filtering would be clamped to
|
/frameworks/native/services/surfaceflinger/ |
Layer.h | 271 void setFiltering(bool filtering); 314 // needsLinearFiltering - true if this surface's state requires filtering 357 // Whether filtering is forced on or not 359 // Whether filtering is needed b/c of the drawingstate
|
/external/chromium_org/v8/test/mjsunit/ |
debug-scripts-request.js | 81 // Test filtering by id. We have to get at least one script back, but
|
/external/v8/test/mjsunit/ |
debug-scripts-request.js | 81 // Test filtering by id.
|
/external/libvpx/libvpx/vp8/common/arm/armv6/ |
simpleloopfilter_v6.asm | 88 beq simple_hskip_filter ; skip filtering if all masks are 0x00 195 beq simple_vskip_filter ; skip filtering
|
/external/chromium_org/v8/tools/ |
profile_view.js | 107 * and filtering actions on the profile.
|