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

  /frameworks/av/tools/resampler_tools/
Android.mk 11 fir.cpp
13 LOCAL_MODULE := fir
  /external/chromium_org/third_party/freetype/src/base/
ftlcdfil.c 32 /* FIR filter used by the default and light filters */
43 /* horizontal in-place FIR filter */
51 FT_UInt fir[5]; local
56 fir[0] = weights[2] * val1;
57 fir[1] = weights[3] * val1;
58 fir[2] = weights[4] * val1;
59 fir[3] = 0;
60 fir[4] = 0;
63 fir[0] += weights[1] * val1;
64 fir[1] += weights[2] * val1
110 FT_UInt fir[5]; local
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
fxft_ftlcdfil.c 33 /* FIR filter used by the default and light filters */
44 /* horizontal in-place FIR filter */
52 FT_UInt fir[5]; local
57 fir[0] = weights[2] * val1;
58 fir[1] = weights[3] * val1;
59 fir[2] = weights[4] * val1;
60 fir[3] = 0;
61 fir[4] = 0;
64 fir[0] += weights[1] * val1;
65 fir[1] += weights[2] * val1
111 FT_UInt fir[5]; local
    [all...]
  /external/freetype/src/base/
ftlcdfil.c 32 /* FIR filter used by the default and light filters */
43 /* horizontal in-place FIR filter */
49 /* `fir' and `pix' must be at least 32 bit wide, since the sum of */
54 FT_UInt fir[4]; /* below, `pix' is used as the 5th element */ local
59 fir[0] = weights[2] * val1;
60 fir[1] = weights[3] * val1;
61 fir[2] = weights[4] * val1;
62 fir[3] = 0;
65 fir[0] += weights[1] * val1;
66 fir[1] += weights[2] * val1
112 FT_UInt fir[4]; \/* below, `pix' is used as the 5th element *\/ local
    [all...]
  /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;
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtcp_packet_unittest.cc 22 using webrtc::rtcp::Fir;
443 TEST(RtcpPacketTest, Fir) {
444 Fir fir; local
445 fir.From(kSenderSsrc);
446 fir.To(kRemoteSsrc);
447 fir.WithCommandSeqNum(123);
449 RawPacket packet = fir.Build();
452 EXPECT_EQ(1, parser.fir()->num_packets());
453 EXPECT_EQ(kSenderSsrc, parser.fir()->Ssrc())
460 Fir fir; local
490 Fir fir; local
524 Fir fir; local
540 Fir fir; local
581 Fir fir; local
    [all...]
rtcp_receiver_unittest.cc 392 rtcp::Fir fir; local
393 fir.To(kSourceSsrc);
394 rtcp::RawPacket p = fir.Build();
405 rtcp::Fir fir; local
406 fir.To(kSourceSsrc + 1);
407 rtcp::RawPacket p = fir.Build();
rtcp_packet.cc 440 // Full intra request (FIR) (RFC 5104).
452 void CreateFir(const RTCPPacketPSFBFIR& fir,
459 AssignUWord32(buffer, pos, fir.SenderSSRC);
    [all...]
  /bionic/libc/kernel/uapi/asm-mips/asm/
kvm.h 32 __u32 fir; member in struct:kvm_fpu
  /development/ndk/platforms/android-L/arch-mips/include/asm/
kvm.h 32 __u32 fir; member in struct:kvm_fpu
  /development/ndk/platforms/android-L/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/chromium_org/third_party/skia/src/core/
SkScalerContext.cpp 265 // An N tap FIR is defined by
270 // The strategy is to use one FIR (different coefficients) for each of r, g, and b.
271 // This means using every 4th FIR output value of each FIR and discarding the rest.
298 // TODO: this fir filter implementation is straight forward, but slow.
301 int fir[LCD_PER_PIXEL] = { 0 }; local
308 fir[subpxl_index] += coefficients[subpxl_index][coeff_index] * sample_value;
312 fir[subpxl_index] /= 0x100;
313 fir[subpxl_index] = SkMin32(fir[subpxl_index], 255)
    [all...]
  /external/skia/src/core/
SkScalerContext.cpp 439 // An N tap FIR is defined by
444 // The strategy is to use one FIR (different coefficients) for each of r, g, and b.
445 // This means using every 4th FIR output value of each FIR and discarding the rest.
472 // TODO: this fir filter implementation is straight forward, but slow.
475 int fir[LCD_PER_PIXEL] = { 0 }; local
482 fir[subpxl_index] += coefficients[subpxl_index][coeff_index] * sample_value;
486 fir[subpxl_index] /= 0x100;
487 fir[subpxl_index] = SkMin32(fir[subpxl_index], 255)
    [all...]
  /external/chromium_org/third_party/webrtc/test/
rtcp_packet_parser.h 299 class Fir : public PacketType {
301 Fir() {}
302 virtual ~Fir() {}
309 void Set(const RTCPUtility::RTCPPacketPSFBFIR& fir) {
310 fir_ = fir;
650 Fir* fir() { return &fir_; }
685 Fir fir_;
  /external/qemu/include/hw/arm/
pxa.h 144 PXA2xxFIrState *fir; member in struct:__anon13404
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_timer.c 479 int audit_tf, num_mk, fir; local
488 fir = 0;
636 if (fir == 0) {
637 fir = 1;
    [all...]
  /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
305 * sample array with respect to the FIR filter:
338 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/qemu/
gdbstub.c 1265 val=*((uint64_t *)&env->fir[n-32]);
1291 env->fir[n - 32] = ldfl_p(mem_buf);
    [all...]
  /external/pcre/dist/sljit/
sljitNativeMIPS_common.c     [all...]

Completed in 1039 milliseconds