HomeSort by relevance Sort by last modified time
    Searched refs:fir (Results 1 - 22 of 22) sorted by null

  /frameworks/av/tools/resampler_tools/
Android.mk 11 fir.cpp
13 LOCAL_MODULE := fir
  /external/freetype/src/base/
ftlcdfil.c 32 /* FIR filter used by the default and light filters */
43 /* horizontal in-place FIR filter */
53 /* `fir' and `pix' must be at least 32 bit wide, since the sum of */
58 FT_UInt fir[4]; /* below, `pix' is used as the 5th element */ local
63 fir[0] = weights[2] * val1;
64 fir[1] = weights[3] * val1;
65 fir[2] = weights[4] * val1;
66 fir[3] = 0;
69 fir[0] += weights[1] * val1;
70 fir[1] += weights[2] * val1
120 FT_UInt fir[4]; \/* below, `pix' is used as the 5th element *\/ local
    [all...]
  /external/pdfium/third_party/freetype/src/base/
ftlcdfil.c 32 /* FIR filter used by the default and light filters */
43 /* horizontal in-place FIR filter */
53 /* `fir' and `pix' must be at least 32 bit wide, since the sum of */
58 FT_UInt fir[4]; /* below, `pix' is used as the 5th element */ local
63 fir[0] = weights[2] * val1;
64 fir[1] = weights[3] * val1;
65 fir[2] = weights[4] * val1;
66 fir[3] = 0;
69 fir[0] += weights[1] * val1;
70 fir[1] += weights[2] * val1
120 FT_UInt fir[4]; \/* below, `pix' is used as the 5th element *\/ local
    [all...]
  /external/google-breakpad/src/google_breakpad/common/
minidump_cpu_mips.h 83 uint32_t fir; member in struct:__anon9475
103 uint32_t fir; /* FPU implementation register. */ member in struct:__anon9476
  /external/google-breakpad/src/common/android/include/sys/
user.h 109 unsigned int fir; member in struct:user_fpregs_struct
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
oversamp_12k8_to_16k.cpp 124 const int16 * fir, /* filter coefficient */
277 const int16 *fir, /* filter coefficient */
282 const int16 *pt_fir = fir;
  /bionic/libc/kernel/uapi/asm-mips/asm/
kvm.h 32 __u32 fir; member in struct:kvm_fpu
  /development/ndk/platforms/android-21/arch-mips/include/asm/
kvm.h 32 __u32 fir; member in struct:kvm_fpu
  /development/ndk/platforms/android-21/arch-mips64/include/asm/
kvm.h 32 __u32 fir; member in struct:kvm_fpu
  /external/kernel-headers/original/uapi/asm-mips/asm/
kvm.h 45 __u32 fir; member in struct:kvm_fpu
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/asm/
kvm.h 32 __u32 fir; member in struct:kvm_fpu
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/asm/
kvm.h 32 __u32 fir; member in struct:kvm_fpu
  /external/skia/src/core/
SkScalerContext.cpp 263 // An N tap FIR is defined by
268 // The strategy is to use one FIR (different coefficients) for each of r, g, and b.
269 // This means using every 4th FIR output value of each FIR and discarding the rest.
296 // TODO: this fir filter implementation is straight forward, but slow.
299 int fir[LCD_PER_PIXEL] = { 0 }; local
306 fir[subpxl_index] += coefficients[subpxl_index][coeff_index] * sample_value;
310 fir[subpxl_index] /= 0x100;
311 fir[subpxl_index] = SkMin32(fir[subpxl_index], 255)
    [all...]
  /external/google-breakpad/src/client/linux/dump_writer_common/
thread_info.cc 260 out->float_save.fir = fpregs.fir;
ucontext_reader.cc 247 out->float_save.fir = uc->uc_mcontext.fpc_eir; // Unused.
  /frameworks/av/services/audioflinger/
AudioResamplerFirProcess.h 165 * The Process*() functions compute both the positive half FIR dot product and
166 * the negative half FIR dot product, accumulates, and then applies the volume.
168 * Use fir() to compute the proper coefficient pointers for a polyphase
288 * below coefShift. See fir() for details.
343 * sample array with respect to the FIR filter:
376 void fir(TO* const out, function in namespace:android
AudioResamplerDyn.cpp 564 // caution: fir() is inlined and may be large.
574 fir<CHANNELS, LOCKED, STRIDE>(
  /external/google-breakpad/src/processor/
dump_context.cc 603 printf(" float_save.fir = 0x%" PRIx32 "\n",
604 context_mips->float_save.fir);
synth_minidump.cc 229 D32(context.float_save.fir);
minidump.cc     [all...]
  /external/google-breakpad/src/tools/linux/md2core/
minidump-2-core.cc 387 thread->fpregs.fir = rawregs->float_save.fir;
    [all...]
  /external/pcre/dist/sljit/
sljitNativeMIPS_common.c     [all...]

Completed in 769 milliseconds