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

1 2 3 4 5 6 7 8 91011>>

  /external/google-breakpad/src/google_breakpad/processor/
call_stack.h 30 // 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/lib/sanitizer_common/
sanitizer_stacktrace_libcdep.cc 35 SymbolizedStack *frames = Symbolizer::GetOrInit()->SymbolizePC(pc); local
36 CHECK(frames);
37 for (SymbolizedStack *cur = frames; cur; cur = cur->next) {
49 frames->ClearAll();
  /art/test/984-obsolete-invoke/
obsolete_invoke.cc 36 jvmtiFrameInfo frames[kNumFrames]; local
46 frames,
52 jmethodID method = frames[i].method;
  /external/compiler-rt/test/asan/TestCases/Darwin/
crashlog-stacktraces.c 18 int i, frames = backtrace(callstack, 128); local
19 char** strs = backtrace_symbols(callstack, frames);
20 for (i = 0; i < frames; ++i) {
  /frameworks/av/services/mediaanalytics/
MetricsSummarizerPlayer.cpp 42 "android.media.mediaplayer.frames",
59 // we sum time & frames.
73 int64_t frames = 0; local
74 if (item.getInt64("android.media.mediaplayer.frames", &frames))
75 ALOGV("found framess of %" PRId64, frames);
76 if (frames >= 0) {
77 summation.addInt64("android.media.mediaplayer.frames",frames);
  /bionic/libc/malloc_debug/
malloc_debug.h 63 uintptr_t frames[0]; member in struct:BacktraceHeader
  /device/google/dragon/audio/hal/dsp/tests/
crossover2_test.c 42 size_t frames; local
57 data0 = read_raw(argv[1], &frames);
58 data1 = (float *)malloc(sizeof(float) * frames * 2);
59 data2 = (float *)malloc(sizeof(float) * frames * 2);
63 process(&xo2, frames, data0, data0 + frames, data1, data1 + frames,
64 data2, data2 + frames);
67 tp_diff(&tp2, &tp1), frames * 2);
70 write_raw(argv[3], data0, frames);
    [all...]
crossover_test.c 40 size_t frames; local
55 data0 = read_raw(argv[1], &frames);
56 data1 = (float *)malloc(sizeof(float) * frames * 2);
57 data2 = (float *)malloc(sizeof(float) * frames * 2);
61 process(&xo, frames, data0, data1, data2);
64 tp_diff(&tp2, &tp1), frames);
68 process(&xo, frames, data0 + frames, data1 + frames,
69 data2 + frames);
    [all...]
drc_test.c 26 static void process(struct drc *drc, float *buf, size_t frames)
33 for (start = 0; start < frames;) {
35 data[1] = buf + start + frames;
36 chunk = min(DRC_PROCESS_MAX_FRAMES, frames - start);
42 tp_diff(&tp2, &tp1), frames * 2);
49 size_t frames; local
90 buf = read_raw(argv[1], &frames);
91 process(drc, buf, frames);
92 write_raw(argv[2], buf, frames);
eq2_test.c 39 size_t frames; local
45 float *data = read_raw(input_filename, &frames);
48 for (i = frames / 10; i < frames; i++)
66 process(eq2, data, data + frames, frames);
69 tp_diff(&tp2, &tp1), frames * 2);
72 write_raw(output_filename, data, frames);
eq_test.c 73 size_t frames; local
79 float *data = read_raw(input_filename, &frames);
82 for (i = frames / 10; i < frames; i++)
94 process(eq, data, frames);
97 tp_diff(&tp2, &tp1), frames);
109 process(eq, data + frames, frames);
112 tp_diff(&tp2, &tp1), frames);
115 write_raw(output_filename, data, frames);
    [all...]
  /external/pdfium/testing/libfuzzer/
xfa_codec_fuzzer.h 38 int32_t frames; local
39 if (decoder->GetFrames(frames) != FXCODEC_STATUS_DECODE_READY ||
40 frames == 0)
  /external/robolectric/v1/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/webrtc/webrtc/test/testsupport/metrics/
video_metrics.h 30 // 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/
video_quality_analysis.h 38 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/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
FramesTest.java 40 * JDWP Unit test for ThreadReference.Frames command.
62 * This testcase exercises ThreadReference.Frames command.
66 * <BR> Then the tests performs the ThreadReference.Frames command
116 * This testcase exercises ThreadReference.Frames command.
120 * <BR> Then the tests performs the ThreadReference.Frames command
171 * This testcase exercises ThreadReference.Frames command.
175 * <BR> Then the tests performs the ThreadReference.Frames command
178 * <BR>It is expected an empty set of frames is returned.
213 logWriter.println("empty set of frames is returned");
215 printErrorAndFail("it is expected an empty set of frames, but frameCount =
424 Vector<FrameStruct> frames = new Vector<FrameStruct>(); local
    [all...]
  /cts/hostsidetests/incident/apps/graphicsstatsapp/src/com/android/server/cts/device/graphicsstats/
SimpleDrawFrameTests.java 56 int[] frames = new int[50]; local
59 frames[indx] = DrawFramesActivity.FRAME_JANK_RECORD_DRAW;
60 frames[indx + 1] = DrawFramesActivity.FRAME_JANK_ANIMATION;
61 frames[indx + 2] = DrawFramesActivity.FRAME_JANK_LAYOUT;
62 frames[indx + 3] = DrawFramesActivity.FRAME_JANK_MISS_VSYNC;
64 activity.drawFrames(frames);
75 int[] frames = new int[40]; local
78 frames[indx] = DrawFramesActivity.FRAME_JANK_DAVEY;
79 frames[indx + 2] = DrawFramesActivity.FRAME_JANK_DAVEY_JR;
81 activity.drawFrames(frames);
    [all...]
  /external/autotest/client/site_tests/camera_V4L2/src/
media_v4l2_test.cc 20 "--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/compiler-rt/lib/asan/
asan_suppressions.cc 91 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/google-breakpad/src/processor/
stackwalker_address_list_unittest.cc 107 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->at(4)->module)
177 const std::vector<StackFrame*>* frames = call_stack.frames(); local
    [all...]
stackwalker_amd64.cc 129 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.back())
    [all...]
  /external/v8/src/base/debug/
stack_trace_android.cc 23 StackCrawlState(uintptr_t* frames, size_t max_depth)
24 : frames(frames),
29 uintptr_t* frames; member in struct:__anon34045::StackCrawlState
45 state->frames[state->frame_count++] = ip;
  /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");
  /prebuilts/misc/windows/sdl2/test/
testviewport.c 85 Uint32 then, now, frames; local
134 frames = 0;
140 ++frames;
177 double fps = ((double) frames * 1000) / (now - then);
178 SDL_Log("%2.2f frames per second\n", fps);
  /system/media/audio_utils/include/audio_utils/
sndfile.h 37 sf_count_t frames; member in struct:__anon107106
67 * Read interleaved frames
68 * \return actual number of frames read
75 * Write interleaved frames
76 * \return actual number of frames written

Completed in 2155 milliseconds

1 2 3 4 5 6 7 8 91011>>