HomeSort by relevance Sort by last modified time
    Searched defs:frames (Results 1 - 25 of 299) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/srec/srec/ca/
utt_proc.c 40 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_org/third_party/WebKit/Source/core/inspector/
ScriptCallStack.cpp 38 PassRefPtr<ScriptCallStack> ScriptCallStack::create(Vector<ScriptCallFrame>& frames)
40 return adoptRef(new ScriptCallStack(frames));
43 ScriptCallStack::ScriptCallStack(Vector<ScriptCallFrame>& frames)
45 m_frames.swap(frames);
82 RefPtr<TypeBuilder::Array<TypeBuilder::Console::CallFrame> > frames = TypeBuilder::Array<TypeBuilder::Console::CallFrame>::create(); local
84 frames->addItem(m_frames.at(i).buildInspectorObject());
85 return frames;
  /external/chromium/chrome/browser/ui/gtk/
chrome_gtk_frame.h 44 MetaFrames frames; member in struct:_ChromeGtkFrame
  /external/chromium/net/websockets/
websocket_frame_handler_unittest.cc 47 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[1].message_length)
68 std::vector<WebSocketFrameHandler::FrameInfo> frames; local
106 std::vector<WebSocketFrameHandler::FrameInfo> frames; local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
chrome_gtk_frame.h 42 MetaFrames frames; member in struct:_ChromeGtkFrame
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
chrome_gtk_frame.h 42 MetaFrames frames; member in struct:_ChromeGtkFrame
  /external/chromium_org/media/audio/
virtual_audio_output_stream.cc 80 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/media/base/
audio_buffer_queue.h 36 // 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 are converted fro
58 int frames() const { return frames_; } function in class:media::AudioBufferQueue
    [all...]
audio_buffer_queue_unittest.cc 20 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, kNoTime, kNoTime))
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...]
audio_buffer_unittest.cc 15 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);
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...]
audio_bus.h 28 // 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);
54 // and frames.
55 static int CalculateMemorySize(int channels, int frames);
62 // any unfilled frames when |frames| is less than frames().
63 void FromInterleaved(const void* source, int frames, int bytes_per_sample)
96 int frames() const { return frames_; } function in class:media::AudioBus
    [all...]
audio_pull_fifo.cc 14 AudioPullFifo::AudioPullFifo(int channels, int frames, const ReadCB& read_cb)
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 <= 0
    [all...]
audio_fifo.cc 43 AudioFifo::AudioFifo(int channels, int frames)
44 : audio_bus_(AudioBus::Create(channels, frames)),
45 max_frames_(frames),
53 int AudioFifo::frames() const { function in class:media::AudioFifo
64 const int source_size = source->frames();
65 CHECK_LE(source_size + frames(), max_frames_);
92 DCHECK_LE(frames(), max_frames());
103 CHECK_LE(frames_to_consume, frames());
107 CHECK_LE(frames_to_consume + start_frame, destination->frames());
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
FramePool.java 46 // Maps each summary code (see summarizeFrameDimensions()) to a list of frames
58 LinkedList<I420Frame> frames = availableFrames.get(desc); local
59 if (frames == null) {
60 frames = new LinkedList<I420Frame>();
61 availableFrames.put(desc, frames);
63 if (!frames.isEmpty()) {
64 dst = frames.pop();
76 LinkedList<I420Frame> frames = availableFrames.get(desc); local
77 if (frames == null) {
80 frames.add(frame)
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glapi_gentable.c 72 void *frames[2]; local
74 if(backtrace(frames, 2) == 2) {
76 dladdr(frames[1], &info);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_android-inl.h 54 uintptr_t* frames; member in struct:stack_crawl_state_t
60 stack_crawl_state_t(uintptr_t* frames, int max_depth, int skip_count)
61 : frames(frames),
93 state->frames[state->frame_count++] = ip;
106 // GetStack{Trace,Frames}()
107 // GetStack{Trace,Frames}WithContext()
115 // void* ucp: a ucontext_t* (GetStack{Trace,Frames}WithContext only)
  /external/libvpx/libvpx/test/
superframe_test.cc 50 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
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAnimationDrawable.java 14 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/
video_metrics.h 27 // 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
  /system/core/libcorkscrew/
test.cpp 8 backtrace_frame_t* frames = (backtrace_frame_t*) malloc(sizeof(backtrace_frame_t) * MAX_DEPTH); local
9 ssize_t frame_count = unwind_backtrace(frames, 0, MAX_DEPTH);
16 get_backtrace_symbols(frames, frame_count, backtrace_symbols);
20 format_backtrace_line(i, &frames[i], &backtrace_symbols[i],
34 symbol = find_symbol(symbols, frames[i].absolute_pc);
37 int offset = frames[i].absolute_pc - symbol->start;
48 free(frames);
  /external/chromium_org/content/renderer/
savable_resources.cc 46 // Collection of all frames we go through when getting all savable resource
48 std::vector<WebFrame*>* frames; member in struct:content::__anon10499::SavableResourcesUniqueCheck
53 frames(NULL) {}
56 std::set<GURL>* frames_set, std::vector<WebFrame*>* frames)
59 frames(frames) {}
76 unique_check->frames->push_back(sub_frame);
202 std::vector<WebFrame*> frames; local
205 &frames);
216 frames.push_back(main_frame)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebPageSerializerTest.cpp 121 WebVector<WebURL> frames; local
124 m_webView, m_supportedSchemes, &resources, &frames));
127 EXPECT_EQ(1U, frames.size()); // There should be no duplicates.
128 EXPECT_TRUE(webVectorContains(frames, "http://www.test.com"));
149 // Register the mocked frames.
167 WebVector<WebURL> frames; local
170 m_webView, m_supportedSchemes, &resources, &frames));
173 EXPECT_EQ(4U, frames.size()); // There should be no duplicates.
174 EXPECT_TRUE(webVectorContains(frames, "http://www.test.com"));
175 EXPECT_TRUE(webVectorContains(frames, "http://www.test.com/simple_iframe.html"))
    [all...]
  /external/chromium_org/third_party/opus/src/src/
opus_private.h 38 const unsigned char *frames[48]; member in struct:OpusRepacketizer
repacketizer.c 85 ret=opus_packet_parse(data, len, &tmp_toc, &rp->frames[rp->nb_frames], &rp->len[rp->nb_frames], NULL);
102 const unsigned char **frames; local
112 frames = rp->frames+begin;
192 OPUS_COPY(data, frames[i], len[i]);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DebugLogUtils.java 49 * @param limit the maximum number of stack frames to be returned.
57 final StackTraceElement[] frames = e.getStackTrace(); local
59 for (int j = 1; j < frames.length && j < limit + 1; ++j) {
60 sb.append(frames[j].toString() + "\n");
73 final StackTraceElement[] frames = t.getStackTrace(); local
74 for (int j = 0; j < frames.length; ++j) {
75 sb.append(frames[j].toString() + "\n");

Completed in 425 milliseconds

1 2 3 4 5 6 7 8 91011>>