HomeSort by relevance Sort by last modified time
    Searched refs:filtering (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/shared/maven-filtering/1.0-beta-4/
maven-filtering-1.0-beta-4.jar 
  /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_argb.h 27 enum FilterMode filtering);
36 enum FilterMode filtering);
50 enum FilterMode filtering);
scale.h 21 // Supported filtering.
35 enum FilterMode filtering);
41 enum FilterMode filtering);
45 // If filtering is kFilterNone, a simple nearest-neighbor algorithm is
47 // If filtering is kFilterBilinear, interpolation is used to produce a better
49 // If filtering is kFilterBox, averaging is used to produce ever better
62 enum FilterMode filtering);
73 enum FilterMode filtering);
scale_row.h 71 int bpp, enum FilterMode filtering);
78 int wpp, enum FilterMode filtering);
80 // Simplify the filtering based on scale factors.
83 enum FilterMode filtering);
102 enum FilterMode filtering,
  /external/libvpx/libvpx/third_party/libyuv/source/
scale.cc 43 enum FilterMode filtering) {
47 filtering == kFilterNone ? ScaleRowDown2_C :
48 (filtering == kFilterLinear ? ScaleRowDown2Linear_C :
51 if (!filtering) {
58 ScaleRowDown2 = filtering ? ScaleRowDown2Box_NEON : ScaleRowDown2_NEON;
62 ScaleRowDown2 = filtering == kFilterNone ? ScaleRowDown2_Unaligned_SSE2 :
63 (filtering == kFilterLinear ? ScaleRowDown2Linear_Unaligned_SSE2 :
68 ScaleRowDown2 = filtering == kFilterNone ? ScaleRowDown2_SSE2 :
69 (filtering == kFilterLinear ? ScaleRowDown2Linear_SSE2 :
77 ScaleRowDown2 = filtering
    [all...]
scale_argb.cc 38 enum FilterMode filtering) {
43 filtering == kFilterNone ? ScaleARGBRowDown2_C :
44 (filtering == kFilterLinear ? ScaleARGBRowDown2Linear_C :
49 if (filtering == kFilterBilinear) {
59 ScaleARGBRowDown2 = filtering == kFilterNone ? ScaleARGBRowDown2_SSE2 :
60 (filtering == kFilterLinear ? ScaleARGBRowDown2Linear_SSE2 :
66 ScaleARGBRowDown2 = filtering ? ScaleARGBRowDown2Box_NEON :
71 if (filtering == kFilterLinear) {
131 enum FilterMode filtering) {
137 filtering ? ScaleARGBRowDownEvenBox_C : ScaleARGBRowDownEven_C
    [all...]
scale_common.cc 874 int bpp, enum FilterMode filtering) {
944 yf = filtering ? ((y >> 8) & 255) : 0;
956 int wpp, enum FilterMode filtering) {
1026 yf = filtering ? ((y >> 8) & 255) : 0;
1034 // Simplify the filtering based on scale factors.
1037 enum FilterMode filtering) {
1044 if (filtering == kFilterBox) {
1047 filtering = kFilterBilinear;
    [all...]
  /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
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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/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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/source/
scale.c 3835 FilterMode filtering = interpolate ? kFilterBox : kFilterNone; local
    [all...]
  /external/v8/test/mjsunit/
cross-realm-filtering.js 7 // Check stack trace filtering across security contexts.
52 // Check .caller filtering across security contexts.
  /external/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.");
  /frameworks/base/libs/hwui/font/
CacheTexture.cpp 195 const GLenum filtering = getLinearFiltering() ? GL_LINEAR : GL_NEAREST; local
196 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, filtering);
197 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, 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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/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/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 302 void setFiltering(bool filtering);
348 // needsLinearFiltering - true if this surface's state requires filtering
395 // Whether filtering is forced on or not
397 // Whether filtering is needed b/c of the drawingstate

Completed in 1226 milliseconds

1 2 3 4