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

123456

/external/google-breakpad/src/google_breakpad/processor/
H A Dcall_stack.h30 // call_stack.h: A call stack comprised of stack frames.
32 // This class manages a vector of stack frames. It is used instead of
40 // caller. CallStack only allows stacks to be built by pushing frames,
65 const vector<StackFrame*>* frames() const { return &frames_; } function in class:google_breakpad::CallStack
71 // Storage for pushed frames.
/external/compiler-rt/test/asan/TestCases/Darwin/
H A Dcrashlog-stacktraces.c18 int i, frames = backtrace(callstack, 128); local
19 char** strs = backtrace_symbols(callstack, frames);
20 for (i = 0; i < frames; ++i) {
/external/libchrome/base/trace_event/
H A Dheap_profiler_allocation_context.h23 // this is the pseudo stack where frames are created by trace event macros. In
28 // The number of stack frames stored in the backtrace is a trade off between
41 // Unused backtrace frames are filled with nullptr frames. If the stack is
42 // higher than what can be stored here, the bottom frames are stored. Based
45 StackFrame frames[12]; member in struct:base::trace_event::Backtrace
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_libcdep.cc33 SymbolizedStack *frames = Symbolizer::GetOrInit()->SymbolizePC(pc); local
34 CHECK(frames);
35 for (SymbolizedStack *cur = frames; cur; cur = cur->next) {
42 frames->ClearAll();
/external/google-breakpad/src/processor/
H A Dstackwalker_address_list.cc50 const uint64_t* frames,
55 frames_(frames),
57 assert(frames);
78 size_t frame_index = stack->frames()->size();
80 // There are no more frames to fetch.
84 // All frames have the highest level of trust because they were
49 StackwalkerAddressList( const uint64_t* frames, size_t frame_count, const CodeModules* modules, StackFrameSymbolizer* frame_symbolizer) argument
H A Dstackwalker_address_list_unittest.cc107 const std::vector<StackFrame*>* frames = call_stack.frames(); local
108 ASSERT_EQ(arraysize(kDummyFrames), frames->size());
110 ASSERT_EQ(kDummyFrames[i], frames->at(i)->instruction);
111 ASSERT_EQ(StackFrame::FRAME_TRUST_PREWALKED, frames->at(i)->trust);
113 ASSERT_EQ(static_cast<const CodeModule*>(&module2), frames->at(0)->module);
114 ASSERT_EQ(static_cast<const CodeModule*>(&module2), frames->at(1)->module);
115 ASSERT_EQ(static_cast<const CodeModule*>(&module2), frames->at(2)->module);
116 ASSERT_EQ(static_cast<const CodeModule*>(&module1), frames->at(3)->module);
117 ASSERT_EQ(static_cast<const CodeModule*>(&module1), frames
177 const std::vector<StackFrame*>* frames = call_stack.frames(); local
[all...]
H A Dstackwalker_amd64.cc129 const vector<StackFrame*> &frames,
131 StackFrameAMD64* last_frame = static_cast<StackFrameAMD64*>(frames.back());
151 const vector<StackFrame*>& frames) {
152 StackFrameAMD64* last_frame = static_cast<StackFrameAMD64*>(frames.back());
197 const vector<StackFrame*> &frames) {
198 StackFrameAMD64* last_frame = static_cast<StackFrameAMD64*>(frames.back());
203 frames.size() == 1 /* is_context_frame */)) {
253 const vector<StackFrame*> &frames = *stack->frames(); local
254 StackFrameAMD64* last_frame = static_cast<StackFrameAMD64*>(frames
128 GetCallerByCFIFrameInfo( const vector<StackFrame*> &frames, CFIFrameInfo* cfi_frame_info) argument
150 GetCallerByFramePointerRecovery( const vector<StackFrame*>& frames) argument
196 GetCallerByStackScan( const vector<StackFrame*> &frames) argument
[all...]
H A Dstackwalker_arm.cc80 const vector<StackFrame*> &frames,
82 StackFrameARM* last_frame = static_cast<StackFrameARM*>(frames.back());
164 const vector<StackFrame*> &frames) {
165 StackFrameARM* last_frame = static_cast<StackFrameARM*>(frames.back());
170 frames.size() == 1 /* is_context_frame */)) {
195 const vector<StackFrame*> &frames) {
196 StackFrameARM* last_frame = static_cast<StackFrameARM*>(frames.back());
247 const vector<StackFrame*> &frames = *stack->frames(); local
248 StackFrameARM* last_frame = static_cast<StackFrameARM*>(frames
79 GetCallerByCFIFrameInfo( const vector<StackFrame*> &frames, CFIFrameInfo* cfi_frame_info) argument
163 GetCallerByStackScan( const vector<StackFrame*> &frames) argument
194 GetCallerByFramePointer( const vector<StackFrame*> &frames) argument
[all...]
/external/robolectric/v1/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/webrtc/common_audio/resampler/
H A Dpush_sinc_resampler.cc81 void PushSincResampler::Run(size_t frames, float* destination) { argument
84 RTC_CHECK_EQ(source_available_, frames);
89 std::memset(destination, 0, frames * sizeof(*destination));
95 std::memcpy(destination, source_ptr_, frames * sizeof(*destination));
97 for (size_t i = 0; i < frames; ++i)
100 source_available_ -= frames;
H A Dsinusoidal_linear_chirp_source.cc34 void SinusoidalLinearChirpSource::Run(size_t frames, float* destination) { argument
35 for (size_t i = 0; i < frames; ++i, ++current_index_) {
/external/webrtc/webrtc/test/testsupport/metrics/
H A Dvideo_metrics.h30 // The frames in this data structure are 0-indexed.
44 std::vector<FrameResult> frames; member in struct:webrtc::test::QualityMetricsResult
58 // This function only compares video frames up to the point when the shortest
82 // This function only compares video frames up to the point when the shortest
102 // This function only compares video frames up to the point when the shortest
/external/webrtc/webrtc/tools/frame_analyzer/
H A Dvideo_quality_analysis.h38 std::vector<AnalysisResult> frames; member in struct:webrtc::test::ResultsContainer
44 // comprises the frames that were captured during the quality measurement test.
45 // There may be missing or duplicate frames. Also the frames start at a random
48 // actual frames in the test file and their position in the reference video, so
49 // that the analysis could run with the right frames from both videos. The stats
62 // frames are exactly the same) will be 48. In the case of SSIM the max return
71 // numbers compatible format to stdout. If the results object contains no frames
79 // Calculates max repeated and skipped frames and prints them to stdout in a
/external/autotest/client/site_tests/camera_V4L2/src/
H A Dmedia_v4l2_test.cc20 "--frames=[NUM] Maximum frame to capture\n"
38 { "frames", required_argument, NULL, 'f' },
51 uint32_t frames = 100; local
86 frames = atoi(optarg);
120 printf("capture %dx%d %c%c%c%c picture for %d frames at %d fps\n",
122 (pixfmt >> 16) & 0xff, (pixfmt >> 24) & 0xff, frames, fps);
138 if (!retcode && !device->Run(frames, time_to_capture))
/external/webrtc/webrtc/common_audio/
H A Daudio_ring_buffer.cc32 size_t frames) {
35 const size_t written = WebRtc_WriteBuffer(buffers_[i], data[i], frames);
36 RTC_CHECK_EQ(written, frames);
40 void AudioRingBuffer::Read(float* const* data, size_t channels, size_t frames) { argument
44 WebRtc_ReadBuffer(buffers_[i], nullptr, data[i], frames);
45 RTC_CHECK_EQ(read, frames);
59 void AudioRingBuffer::MoveReadPositionForward(size_t frames) { argument
62 static_cast<size_t>(WebRtc_MoveReadPtr(buf, static_cast<int>(frames)));
63 RTC_CHECK_EQ(moved, frames);
67 void AudioRingBuffer::MoveReadPositionBackward(size_t frames) { argument
31 Write(const float* const* data, size_t channels, size_t frames) argument
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_suppressions.cc91 SymbolizedStack *frames = symbolizer->SymbolizePC(addr); local
92 for (SymbolizedStack *cur = frames; cur; cur = cur->next) {
100 frames->ClearAll();
104 frames->ClearAll();
/external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
H A DGifHeader.java7 * A header object containing the number of frames in an animated GIF image as well as basic metadata like width and
18 List<GifFrame> frames = new ArrayList<GifFrame>(); field in class:GifHeader
35 //TODO: this is set both during reading the header and while decoding frames...
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
H A DClassFileVersionsTest.java42 * Test class inserted stackmap frames for different class file versions.
86 private void testVersion(int version, boolean frames) throws IOException { argument
93 assertFrames(instrumented, frames);
/external/javassist/src/main/javassist/convert/
H A DTransformAccessArrayField.java40 private Frame[] frames; field in class:TransformAccessArrayField
88 frames = null;
99 return frames[pos - offset]; // Adjust pos
103 if (frames == null) {
104 frames = ((new Analyzer())).analyze(clazz, minfo);
/external/libopus/src/
H A Dopus_private.h39 const unsigned char *frames[48]; member in struct:OpusRepacketizer
121 const unsigned char *frames[48], opus_int16 size[48],
/external/libvpx/libvpx/examples/
H A Dresize_util.c27 printf("<output_yuv> [<frames>]\n");
55 int f, frames; local
92 frames = atoi(argv[5]);
94 frames = INT_MAX;
100 if (frames == INT_MAX)
103 printf("%d\n", frames);
112 while (f < frames) {
123 printf("%d frames processed\n", f);
/external/libvpx/libvpx/test/
H A Dsuperframe_test.cc60 const int frames = (marker & 0x7) + 1; local
63 2 + mag * (frames - is_vp10_style_superframe_);
82 // Make sure we do a few frames after the last SF
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_refcnt.c144 struct debug_stack_frame frames[STACK_LEN]; local
153 debug_backtrace_capture(frames, 1, STACK_LEN);
156 if(frames[i].function)
157 symbols[i] = debug_symbol_name_cached(frames[i].function);
/external/skia/tools/VisualBench/
H A DVisualBench.cpp159 void VisualBench::clear(SkCanvas* canvas, SkColor color, int frames) { argument
161 for (int i = 0; i < frames - 1; ++i) {
/external/e2fsprogs/e2fsck/
H A Dsigcatcher.c337 int frames; local
376 frames = backtrace(stack_syms, 32);
377 backtrace_symbols_fd(stack_syms, frames, 2);

Completed in 1011 milliseconds

123456