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

12 3 4 5 6 7 8 91011>>

  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Blend.h 37 // of the input image frames for them to be accepted for blending in the
76 int runBlend(MosaicFrame **frames, MosaicFrame **rframes, int frames_size, ImageType &imageMosaicYVU,
94 // Height and width of individual frames
105 void AlignToMiddleFrame(MosaicFrame **frames, int frames_size);
107 int DoMergeAndBlend(MosaicFrame **frames, int nsite, int width, int height, YUVinfo &imgMos, MosaicRect &rect, MosaicRect &cropping_rect, float &progress, bool &cancelComputation);
114 void ComputeBlendParameters(MosaicFrame **frames, int frames_size, int is360);
115 void SelectRelevantFrames(MosaicFrame **frames, int frames_size,
  /external/v8/test/mjsunit/
debug-backtrace.js 109 var frames = backtrace.frames;
110 assertEquals(4, frames.length);
111 for (var i = 0; i < frames.length; i++) {
112 assertEquals('frame', frames[i].type);
114 assertEquals(0, frames[0].index);
115 assertEquals("f", response.lookup(frames[0].func.ref).name);
116 assertEquals(1, frames[1].index);
117 assertEquals("", response.lookup(frames[1].func.ref).name);
118 assertEquals("m", response.lookup(frames[1].func.ref).inferredName)
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
StorageAreaProxy.cpp 118 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
120 Vector<RefPtr<Frame> > frames;
125 frames.append(frame);
128 for (unsigned i = 0; i < frames.size(); ++i) {
130 Storage* storage = frames[i]->domWindow()->sessionStorage(ec);
132 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
141 frames.append(frame);
145 for (unsigned i = 0; i < frames.size(); ++i) {
147 Storage* storage = frames[i]->domWindow()->localStorage(ec);
149 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, (…)
    [all...]
  /external/webrtc/test/testsupport/metrics/
video_metrics.cc 50 result->frames.push_back(frame_result);
55 if (result == NULL || result->frames.size() == 0) {
61 for (iter = result->frames.begin(); iter != result->frames.end(); ++iter) {
64 result->average = metrics_values_sum / result->frames.size();
67 iter = min_element(result->frames.begin(), result->frames.end(),
71 iter = max_element(result->frames.begin(), result->frames.end(),
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
  /frameworks/av/media/libstagefright/rtsp/
ARTPAssembler.h 53 const List<sp<ABuffer> > &frames);
56 const List<sp<ABuffer> > &frames);
ARTPAssembler.cpp 76 const List<sp<ABuffer> > &frames) {
78 for (List<sp<ABuffer> >::const_iterator it = frames.begin();
79 it != frames.end(); ++it) {
86 for (List<sp<ABuffer> >::const_iterator it = frames.begin();
87 it != frames.end(); ++it) {
116 CopyTimes(accessUnit, *frames.begin());
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
pcm_rate.h 96 snd_pcm_uframes_t (*input_frames)(void *obj, snd_pcm_uframes_t frames);
100 snd_pcm_uframes_t (*output_frames)(void *obj, snd_pcm_uframes_t frames);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
pcm_rate.h 96 snd_pcm_uframes_t (*input_frames)(void *obj, snd_pcm_uframes_t frames);
100 snd_pcm_uframes_t (*output_frames)(void *obj, snd_pcm_uframes_t frames);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
pcm_rate.h 96 snd_pcm_uframes_t (*input_frames)(void *obj, snd_pcm_uframes_t frames);
100 snd_pcm_uframes_t (*output_frames)(void *obj, snd_pcm_uframes_t frames);
  /external/chromium/chrome/browser/ui/gtk/
chrome_gtk_frame.h 44 MetaFrames frames; member in struct:_ChromeGtkFrame
  /system/core/include/corkscrew/
backtrace.h 56 * Returns the number of frames collected, or -1 if an error occurred.
63 * Returns the number of frames collected, or -1 if an error occurred.
73 * Returns the number of frames collected, or -1 if an error occurred.
83 void get_backtrace_symbols(const backtrace_frame_t* backtrace, size_t frames,
92 const backtrace_frame_t* backtrace, size_t frames,
98 void free_backtrace_symbols(backtrace_symbol_t* backtrace_symbols, size_t frames);
  /external/compiler-rt/lib/asan/scripts/
symbolize.py 82 frames = []
93 frames.append((function_name, file_name))
96 if not frames:
97 frames.append(('', ''))
104 for frame in frames:
  /external/chromium/webkit/glue/
dom_operations.cc 47 // Collection of all frames we go through when getting all savable resource
49 std::vector<WebFrame*>* frames; member in struct:__anon5328::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);
205 std::vector<WebFrame*> frames; local
208 &frames);
219 frames.push_back(main_frame)
    [all...]
  /external/tinyalsa/
pcm.c 233 unsigned int pcm_frames_to_bytes(struct pcm *pcm, unsigned int frames)
235 return frames * pcm->config.channels *
311 unsigned int frames)
313 int size_bytes = pcm_frames_to_bytes(pcm, frames);
328 unsigned int pcm_offset, frames, count = 0; local
331 frames = size;
332 pcm_mmap_begin(pcm, &pcm_areas, &pcm_offset, &frames);
333 pcm_areas_copy(pcm, pcm_offset, src, offset, frames);
334 commit = pcm_mmap_commit(pcm, pcm_offset, frames);
336 oops(pcm, commit, "failed to commit %d frames\n", frames)
350 int frames; local
924 int err = 0, frames, avail; local
    [all...]
  /external/quake/quake/src/WinQuake/
cl_demo.cpp 335 int frames; local
341 frames = (host_framecount - cls.td_startframe) - 1;
345 LOGANDPRINT(("%i frames %5.3f seconds %5.3f fps\n", frames, time, frames/time));
346 if (frames > 0)
349 LOGANDPRINT(("Average: %5.1f ms\n", (time / frames) * 1000.0));
  /external/webkit/Source/WebKit/chromium/public/
WebPageSerializer.h 45 // Get html data by serializing all frames of current page with lists
49 // This function will find out all frames and serialize them to HTML data.
58 // serialize all sub frames of the specified frame or not.
66 // contain all saved auxiliary files included all sub frames and resources.
75 // and sub-frames. Returns true if all resources were retrieved
80 WebVector<WebURL>* frames);
  /sdk/emulator/qtools/
read_method.cpp 29 frame *frames[kMaxFrames]; member in class:Stack
46 frames[top] = pframe;
54 return frames[top];
61 pframe = frames[ii];
  /system/media/audio_utils/include/audio_utils/
sndfile.h 35 sf_count_t frames; member in struct:__anon44082
61 // Read interleaved frames and return actual number of frames read
64 // Write interleaved frames and return actual number of frames written
  /external/javassist/src/test/test/javassist/bytecode/analysis/
AnalyzerTest.java 72 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), info); local
73 assertNotNull(frames);
75 Frame frame = frames[pos];
106 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), info); local
107 assertNotNull(frames);
108 Frame frame = frames[pos];
126 Frame[] frames = analyzer.analyze(clazz, info); local
127 assertNotNull(frames);
128 Frame frame = frames[pos];
135 frame = frames[pos]
151 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), method.getMethodInfo2()); local
    [all...]
  /system/core/debuggerd/
