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

  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
compound_packet_unittest.cc 21 using webrtc::rtcp::Fir;
33 Fir fir; local
38 rr.Append(&fir);
46 EXPECT_EQ(1, parser.fir()->num_packets());
63 Fir fir; local
69 rr.Append(&fir);
82 EXPECT_EQ(1, parser.fir()->num_packets());
86 Fir fir local
117 Fir fir; local
    [all...]
  /external/freetype/src/base/
ftlcdfil.c 77 /* FIR filter used by the default and light filters */
93 /* horizontal in-place FIR filter */
99 /* `fir' must be at least 32 bit wide, since the sum of */
104 FT_UInt fir[5]; local
109 fir[2] = weights[2] * val;
110 fir[3] = weights[3] * val;
111 fir[4] = weights[4] * val;
114 fir[1] = fir[2] + weights[1] * val;
115 fir[2] = fir[3] + weights[2] * val
145 FT_UInt fir[5]; local
    [all...]
  /frameworks/av/media/libaudioprocessing/
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
  /external/google-breakpad/src/common/android/include/sys/
user.h 109 unsigned int fir; member in struct:user_fpregs_struct
  /external/google-breakpad/src/google_breakpad/common/
minidump_cpu_mips.h 83 uint32_t fir; member in struct:__anon22622
103 uint32_t fir; /* FPU implementation register. */ member in struct:__anon22623
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtcp_packet_unittest.cc 27 using webrtc::rtcp::Fir;
291 TEST(RtcpPacketTest, Fir) {
292 Fir fir; local
293 fir.From(kSenderSsrc);
294 fir.To(kRemoteSsrc);
295 fir.WithCommandSeqNum(123);
297 rtc::scoped_ptr<RawPacket> packet(fir.Build());
300 EXPECT_EQ(1, parser.fir()->num_packets());
301 EXPECT_EQ(kSenderSsrc, parser.fir()->Ssrc())
    [all...]
rtcp_receiver_unittest.cc 549 rtcp::Fir fir; local
550 fir.To(kSourceSsrc);
551 rtc::scoped_ptr<rtcp::RawPacket> packet(fir.Build());
562 rtcp::Fir fir; local
563 fir.To(kSourceSsrc + 1);
564 rtc::scoped_ptr<rtcp::RawPacket> packet(fir.Build());
    [all...]
rtcp_sender.cc 537 rtcp::Fir* fir = new rtcp::Fir(); local
538 fir->From(ssrc_);
539 fir->To(remote_ssrc_);
540 fir->WithCommandSeqNum(sequence_number_fir_);
543 "RTCPSender::FIR");
548 return rtc::scoped_ptr<rtcp::Fir>(fir);
    [all...]
  /external/skia/src/core/
SkScalerContext.cpp 306 // An N tap FIR is defined by
311 // The strategy is to use one FIR (different coefficients) for each of r, g, and b.
312 // This means using every 4th FIR output value of each FIR and discarding the rest.
339 // TODO: this fir filter implementation is straight forward, but slow.
342 int fir[LCD_PER_PIXEL] = { 0 }; local
349 fir[subpxl_index] += coefficients[subpxl_index][coeff_index] * sample_value;
353 fir[subpxl_index] /= 0x100;
354 fir[subpxl_index] = SkMin32(fir[subpxl_index], 255)
    [all...]
  /external/skqp/src/core/
SkScalerContext.cpp 274 // An N tap FIR is defined by
279 // The strategy is to use one FIR (different coefficients) for each of r, g, and b.
280 // This means using every 4th FIR output value of each FIR and discarding the rest.
307 // TODO: this fir filter implementation is straight forward, but slow.
310 int fir[LCD_PER_PIXEL] = { 0 }; local
317 fir[subpxl_index] += coefficients[subpxl_index][coeff_index] * sample_value;
321 fir[subpxl_index] /= 0x100;
322 fir[subpxl_index] = SkMin32(fir[subpxl_index], 255)
    [all...]
  /external/pcre/dist2/src/sljit/
sljitNativeMIPS_common.c 519 sljit_sw fir = 0; local
526 asm ("cfc1 %0, $0" : "=r"(fir));
527 return (fir >> 22) & 0x1;
529 #error "FIR check is not implemented for this architecture"
539 return fir;
    [all...]
  /external/u-boot/arch/powerpc/include/asm/
fsl_lbc.h 363 /* FIR - Flash Instruction Register
520 u32 fir; /* Flash Instruction Register */ member in struct:fsl_lbc

Completed in 1334 milliseconds