Searched defs:filter (Results 301 - 325 of 720) sorted by relevance

<<11121314151617181920>>

/external/libvpx/libvpx/vpx_dsp/mips/
H A Dconvolve8_dspr2.c1267 const int16_t *filter, int w, int h) {
1274 for (k = 0; k < 8; ++k) sum += src[x + k] * filter[k];
1265 convolve_horiz_transposed(const uint8_t *src, ptrdiff_t src_stride, uint8_t *dst, ptrdiff_t dst_stride, const int16_t *filter, int w, int h) argument
H A Dvpx_convolve8_horiz_msa.c17 int8_t *filter) {
25 /* rearranging filter */
26 filt = LD_SH(filter);
45 int8_t *filter) {
54 /* rearranging filter */
55 filt = LD_SH(filter);
82 int8_t *filter, int32_t height) {
84 common_hz_8t_4x4_msa(src, src_stride, dst, dst_stride, filter);
86 common_hz_8t_4x8_msa(src, src_stride, dst, dst_stride, filter);
92 int8_t *filter) {
15 common_hz_8t_4x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter) argument
43 common_hz_8t_4x8_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter) argument
80 common_hz_8t_4w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter, int32_t height) argument
90 common_hz_8t_8x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter) argument
120 common_hz_8t_8x8mult_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter, int32_t height) argument
155 common_hz_8t_8w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter, int32_t height) argument
165 common_hz_8t_16w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter, int32_t height) argument
203 common_hz_8t_32w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter, int32_t height) argument
261 common_hz_8t_64w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter, int32_t height) argument
317 common_hz_2t_4x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter) argument
338 common_hz_2t_4x8_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter) argument
365 common_hz_2t_4w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter, int32_t height) argument
375 common_hz_2t_8x4_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter) argument
398 common_hz_2t_8x8mult_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter, int32_t height) argument
461 common_hz_2t_8w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter, int32_t height) argument
471 common_hz_2t_16w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter, int32_t height) argument
536 common_hz_2t_32w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter, int32_t height) argument
581 common_hz_2t_64w_msa(const uint8_t *src, int32_t src_stride, uint8_t *dst, int32_t dst_stride, int8_t *filter, int32_t height) argument
[all...]
/external/libvpx/libvpx/vpx_dsp/x86/
H A Dvariance_impl_avx2.c232 #define FILTER_SRC(filter) \
233 /* filter the source */ \
234 exp_src_lo = _mm256_maddubs_epi16(exp_src_lo, filter); \
235 exp_src_hi = _mm256_maddubs_epi16(exp_src_hi, filter); \
337 __m256i filter, pw8, src_next_reg; local
340 filter = _mm256_load_si256(
346 FILTER_SRC(filter)
387 __m256i filter, pw8, src_next_reg, src_avg; local
389 filter = _mm256_load_si256(
403 FILTER_SRC(filter)
411 __m256i filter, pw8, src_next_reg; local
426 __m256i filter, pw8, src_next_reg, src_pack; local
530 __m256i filter, pw8, src_next_reg; local
591 __m256i filter, pw8, src_next_reg, src_avg; local
621 __m256i filter, pw8, src_next_reg; local
641 __m256i filter, pw8, src_next_reg, src_pack; local
[all...]
H A Dvpx_subpixel_8t_intrin_avx2.c64 ptrdiff_t output_pitch, uint32_t output_height, const int16_t *filter) {
75 filtersReg = _mm_loadu_si128((const __m128i *)filter);
112 // filter the source buffer
116 // multiply 2 adjacent elements with the filter and add the result
123 // filter the source buffer
127 // multiply 2 adjacent elements with the filter and add the result
148 // filter the source buffer
152 // multiply 2 adjacent elements with the filter and add the result
159 // filter the source buffer
163 // multiply 2 adjacent elements with the filter an
62 vpx_filter_block1d16_h8_avx2( const uint8_t *src_ptr, ptrdiff_t src_pixels_per_line, uint8_t *output_ptr, ptrdiff_t output_pitch, uint32_t output_height, const int16_t *filter) argument
290 vpx_filter_block1d16_v8_avx2( const uint8_t *src_ptr, ptrdiff_t src_pitch, uint8_t *output_ptr, ptrdiff_t out_pitch, uint32_t output_height, const int16_t *filter) argument
[all...]
/external/libxml2/
H A Dxzlib.c302 lzma_filter filter; local
311 filter.id = LZMA_FILTER_LZMA1;
312 if (lzma_properties_decode(&filter, NULL, state->in, 5) != LZMA_OK)
315 opt = filter.options;
/external/libyuv/files/util/
H A Dconvert.cc38 int filter = 1; // Bilinear filter for scaling. variable
71 printf(" -f <filter> ............ 0 = point, 1 = bilinear (default).\n");
104 filter = atoi(argv[++c]); // NOLINT
303 static_cast<libyuv::FilterMode>(filter));
307 static_cast<libyuv::FilterMode>(filter));
/external/mesa3d/src/gallium/drivers/nv30/
H A Dnv30_transfer.c27 struct nv30_context *nv30, enum nv30_transfer_filter filter, \
315 switch (filter) {
425 if (filter == NEAREST) {
651 nv30_transfer_rect(struct nv30_context *nv30, enum nv30_transfer_filter filter, argument
668 if (method->possible(nv30, filter, src, dst)) {
669 method->execute(nv30, filter, src, dst);
/external/mesa3d/src/gallium/state_trackers/xa/
H A Dxa_composite.c209 int filter; local
210 if (pic && !xa_filter_to_gallium(pic->filter, &filter))
407 int filter; local
409 (void) xa_filter_to_gallium(src_pic->filter, &filter);
413 src_sampler.min_img_filter = filter;
414 src_sampler.mag_img_filter = filter;
431 int filter; local
433 (void) xa_filter_to_gallium(mask_pic->filter,
[all...]
/external/skia/samplecode/
H A DSampleFilterQuality.cpp192 void drawTheImage(SkCanvas* canvas, const SkISize& size, SkFilterQuality filter, argument
196 paint.setFilterQuality(filter);
214 void drawHere(SkCanvas* canvas, SkFilterQuality filter, SkScalar dx, SkScalar dy) { argument
233 this->drawTheImage(canvas, size, filter, dx, dy);
/external/skia/src/core/
H A DSkImageFilter.cpp344 // primitive. If we didn't do this, we would be processing the filter
398 // switched to the destination space anyway. The one exception would be a filter that expected
449 SkImageFilter* filter = this->getInput(i); local
450 SkIRect rect = filter ? filter->filterBounds(src, ctm, direction) : src;
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/widget/
H A DNumberPicker.java316 public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, method in class:NumberPicker.NumberPickerInputFilter
319 return mNumberInputFilter.filter(source, start, end, dest, dstart, dend);
350 public CharSequence filter(CharSequence source, int start, int end, Spanned dest, int dstart, method in class:NumberPicker.NumberRangeKeyListener
353 CharSequence filtered = super.filter(source, start, end, dest, dstart, dend);
/external/swiftshader/src/D3D9/
H A DDirect3D9Ex.cpp268 unsigned int __stdcall Direct3D9Ex::GetAdapterModeCountEx(unsigned int adapter, const D3DDISPLAYMODEFILTER *filter) argument
270 TRACE("unsigned int adapter = %d, const D3DDISPLAYMODEFILTER *filter = 0x%0.8p", adapter, filter);
272 return Direct3D9::GetAdapterModeCount(adapter, filter->Format); // FIXME
275 long __stdcall Direct3D9Ex::EnumAdapterModesEx(unsigned int adapter, const D3DDISPLAYMODEFILTER *filter, unsigned int index, D3DDISPLAYMODEEX *modeEx) argument
277 TRACE("unsigned int adapter = %d, const D3DDISPLAYMODEFILTER *filter = 0x%0.8p, unsigned int index = %d, D3DDISPLAYMODEEX *modeEx = 0x%0.8p", adapter, filter, index, modeEx);
286 return Direct3D9::EnumAdapterModes(adapter, filter->Format, index, &mode); // FIXME
H A DDirect3DVolumeTexture9.cpp204 D3DTEXTUREFILTERTYPE filter = GetAutoGenFilterType(); local
222 dest->copyInternal(source, i, j, k, x, y, z, filter > D3DTEXF_POINT);
/external/swiftshader/src/OpenGL/libGL/
H A DTexture.cpp55 // Returns true on successful filter state update (valid enum parameter)
56 bool Texture::setMinFilter(GLenum filter) argument
58 switch(filter)
66 mMinFilter = filter;
73 // Returns true on successful filter state update (valid enum parameter)
74 bool Texture::setMagFilter(GLenum filter) argument
76 switch(filter)
80 mMagFilter = filter;
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DDevice.cpp368 bool Device::stretchRect(sw::Surface *source, const sw::SliceRect *sourceRect, sw::Surface *dest, const sw::SliceRect *destRect, bool filter) argument
496 blit(source, sRect, dest, dRect, scaling && filter);
/external/swiftshader/src/Renderer/
H A DSampler.cpp423 FilterType filter = textureFilter; local
427 filter = FILTER_GATHER;
432 return (FilterType)min(filter, FILTER_LINEAR);
435 return filter;
/external/toybox/toys/posix/
H A Dls.c179 static int filter(struct dirtree *new) function
317 for (;dt; dt = dt->next) filter(dt);
321 } else dirtree_recurse(indir, filter, dup(dirfd),
/external/webrtc/webrtc/modules/video_capture/windows/
H A Ddevice_info_ds.cc635 capability.rawType = kVideoYUY2;// MS DV filter seems to create this type
748 IBaseFilter* filter = GetDeviceFilter(deviceUniqueIdUTF8, NULL, 0); local
749 if (!filter)
756 hr = filter->QueryInterface(IID_ISpecifyPropertyPages, (LPVOID*) &pPages);
759 filter->Release();
765 filter->Release();
784 (LPUNKNOWN*) &filter, // Pointer to the filter.
794 filter->Release();
/external/webrtc/webrtc/p2p/base/
H A Dturnserver.h187 void set_reject_private_addresses(bool filter) { argument
188 reject_private_addresses_ = filter;
/external/webrtc/webrtc/system_wrappers/source/
H A Dtrace_impl.cc550 void Trace::set_level_filter(int filter) { argument
551 rtc::AtomicOps::ReleaseStore(&level_filter_, filter);
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djdepend-2.9.jar ... util.ArrayList parseListeners private jdepend.framework.PackageFilter filter public static boolean DEBUG public void " href="/8.0. ...
/external/caliper/lib/
H A Djersey-client-1.11.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOM3TreeWalker.java207 LSSerializerFilter filter,
212 fFilter = filter;
470 * Applies a filter on the node to serialize
505 //DocumentType nodes are never passed to the filter
581 // apply the LSSerializer filter after the operations requested by the
613 // REVISIT: We apply the LSSerializer filter for elements before
639 // apply the LSSerializer filter
802 // Default attr's are not passed to the filter and this contraint
813 // apply the filter for Attributes that are not default attributes
897 // apply the LSSerializer filter
204 DOM3TreeWalker( SerializationHandler serialHandler, DOMErrorHandler errHandler, LSSerializerFilter filter, String newLine) argument
[all...]
/external/autotest/client/site_tests/security_SeccompSyscallFilters/src/
H A Dseccomp_bpf_tests.c18 #include <linux/filter.h>
130 struct sock_filter filter[] = { local
134 .len = (unsigned short)(sizeof(filter)/sizeof(filter[0])),
135 .filter = filter,
154 struct sock_filter filter[] = { local
158 .len = (unsigned short)(sizeof(filter)/sizeof(filter[0])),
159 .filter
175 struct sock_filter filter[] = { local
191 struct sock_filter filter[] = { local
207 struct sock_filter filter[] = { local
227 struct sock_filter filter[] = { local
246 struct sock_filter filter[] = { local
262 struct sock_filter filter[] = { local
286 struct sock_filter filter[] = { local
316 struct sock_filter filter[] = { local
348 struct sock_filter filter[] = { local
365 struct sock_filter filter[] = { local
389 struct sock_filter filter[] = { local
417 struct sock_filter filter[] = { local
835 struct sock_filter filter[] = { local
937 seccomp(unsigned int op, unsigned int flags, struct sock_fprog *filter) argument
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp69 const ChecksFilter &filter; member in class:__anon1587::WalkAST
76 filter(f) {}
220 if (!filter.check_FloatLoopCounter)
294 BR.EmitBasicReport(AC->getDecl(), filter.checkName_FloatLoopCounter,
307 if (!filter.check_gets)
329 BR.EmitBasicReport(AC->getDecl(), filter.checkName_gets,
343 if (!filter.check_getpw)
369 BR.EmitBasicReport(AC->getDecl(), filter.checkName_getpw,
383 if (!filter.check_mktemp) {
410 BR.EmitBasicReport(AC->getDecl(), filter
750 ChecksFilter filter; member in class:__anon1589::SecuritySyntaxChecker
[all...]

Completed in 1216 milliseconds

<<11121314151617181920>>