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

1 2 3 4 5 6 7 8 9

  /external/tensorflow/tensorflow/contrib/signal/
__init__.py 57 # `frame` used to be named `frames`, which is a noun and not a verb.
58 # Keep an alias to `frames` for backwards compatibility.
59 frames = frame variable
  /bootable/recovery/tests/unit/
resources_test.cpp 25 GRSurface** frames; local
29 &frame_count, &fps, &frames));
34 free(frames[i]);
36 free(frames);
  /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...]
dcblock_test.c 40 size_t frames; local
45 float *data = read_raw(input_filename, &frames);
50 process(dcblockl, data, frames);
51 process(dcblockr, data+frames, frames);
54 tp_diff(&tp2, &tp1), frames);
58 write_raw(output_filename, data, frames);
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/adhd/cras/src/tests/
shm_unittest.cc 46 // Buffer with 100 frames filled.
59 // Buffer with 100 frames filled, 50 read.
73 // Buffer with 100 frames filled, 50 read, offset by 25.
162 // Test get frames_written returns the number of frames written.
258 unsigned frames; local
262 buf_ = cras_shm_get_writeable_frames(&shm_, limit, &frames);
263 EXPECT_EQ(limit - written, frames);
271 unsigned frames; local
275 buf_ = cras_shm_get_writeable_frames(&shm_, limit, &frames);
276 EXPECT_EQ(0, frames);
    [all...]
  /external/grpc-grpc/test/core/util/
test_config.cc 77 unsigned short frames; local
82 frames = (func)(0, MAX_CALLERS, callers_stack, NULL);
89 frames = frames < MAX_CALLERS_SHOWN ? frames : MAX_CALLERS_SHOWN;
90 for (unsigned int i = 0; i < frames; i++) {
  /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/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.

Completed in 603 milliseconds

1 2 3 4 5 6 7 8 9