Searched defs:frames (Results 1 - 25 of 178) sorted by relevance

12345678

/external/chromium_org/net/websockets/
H A Dwebsocket_deflate_predictor_impl_test.cc20 ScopedVector<WebSocketFrame> frames; local
21 frames.push_back(new WebSocketFrame(WebSocketFrameHeader::kOpCodeText));
22 Result result = predictor.Predict(frames, 0);
H A Dwebsocket_deflate_predictor_impl.cc12 const ScopedVector<WebSocketFrame>& frames,
11 Predict( const ScopedVector<WebSocketFrame>& frames, size_t frame_index) argument
/external/srec/srec/ca/
H A Dutt_proc.c40 int ii, frames = 0; local
42 frames = get_background_statistics(hUtt->data.gen_utt.frame,
47 /* log_report ("UTT (%d): ", frames); */
54 return (frames);
/external/chromium/chrome/browser/ui/gtk/
H A Dchrome_gtk_frame.h44 MetaFrames frames; member in struct:_ChromeGtkFrame
/external/chromium/net/websockets/
H A Dwebsocket_frame_handler_unittest.cc47 std::vector<WebSocketFrameHandler::FrameInfo> frames; local
54 kInputData, kInputDataLen, &frames));
55 EXPECT_EQ(2UL, frames.size());
57 EXPECT_EQ(kInputData, frames[0].frame_start);
58 EXPECT_EQ(kHelloWorldFrameLen, frames[0].frame_length);
59 EXPECT_EQ(kInputData + 1, frames[0].message_start);
60 EXPECT_EQ(kHelloWorldFrameLen - 2, frames[0].message_length);
62 EXPECT_EQ(kInputData + kHelloWorldFrameLen, frames[1].frame_start);
63 EXPECT_EQ(2, frames[1].frame_length);
64 EXPECT_EQ(0, frames[
68 std::vector<WebSocketFrameHandler::FrameInfo> frames; local
106 std::vector<WebSocketFrameHandler::FrameInfo> frames; local
[all...]
/external/chromium_org/chrome/browser/ui/gtk/
H A Dchrome_gtk_frame.h42 MetaFrames frames; member in struct:_ChromeGtkFrame
H A Dtitlebar_throb_animation.cc18 // square GdkPixbufs that get stored in |frames|.
19 void MakeThrobberFrames(int resource_id, std::vector<GdkPixbuf*>* frames) { argument
32 frames->push_back(gfx::GdkPixbufFromSkBitmap(frame));
/external/chromium_org/chrome/browser/ui/libgtk2ui/
H A Dchrome_gtk_frame.h42 MetaFrames frames; member in struct:_ChromeGtkFrame
/external/chromium_org/media/base/
H A Daudio_buffer_queue.h36 // Reads a maximum of |frames| frames into |dest| from the current position.
37 // Returns the number of frames read. The current position will advance by the
38 // amount of frames read. |dest_frame_offset| specifies a starting offset into
39 // |dest|. On each call, the frames are converted from their source format
41 int ReadFrames(int frames, int dest_frame_offset, AudioBus* dest);
43 // Copies up to |frames| frames from current position to |dest|. Returns
44 // number of frames copied. Doesn't advance current position. Starts at
46 // a starting offset into |dest|. On each call, the frames ar
58 int frames() const { return frames_; } function in class:media::AudioBufferQueue
[all...]
H A Daudio_buffer_queue_unittest.cc20 int frames,
23 for (int i = 0; i < frames; ++i) {
25 "i=%d/%d start=%f, increment=%f", i, frames, start, increment));
33 const int frames = 8; local
36 EXPECT_EQ(0, buffer.frames());
38 kSampleFormatU8, channels, 10, 1, frames, kNoTime, kNoTime));
39 EXPECT_EQ(frames, buffer.frames());
41 EXPECT_EQ(0, buffer.frames());
43 kSampleFormatU8, channels, 20, 1, frames, kNoTim
19 VerifyResult(float* channel_data, int frames, float start, float increment) argument
49 const int frames = 8; local
73 const int frames = 8; local
119 const int frames = 6; local
180 const int frames = 4; local
[all...]
H A Daudio_buffer_unittest.cc15 int frames,
18 for (int i = 0; i < frames; ++i) {
20 "i=%d/%d start=%f, increment=%f", i, frames, start, increment));
28 const int frames = 8; local
30 const base::TimeDelta duration = base::TimeDelta::FromSeconds(frames);
32 kSampleFormatU8, channels, 1, 1, frames, start_time, duration);
33 EXPECT_EQ(frames, buffer->frame_count());
35 EXPECT_EQ(buffer->duration().InSeconds(), frames);
63 const int frames = 4; local
65 const base::TimeDelta duration = base::TimeDelta::FromSeconds(frames);
14 VerifyResult(float* channel_data, int frames, float start, float increment) argument
83 const int frames = 10; local
108 const int frames = 6; local
131 const int frames = 20; local
153 const int frames = 20; local
186 const int frames = 100; local
219 const int frames = 100; local
240 const int frames = 100; local
[all...]
H A Daudio_bus.h28 // Creates a new AudioBus and allocates |channels| of length |frames|. Uses
30 static scoped_ptr<AudioBus> Create(int channels, int frames);
42 int frames, const std::vector<float*>& channel_data);
47 static scoped_ptr<AudioBus> WrapMemory(int channels, int frames, void* data);
53 // and frames.
54 static int CalculateMemorySize(int channels, int frames);
61 // any unfilled frames when |frames| is less than frames().
62 void FromInterleaved(const void* source, int frames, in
95 int frames() const { return frames_; } function in class:media::AudioBus
[all...]
H A Daudio_hash.cc24 void AudioHash::Update(const AudioBus* audio_bus, int frames) { argument
28 for (uint32 i = 0; i < static_cast<uint32>(frames); ++i) {
43 sample_count_ += static_cast<uint32>(frames);
H A Dsinc_resampler_perftest.cc22 static void DoNothing(int frames, float* destination) {} argument
H A Daudio_pull_fifo.cc14 AudioPullFifo::AudioPullFifo(int channels, int frames, const ReadCB& read_cb) argument
16 fifo_(AudioBus::Create(channels, frames)),
17 fifo_index_(frames) {}
22 DCHECK_LE(frames_to_consume, destination->frames());
31 // Get the remaining audio frames from the producer using the callback.
33 DCHECK_EQ(fifo_index_, fifo_->frames());
47 void AudioPullFifo::Clear() { fifo_index_ = fifo_->frames(); }
52 int frames = std::min(frames_to_provide, fifo_->frames() - fifo_index_); local
53 if (frames <
[all...]
H A Daudio_timestamp_helper_unittest.cc19 // Adds frames to the helper and returns the current timestamp in
21 int64 AddFrames(int frames) { argument
22 helper_.AddFrames(frames);
58 // Verify that adding frames one frame at a time matches the timestamp
59 // returned if the same number of frames are added all at once.
99 // Verify that the same number of frames is returned up
109 // Add frames to the helper so negative frame counts can be tested.
H A Dmulti_channel_resampler.cc45 void MultiChannelResampler::Resample(int frames, AudioBus* audio_bus) { argument
50 resamplers_[0]->Resample(frames, audio_bus->channel(0));
55 // channel. To ensure this, we chunk the number of requested frames into
59 while (output_frames_ready_ < frames) {
61 int frames_this_time = std::min(frames - output_frames_ready_, chunk_size);
72 // number of frames.
82 int frames,
93 DCHECK_EQ(frames, wrapped_resampler_audio_bus_->frames());
97 sizeof(*wrapped_resampler_audio_bus_->channel(channel)) * frames);
81 ProvideInput(int channel, int frames, float* destination) argument
[all...]
/external/chromium_org/net/quic/
H A Dquic_ack_notifier_manager.cc75 // Run through all the frames and if any of them are stream frames and have
79 RetransmittableFrames* frames = serialized_packet.retransmittable_frames; local
81 // AckNotifiers can only be attached to retransmittable frames.
82 if (!frames) {
86 for (QuicFrames::const_iterator it = frames->frames().begin();
87 it != frames->frames().end(); ++it) {
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DScriptCallStack.cpp37 PassRefPtr<ScriptCallStack> ScriptCallStack::create(Vector<ScriptCallFrame>& frames) argument
39 return adoptRef(new ScriptCallStack(frames));
42 ScriptCallStack::ScriptCallStack(Vector<ScriptCallFrame>& frames) argument
44 m_frames.swap(frames);
81 RefPtr<TypeBuilder::Array<TypeBuilder::Console::CallFrame> > frames = TypeBuilder::Array<TypeBuilder::Console::CallFrame>::create(); local
83 frames->addItem(m_frames.at(i).buildInspectorObject());
84 return frames;
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstacktrace_android-inl.h54 uintptr_t* frames; member in struct:stack_crawl_state_t
60 stack_crawl_state_t(uintptr_t* frames, int max_depth, int skip_count) argument
61 : frames(frames),
93 state->frames[state->frame_count++] = ip;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAnimationDrawable.java14 private List<Drawable> frames = new ArrayList<Drawable>(); field in class:ShadowAnimationDrawable
19 frames.add(frame);
24 return frames.size();
37 return frames;
/external/webrtc/test/testsupport/metrics/
H A Dvideo_metrics.h27 // The frames in this data structure are 0-indexed.
41 std::vector<FrameResult> frames; member in struct:webrtc::test::QualityMetricsResult
52 // This function only compares video frames up to the point when the shortest
72 // This function only compares video frames up to the point when the shortest
93 // This function only compares video frames up to the point when the shortest
/external/chromium_org/media/audio/
H A Dvirtual_audio_output_stream.cc80 const int frames = callback_->OnMoreData(audio_bus, AudioBuffersState()); local
81 if (frames < audio_bus->frames())
82 audio_bus->ZeroFramesPartial(frames, audio_bus->frames() - frames);
84 return frames > 0 ? volume_ : 0;
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglapi_gentable.c72 void *frames[2]; local
74 if(backtrace(frames, 2) == 2) {
76 dladdr(frames[1], &info);
/external/libvpx/libvpx/test/
H A Dsuperframe_test.cc50 const int frames = (marker & 0x7) + 1; local
52 const unsigned int index_sz = 2 + mag * frames;
71 // Make sure we do a few frames after the last SF

Completed in 4131 milliseconds

12345678