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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/DebugInfo/
dwarfdump-debug-frame-simple.test 1 ; RUN: llvm-dwarfdump %p/Inputs/dwarfdump-test-32bit.elf.o -debug-dump=frames | FileCheck %s -check-prefix FRAMES
4 ; FRAMES: .debug_frame
5 ; FRAMES-NOT: .eh_frame
7 ; FRAMES: 00000000 00000010 ffffffff CIE
8 ; FRAMES: Version: 1
9 ; FRAMES: DW_CFA_def_cfa
10 ; FRAMES-NEXT: DW_CFA_offset
11 ; FRAMES-NEXT: DW_CFA_nop
12 ; FRAMES-NEXT: DW_CFA_no
    [all...]
  /external/chromium_org/net/websockets/
websocket_deflate_stream_test.cc 74 void AppendTo(ScopedVector<WebSocketFrame>* frames,
83 frames->push_back(frame.release());
86 void AppendTo(ScopedVector<WebSocketFrame>* frames,
92 frames->push_back(frame.release());
116 ADD_FAILURE() << "There are missing frames to be input.";
120 ADD_FAILURE() << "There are extra written frames.";
126 virtual Result Predict(const ScopedVector<WebSocketFrame>& frames,
132 ADD_FAILURE() << "Control frames should not be recorded.";
151 ADD_FAILURE() << "Control frames should not be recorded.";
171 ADD_FAILURE() << "There are missing frames to be written."
309 ScopedVector<WebSocketFrame>* frames() { return &frames_; } function in class:net::__anon9609::WriteFramesStub
319 ScopedVector<WebSocketFrame> frames; local
336 ScopedVector<WebSocketFrame> frames; local
354 ScopedVector<WebSocketFrame> frames; local
385 ScopedVector<WebSocketFrame> frames; local
418 ScopedVector<WebSocketFrame> frames; local
437 ScopedVector<WebSocketFrame> frames; local
475 ScopedVector<WebSocketFrame> frames; local
512 ScopedVector<WebSocketFrame> frames; local
538 ScopedVector<WebSocketFrame> frames; local
563 ScopedVector<WebSocketFrame> frames; local
594 ScopedVector<WebSocketFrame> frames; local
622 ScopedVector<WebSocketFrame> frames; local
649 ScopedVector<WebSocketFrame> frames; local
683 ScopedVector<WebSocketFrame> frames; local
725 ScopedVector<WebSocketFrame> frames; local
749 ScopedVector<WebSocketFrame> frames; local
773 ScopedVector<WebSocketFrame> frames; local
804 ScopedVector<WebSocketFrame> frames; local
837 ScopedVector<WebSocketFrame> frames; local
870 ScopedVector<WebSocketFrame> frames; local
890 ScopedVector<WebSocketFrame> frames; local
900 ScopedVector<WebSocketFrame> frames; local
915 ScopedVector<WebSocketFrame> frames; local
940 ScopedVector<WebSocketFrame> frames; local
965 ScopedVector<WebSocketFrame> frames; local
992 ScopedVector<WebSocketFrame> frames; local
1013 ScopedVector<WebSocketFrame> frames; local
1058 ScopedVector<WebSocketFrame> frames; local
1097 ScopedVector<WebSocketFrame> frames; local
1125 ScopedVector<WebSocketFrame> frames; local
1156 ScopedVector<WebSocketFrame> frames; local
    [all...]
websocket_deflate_predictor.h 35 // which begins with |frames[frame_index]| or not.
36 // |frames[(frame_index + 1):]| consists of future frames if any.
37 // |frames[frame_index]| must be the first frame of a data message,
38 // but future frames may contain control message frames.
39 // |frames[frame_index]| cannot be recorded yet and all preceding
40 // data frames have to be already recorded when this method is called.
41 virtual Result Predict(const ScopedVector<WebSocketFrame>& frames,
45 // Only data frames should be recorded. Do not pass control frames' data
    [all...]
websocket_deflate_stream.h 31 // data message frames, the control frame can overtake data frames.
32 // Say there are frames df1, df2 and cf, df1 and df2 are frames of a
34 // data frames may follow cf.
48 virtual int ReadFrames(ScopedVector<WebSocketFrame>* frames,
50 virtual int WriteFrames(ScopedVector<WebSocketFrame>* frames,
70 void OnReadComplete(ScopedVector<WebSocketFrame>* frames,
74 // This function deflates |frames| and stores the result to |frames| itself
    [all...]
websocket_deflate_stream.cc 55 int WebSocketDeflateStream::ReadFrames(ScopedVector<WebSocketFrame>* frames,
60 base::Unretained(frames),
62 int result = stream_->ReadFrames(frames, callback_to_pass);
66 return InflateAndReadIfNecessary(frames, callback_to_pass);
69 int WebSocketDeflateStream::WriteFrames(ScopedVector<WebSocketFrame>* frames,
71 int result = Deflate(frames);
74 if (frames->empty())
76 return stream_->WriteFrames(frames, callback);
90 ScopedVector<WebSocketFrame>* frames,
94 frames->clear()
    [all...]
websocket_deflate_predictor_impl_test.cc 20 ScopedVector<WebSocketFrame> frames; local
21 frames.push_back(new WebSocketFrame(WebSocketFrameHeader::kOpCodeText));
22 Result result = predictor.Predict(frames, 0);
  /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/media/base/
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_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_fifo_unittest.cc 31 EXPECT_EQ(fifo.frames(), 0);
42 EXPECT_EQ(fifo.frames(), 0);
44 EXPECT_EQ(fifo.frames(), bus->frames());
50 EXPECT_EQ(fifo.frames(), 0);
52 EXPECT_EQ(fifo.frames(), bus->frames());
65 EXPECT_EQ(fifo.frames(), kMaxFrameCount);
70 fifo.Consume(bus.get(), 0, bus->frames());
71 EXPECT_TRUE(fifo.frames() == bus->frames())
    [all...]
audio_bus.cc 24 static int CalculateMemorySizeInternal(int channels, int frames,
29 ((frames * sizeof(float) + AudioBus::kChannelAlignment - 1) &
43 int frames, AudioBus* dest,
51 for (int i = start_frame, offset = ch; i < start_frame + frames;
64 int frames, void* dst, Fixed min, Fixed max) {
71 for (int i = start_frame, offset = ch; i < start_frame + frames;
86 static void ValidateConfig(int channels, int frames) {
87 CHECK_GT(frames, 0);
92 static void CheckOverflow(int start_frame, int frames, int total_frames) {
94 CHECK_GE(frames, 0)
197 ValidateConfig(static_cast<int>(channel_data_.size()), frames); 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_fifo.h 15 // The maximum number of audio frames in the FIFO is set at construction and
22 // Creates a new AudioFifo and allocates |channels| of length |frames|.
23 AudioFifo(int channels, int frames);
30 // Consumes |frames_to_consume| audio frames from the FIFO and copies
33 // frames or if there is insufficient space in |destination| to store the
34 // frames.
40 // Number of actual audio frames in the FIFO.
41 int frames() const;
50 // This value is set by |frames| in the constructor.
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_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);
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, int bytes_per_sample)
95 int frames() const { return frames_; } function in class:media::AudioBus
    [all...]
audio_hash_unittest.cc 31 wrapped_bus->set_frames(audio_bus->frames());
54 hash_one.Update(bus_one_.get(), bus_one_->frames());
57 hash_two.Update(bus_one_.get(), bus_one_->frames());
65 original_hash.Update(bus_one_.get(), bus_one_->frames());
71 swapped_hash.Update(bus_one_.get(), bus_one_->frames());
79 original_hash.Update(bus_one_.get(), bus_one_->frames());
84 swapped_ch_bus->set_frames(bus_one_->frames());
89 swapped_hash.Update(swapped_ch_bus.get(), swapped_ch_bus->frames());
97 original_hash.Update(bus_one_.get(), bus_one_->frames());
98 original_hash.Update(bus_two_.get(), bus_two_->frames());
    [all...]
audio_buffer_queue.cc 38 // Update the |frames_| counter since we have added frames.
43 int AudioBufferQueue::ReadFrames(int frames,
46 DCHECK_GE(dest->frames(), frames + dest_frame_offset);
47 return InternalRead(frames, true, 0, dest_frame_offset, dest);
50 int AudioBufferQueue::PeekFrames(int frames,
54 DCHECK_GE(dest->frames(), frames);
56 frames, false, source_frame_offset, dest_frame_offset, dest);
59 void AudioBufferQueue::SeekFrames(int frames) {
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2564.js 33 Error.prepareStackTrace = function(error, frames) {
36 assertEquals(5, frames.length);
38 for (var i = 0; i < frames.length - 1; i++) {
39 assertEquals(o[i], frames[i].getFunction());
40 assertEquals(o, frames[i].getThis());
42 assertEquals(undefined, frames[i].receiver);
43 assertEquals(undefined, frames[i].fun);
44 assertEquals(undefined, frames[i].pos);
64 Error.prepareStackTrace = function(error, frames) {
67 assertEquals(5, frames.length)
    [all...]
  /external/chromium_org/v8/test/mjsunit/
eval-stack-trace.js 28 // Return the stack frames of an Error object.
30 Error.prepareStackTrace = function(error, frames) {
31 return frames;
35 var frames = this.stack;
36 return frames;
45 Array.prototype.verifyEquals = function(frames, func_name) {
48 var frame = frames[index];
57 Array.prototype.verifyContains = function(frames, func_name) {
60 var frame = frames[index];
69 Array.prototype.verifyUndefined = function(frames, func_name)
    [all...]
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/
NaClAM.js 7 this.frames = new Array();
12 this.frames = new Array();
58 if (typeof(header['frames']) != "number") {
59 console.log('Header message frames is not a number.');
62 this.framesLeft = header['frames'];
67 this.message.frames.push(event.data);
85 if (header['frames'] == undefined) {
86 console.log('NaClAM: Message header does not contain frames.');
89 if (typeof(header['frames']) != "number") {
90 console.log('NaClAm: Message frames is not a number.')
    [all...]
  /external/chromium_org/third_party/WebKit/ManualTests/
window-print-subframe.html 2 window.onload = function() { frames[0].print(); }
  /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/kernel-headers/original/linux/can/
bcm.h 22 * @count: number of frames to send before changing interval.
23 * @ival1: interval for the first @count frames.
24 * @ival2: interval for the following frames.
25 * @can_id: CAN ID of frames to be sent or received.
26 * @nframes: number of frames appended to the message head.
27 * @frames: array of CAN frames.
36 struct can_frame frames[0]; member in struct:bcm_msg_head
  /external/chromium_org/content/renderer/media/
video_frame_provider.h 18 // Define an interface to provide a sequence of video frames to clients.
27 // Start to provide video frames to the caller.
30 // Stop to provide video frames to the caller.
33 // Resume to provide video frames to the caller after being paused.
37 // frames, but the provider might still generate video frames which are
  /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;

Completed in 1513 milliseconds

1 2 3 4 5 6 7 8 91011>>