HomeSort by relevance Sort by last modified time
    Searched refs:frames (Results 26 - 50 of 807) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/webrtc/common_audio/resampler/
push_sinc_resampler.cc 80 void PushSincResampler::Run(int frames, float* destination) {
83 assert(source_available_ == frames);
88 memset(destination, 0, frames * sizeof(float));
94 memcpy(destination, source_ptr_, frames * sizeof(float));
96 for (int i = 0; i < frames; ++i)
99 source_available_ -= frames;
  /external/e2fsprogs/debian/scripts/
test-backtrace 15 int frames;
17 frames = backtrace(stack_syms, 32);
18 backtrace_symbols_fd(stack_syms, frames, 0);
  /bionic/libc/bionic/
debug_stacktrace.cpp 85 uintptr_t* frames; member in struct:stack_crawl_state_t
90 stack_crawl_state_t(uintptr_t* frames, size_t max_depth)
91 : frames(frames), frame_count(0), max_depth(max_depth), have_skipped_self(false) {
124 state->frames[state->frame_count++] = ip;
128 __LIBC_HIDDEN__ int get_backtrace(uintptr_t* frames, size_t max_depth) {
131 stack_crawl_state_t state(frames, max_depth);
136 __LIBC_HIDDEN__ void log_backtrace(uintptr_t* frames, size_t frame_count) {
140 if (frames == NULL) {
142 frames = self_bt
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
Mosaic.cpp 41 if (frames[i])
42 delete frames[i];
44 delete frames;
76 frames = new MosaicFrame *[max_frames];
83 frames[i] = new MosaicFrame(this->width,this->height,false); // Do no allocate memory for YUV data
90 frames[i] = NULL;
136 if(frames[frames_size]==NULL)
137 frames[frames_size] = new MosaicFrame(this->width,this->height,false);
139 MosaicFrame *frame = frames[frames_size];
204 ret = blender->runBlend((MosaicFrame **) frames, (MosaicFrame **) rframes,
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Mosaic.cpp 44 if (frames[i])
45 delete frames[i];
47 delete frames;
79 frames = new MosaicFrame *[max_frames];
86 frames[i] = new MosaicFrame(this->width,this->height,false); // Do no allocate memory for YUV data
93 frames[i] = NULL;
102 LOGV("Max num frames %d", max_frames);
144 if(frames[frames_size]==NULL)
145 frames[frames_size] = new MosaicFrame(this->width,this->height,false);
147 MosaicFrame *frame = frames[frames_size]
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Mosaic.cpp 44 if (frames[i])
45 delete frames[i];
47 delete frames;
75 frames = new MosaicFrame *[max_frames];
82 frames[i] = new MosaicFrame(this->width,this->height,false); // Do no allocate memory for YUV data
89 frames[i] = NULL;
97 LOGV("Max num frames %d", max_frames);
131 if(frames[frames_size]==NULL)
132 frames[frames_size] = new MosaicFrame(this->width,this->height,false);
134 MosaicFrame *frame = frames[frames_size]
    [all...]
  /external/chromium_org/media/base/
audio_fifo.cc 40 AudioFifo::AudioFifo(int channels, int frames)
41 : audio_bus_(AudioBus::Create(channels, frames)),
42 max_frames_(frames),
50 int AudioFifo::frames() const { function in class:media::AudioFifo
60 const int source_size = source->frames();
61 CHECK_LE(source_size + frames(), max_frames_);
83 DCHECK_LE(frames(), max_frames());
94 CHECK_LE(frames_to_consume, frames());
98 CHECK_LE(frames_to_consume + start_frame, destination->frames());
audio_converter.cc 135 CreateUnmixedAudioIfNecessary(dest->frames());
147 resampler_->Resample(temp_dest->frames(), temp_dest);
154 DCHECK_EQ(temp_dest->frames(), dest->frames());
167 mixer_input_audio_bus_->frames() != dest->frames()) {
169 AudioBus::Create(input_channel_count_, dest->frames());
176 CreateUnmixedAudioIfNecessary(dest->frames());
181 DCHECK_EQ(temp_dest->frames(), mixer_input_audio_bus_->frames());
    [all...]
multi_channel_resampler.h 24 // frames are available to satisfy the request. |frame_delay| is the number
25 // of output frames already processed and can be used to estimate delay.
31 // frames of the AudioBus to be filled by |read_cb|.
38 // Resamples |frames| of data from |read_cb_| into AudioBus.
39 void Resample(int frames, AudioBus* audio_bus);
50 // The maximum size in frames that guarantees Resample() will only make a
57 void ProvideInput(int channel, int frames, float* destination);
72 // The number of output frames that have successfully been processed during
multi_channel_resampler_unittest.cc 45 void InitializeAudioData(int channels, int frames) {
46 frames_ = frames;
47 audio_bus_ = AudioBus::Create(channels, frames);
59 for (int j = 0; j < audio_bus->frames(); ++j)
63 void MultiChannelTest(int channels, int frames, double expected_max_rms_error,
65 InitializeAudioData(channels, frames);
77 EXPECT_LT(last_frame_delay_, audio_bus_->frames());
81 resampler.Resample(frames, audio_bus_.get());
  /bootable/recovery/
interlace-frames.py 15 """Script to take a set of frames (PNG files) for a recovery animation
16 and turn it into a single output image which contains the input frames
17 interlaced by row. Run with the names of all the input frames on the
28 frames = [Image.open(fn).convert("RGB") for fn in sys.argv[1:-1]] variable
29 assert len(frames) > 0, "Must have at least one input frame."
31 for fr in frames:
36 N = len(frames)
41 for fn, f in enumerate(frames):
45 # chunk that specifies how many frames this animation represents. If
51 meta.add_text("Frames", str(N)
    [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/chromium_org/content/browser/
session_history_browsertest.cc 58 // Simulate clicking a link. Only works on the frames.html testserver page.
64 // Simulate filling in form data. Only works on the frames.html page with
74 // Simulate submitting a form. Only works on the frames.html page with
184 ASSERT_NO_FATAL_FAILURE(NavigateAndCheckTitle("frames.html", "bot1"));
188 GURL frames(GetURL("frames.html"));
189 EXPECT_EQ(frames, GetTabURL());
193 EXPECT_EQ(frames, GetTabURL());
199 EXPECT_EQ(frames, GetTabURL());
203 EXPECT_EQ(frames, GetTabURL())
    [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/net/quic/
quic_ack_notifier_manager.cc 76 // Run through all the frames and if any of them are stream frames and have
80 RetransmittableFrames* frames = serialized_packet.retransmittable_frames; local
82 // AckNotifiers can only be attached to retransmittable frames.
83 if (!frames) {
87 for (QuicFrames::const_iterator it = frames->frames().begin();
88 it != frames->frames().end(); ++it) {
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
framedrop_primitives_unittest.cc 44 std::vector<Frame*> frames; local
53 frames.push_back(&first_frame);
54 frames.push_back(&second_frame);
55 frames.push_back(&third_frame);
56 frames.push_back(&fourth_frame);
58 // Prepare data for the first and third frames:
64 // Write the first and third frames to the temporary file. This means the fix
65 // method should add two frames of data by filling the file with data from
66 // the first and third frames after executing.
75 FixOutputFileForComparison(kOutputFilename, kFrameLength, frames);
    [all...]
  /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");
  /dalvik/hit/src/com/android/hit/
StackTrace.java 25 * For subsets of the stack frame we'll reference the parent list of frames
37 public StackTrace(int serial, int thread, StackFrame[] frames) {
40 mFrames = frames;
  /external/chromium_org/chrome/test/chromedriver/
session.cc 69 frames.clear();
73 if (!frames.empty())
74 frames.pop_back();
80 if (!frames.empty())
81 parent_frame_id = frames.back().frame_id;
82 frames.push_back(FrameInfo(parent_frame_id, frame_id, chromedriver_frame_id));
86 if (frames.empty())
88 return frames.back().frame_id;
  /external/lldb/test/functionalities/conditional_break/
conditional_break.py 15 # We check the call frames in order to stop only when the immediate caller
22 if (thread.frames[0].function.name == 'c' and thread.frames[1].function.name == 'a'):
  /external/chromium_org/content/renderer/
savable_resources.cc 47 // Collection of all frames we go through when getting all savable resource
49 std::vector<WebFrame*>* frames; member in struct:content::__anon12100::SavableResourcesUniqueCheck
54 frames(NULL) {}
57 std::set<GURL>* frames_set, std::vector<WebFrame*>* frames)
60 frames(frames) {}
77 unique_check->frames->push_back(sub_frame);
199 std::vector<WebFrame*> frames; local
202 &frames);
213 frames.push_back(main_frame)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebPageSerializerTest.cpp 114 WebVector<WebURL> frames; local
117 webView(), m_supportedSchemes, &resources, &frames));
120 EXPECT_EQ(1U, frames.size()); // There should be no duplicates.
121 EXPECT_TRUE(webVectorContains(frames, "http://www.test.com"));
142 // Register the mocked frames.
160 WebVector<WebURL> frames; local
163 webView(), m_supportedSchemes, &resources, &frames));
166 EXPECT_EQ(4U, frames.size()); // There should be no duplicates.
167 EXPECT_TRUE(webVectorContains(frames, "http://www.test.com"));
168 EXPECT_TRUE(webVectorContains(frames, "http://www.test.com/simple_iframe.html"))
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
ExceptionExtensions.cs 49 StackFrame[] frames = trace.GetFrames();
50 if (frames == null) {
53 Array.Copy(stackTrace, 1, frames, 0, stackTrace.Length);
55 return frames;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ExceptionExtensions.cs 54 StackFrame[] frames = trace.GetFrames();
55 if ( frames == null )
58 frames = new StackTrace( true ).GetFrames().Skip( 1 ).ToArray();
60 return frames;
  /external/chromium_org/chrome/browser/ui/libgtk2ui/
chrome_gtk_frame.h 42 MetaFrames frames; member in struct:_ChromeGtkFrame

Completed in 1887 milliseconds

12 3 4 5 6 7 8 91011>>