backtrace.c 95 ssize_t frames = unwind_backtrace_ptrace(tid, context, backtrace, 0, STACK_DEPTH); local
96 if (frames <= 0) {
100 get_backtrace_symbols_ptrace(context, backtrace, frames, backtrace_symbols);
101 for (size_t i = 0; i < (size_t)frames; i++) {
107 free_backtrace_symbols(backtrace_symbols, frames);
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
HprofData.java 181 StringBuilder frames = new StringBuilder(); local
183 frames.append('\n');
185 frames.append("\t at ");
186 frames.append(stackFrame);
187 frames.append('\n');
190 frames.append("<empty>");
194 + ", frames=" + frames + "]";
  /frameworks/wilhelm/tools/permute/
permute.c 75 /** Split the specified range of frames, using the allowed budget of segments.
202 switch (sfinfo_in.frames) {
205 fprintf(stderr, "%s: unsupported frames %d\n", path_in, (int) sfinfo_in.frames);
212 double durationSeconds = (double) sfinfo_in.frames / (double) sfinfo_in.samplerate;
224 used = split(&s, 0, sfinfo_in.frames, s.mSegmentMax);
241 void *ptr = malloc(sfinfo_in.frames * frameSizeRead);
244 count = sf_readf_short(sf_in, ptr, sfinfo_in.frames);
245 if (count != sfinfo_in.frames) {
246 fprintf(stderr, "%s: expected to read %d frames but actually read %d frames\n", path_in
    [all...]
  /system/core/libcorkscrew/
backtrace.c 160 ssize_t frames = -1; local
212 frames = g_unwind_signal_state.returned_frames;
220 return frames;
243 void get_backtrace_symbols(const backtrace_frame_t* backtrace, size_t frames,
246 for (size_t i = 0; i < frames; i++) {
270 const backtrace_frame_t* backtrace, size_t frames,
272 for (size_t i = 0; i < frames; i++) {
294 void free_backtrace_symbols(backtrace_symbol_t* backtrace_symbols, size_t frames) {
295 for (size_t i = 0; i < frames; i++) {
  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 74 * Frame[] frames = analyzer.analyze(clazz, method);
75 * frames[0].getLocal(0).getCtClass(); // returns clazz;
76 * frames[0].getLocal(1).getCtClass(); // returns java.lang.String
77 * frames[1].peek(); // returns Type.INTEGER
78 * frames[27].peek().getCtClass(); // returns java.lang.Number
89 private Frame[] frames; field in class:Analyzer
139 frames = new Frame[codeLength];
140 frames[iter.lookAhead()] = firstFrame(method, maxLocals, maxStack);
146 return frames;
173 Frame frame = frames[pos].copy()
    [all...]

Completed in 1551 milliseconds

12 3 4 5 6 7 8 91011>>