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/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_libcdep.cc35 SymbolizedStack *frames = Symbolizer::GetOrInit()->SymbolizePC(pc); local
36 CHECK(frames);
37 for (SymbolizedStack *cur = frames; cur; cur = cur->next) {
49 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...]
/external/mesa3d/src/gallium/auxiliary/hud/
H A Dhud_fps.c36 int frames; member in struct:fps_info
46 info->frames++;
50 double fps = (uint64_t)info->frames * 1000000 /
52 info->frames = 0;
/external/pdfium/testing/libfuzzer/
H A Dxfa_codec_fuzzer.h38 int32_t frames; local
39 if (decoder->GetFrames(frames) != FXCODEC_STATUS_DECODE_READY ||
40 frames == 0)
/external/python/cpython2/Mac/Demo/sound/
H A Dplayaiff.py13 frames = af.readframes(nframes) variable
14 print 'len(frames) =', len(frames)
15 print repr(frames[:100])
16 frames = audioop.add(frames, '\x80'*len(frames), 1) variable
17 print repr(frames[:100])
41 buffer = header + frames
/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/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 CHECK(frames);
93 for (SymbolizedStack *cur = frames; cur; cur = cur->next) {
101 frames->ClearAll();
105 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.java43 * Test class inserted stackmap frames for different class file versions.
92 private void testVersion(int version, boolean frames) throws IOException { argument
99 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/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
71 // If the stack is higher than what can be stored here, the bottom frames
75 StackFrame frames[kMaxFrameCount]; member in struct:base::trace_event::Backtrace
/external/libmojo/base/debug/
H A Dstack_trace_android.cc25 StackCrawlState(uintptr_t* frames, size_t max_depth) argument
26 : frames(frames),
31 uintptr_t* frames; member in struct:__anon10958::StackCrawlState
47 state->frames[state->frame_count++] = ip;
/external/libvpx/libvpx/examples/
H A Dresize_util.c27 printf("<output_yuv> [<frames>]\n");
53 int f, frames; local
90 frames = atoi(argv[5]);
92 frames = INT_MAX;
96 if (frames == INT_MAX)
99 printf("%d\n", frames);
108 while (f < frames) {
116 printf("%d frames processed\n", f);
/external/libvpx/libvpx/test/
H A Dsuperframe_test.cc55 const int frames = (marker & 0x7) + 1; local
57 const unsigned int index_sz = 2 + mag * frames;
73 // Make sure we do a few frames after the last SF
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_refcnt.c182 struct debug_stack_frame frames[STACK_LEN]; local
190 debug_backtrace_capture(frames, 1, STACK_LEN);
192 if (frames[i].function)
193 symbols[i] = debug_symbol_name_cached(frames[i].function);
/external/python/cpython2/Lib/test/
H A Dtest_sunau.py22 frames = audiotests.fromhex("""\
39 frames = audiotests.fromhex("""\
58 frames = audiotests.fromhex("""\
83 frames = audiotests.fromhex("""\
92 frames = audiotests.byteswap2(frames) variable in class:SunauULAWTest
H A Dtest_wave.py25 frames = audiotests.fromhex("""\
42 frames = audiotests.fromhex("""\
51 frames = audiotests.byteswap2(frames) variable in class:WavePCM16Test
69 frames = audiotests.fromhex("""\
84 frames = audiotests.byteswap3(frames) variable in class:WavePCM24Test
96 frames = audiotests.fromhex("""\
111 frames = audiotests.byteswap4(frames) variable in class:WavePCM32Test
[all...]

Completed in 906 milliseconds

123456