HomeSort by relevance Sort by last modified time
    Searched defs:frames (Results 1 - 25 of 573) 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;
  /art/test/996-breakpoint-obsolete/
obsolete_breakpoints.cc 43 jvmtiFrameInfo frames[kNumFrames]; local
48 frames,
55 jvmti_env->IsMethodObsolete(frames[i].method, &is_obsolete))) {
59 return frames[i].method;
  /external/adhd/cras/src/server/
cras_audio_area.h 29 * frames - The size of the audio buffer in frames.
34 unsigned int frames; member in struct:cras_audio_area
63 * dst_offset - The offset of dst audio area in frames.
66 * src_offset - The offset of src audio area in frames.
68 * Returns the number of frames copied.
  /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) {
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_fps.c 36 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/
xfa_codec_fuzzer.h 53 size_t frames; local
54 std::tie(status, frames) = decoder->GetFrames();
55 if (status != FXCODEC_STATUS_DECODE_READY || frames == 0)
  /external/python/cpython2/Mac/Demo/sound/
playaiff.py 13 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-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowMediaMetadataRetriever.java 21 private static final Map<DataSource, Map<Long, Bitmap>> frames = new HashMap<>(); field in class:ShadowMediaMetadataRetriever
63 return (frames.containsKey(dataSource) ?
64 frames.get(dataSource).get(timeUs) : null);
102 if (!frames.containsKey(ds)) {
103 frames.put(ds, new HashMap<Long, Bitmap>());
105 frames.get(ds).put(time, bitmap);
196 frames.clear();
  /art/test/ti-agent/
stack_trace_helper.cc 55 jvmtiFrameInfo* frames; local
58 reinterpret_cast<unsigned char**>(&frames)))) {
63 env, jvmti_env, jvmti_env->GetStackTrace(thr, 0, depth, frames, &nframes))) {
64 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(frames));
69 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(frames));
73 jobject jmethod = GetJavaMethod(jvmti_env, env, frames[i].method);
75 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(frames));
82 frames[i].location,
85 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(frames));
90 jvmti_env->Deallocate(reinterpret_cast<unsigned char*>(frames));
    [all...]
  /bionic/libc/malloc_debug/
malloc_debug.h 56 uintptr_t frames[0]; member in struct:BacktraceHeader
  /device/generic/car/emulator/audio/driver/
audio_vbuffer.c 83 int frames = 0; local
85 frames =
88 frames = MIN(frame_count, audio_vbuffer->tail - (audio_vbuffer->head));
96 frames * audio_vbuffer->frame_size);
97 audio_vbuffer->live += frames;
98 frames_written += frames;
99 frame_count -= frames;
101 (audio_vbuffer->head + frames) % audio_vbuffer->frame_count;
114 int frames = 0; local
117 frames
    [all...]
  /external/adhd/cras/src/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/python/cpython2/Lib/test/
test_sunau.py 22 frames = audiotests.fromhex("""\
39 frames = audiotests.fromhex("""\
58 frames = audiotests.fromhex("""\
83 frames = audiotests.fromhex("""\
92 frames = audiotests.byteswap2(frames) variable in class:SunauULAWTest
  /external/python/cpython3/Lib/test/
test_sunau.py 22 frames = bytes.fromhex("""\
39 frames = bytes.fromhex("""\
58 frames = bytes.fromhex("""\
83 frames = bytes.fromhex("""\
108 frames = bytes.fromhex("""\
117 frames = byteswap(frames, 2) variable in class:SunauULAWTest
  /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/tensorflow/tensorflow/contrib/ffmpeg/
decode_video_op.cc 58 uint32 frames = 0; variable
63 &width, &height, &frames);
82 context, output_data.size() == (frames * height * width * 3),
84 "] does not match description [", frames, ", ", height,
89 0, TensorShape({frames, height, width, 3}), &output));
110 output: A rank-4 `Tensor` that has `[frames, height, width, 3]` RGB as output.
  /external/tensorflow/tensorflow/core/grappler/utils/
frame_test.cc 80 std::unordered_map<const NodeDef*, std::vector<int>> frames; local
82 EXPECT_TRUE(IdentifyFrames(graph, &frames, &num_frames).ok());
90 EXPECT_EQ(frames.size(), expected.size());
92 for (const auto& node : frames) {
111 std::unordered_map<const NodeDef*, std::vector<int>> frames; local
113 EXPECT_TRUE(IdentifyFrames(graph, &frames, &num_frames).ok());
117 EXPECT_EQ(frames.size(), expected.size());
119 for (const auto& node : frames) {
139 std::unordered_map<const NodeDef*, std::vector<int>> frames; local
141 EXPECT_TRUE(IdentifyFrames(graph, &frames, &num_frames).ok())
172 std::unordered_map<const NodeDef*, std::vector<int>> frames; local
    [all...]
  /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

Completed in 579 milliseconds

1 2 3 4 5 6 7 8 91011>>