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

1 2 3 4 5 6 7 8 91011>>

  /system/core/libunwindstack/tests/
UnwindOfflineTest.cpp 216 EXPECT_EQ(0xf31ea9f8U, unwinder.frames()[0].pc);
217 EXPECT_EQ(0xe9c866f8U, unwinder.frames()[0].sp);
218 EXPECT_EQ(0xf2da0a1bU, unwinder.frames()[1].pc);
219 EXPECT_EQ(0xe9c86728U, unwinder.frames()[1].sp);
220 EXPECT_EQ(0xf2da1441U, unwinder.frames()[2].pc);
221 EXPECT_EQ(0xe9c86730U, unwinder.frames()[2].sp);
222 EXPECT_EQ(0xf3367147U, unwinder.frames()[3].pc);
223 EXPECT_EQ(0xe9c86778U, unwinder.frames()[3].sp);
240 EXPECT_EQ(0xf1f6dc49U, unwinder.frames()[0].pc);
241 EXPECT_EQ(0xd8fe6930U, unwinder.frames()[0].sp)
    [all...]
  /bionic/libc/malloc_debug/
backtrace.h 38 size_t backtrace_get(uintptr_t* frames, size_t frame_count);
39 void backtrace_log(const uintptr_t* frames, size_t frame_count);
40 std::string backtrace_string(const uintptr_t* frames, size_t frame_count);
  /external/adhd/cras/src/dsp/
dsp_util.h 22 * frames - The number of frames to convert.
25 int frames);
35 * frames - The number of frames to convert.
38 int frames);
dsp_util.c 30 float *output2, int frames)
32 int chunk = frames >> 3;
33 frames &= 7;
34 /* Process 8 frames (16 samples) each loop. */
64 while (frames--) {
84 int16_t *output, int frames)
86 /* Process 4 frames (8 samples) each loop. */
88 int chunk = frames >> 2;
89 frames &= 3;
119 while (frames--)
    [all...]
  /external/adhd/cras/src/dsp/tests/
raw.h 18 * frames - Returns the number of frames read.
29 float *read_raw(const char *filename, size_t *frames);
35 * frames - The number of frames in the float buffer.
40 void write_raw(const char *filename, float *buf, size_t frames);
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...]
  /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/webrtc/webrtc/common_audio/
audio_ring_buffer.h 25 // Specify the number of channels and maximum number of frames the buffer will
32 void Write(const float* const* data, size_t channels, size_t frames);
36 void Read(float* const* data, size_t channels, size_t frames);
45 void MoveReadPositionForward(size_t frames);
46 void MoveReadPositionBackward(size_t frames);
audio_ring_buffer.cc 32 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) {
44 WebRtc_ReadBuffer(buffers_[i], nullptr, data[i], frames);
45 RTC_CHECK_EQ(read, frames);
59 void AudioRingBuffer::MoveReadPositionForward(size_t frames) {
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) {
    [all...]
  /external/python/cpython3/Lib/test/
test_wave.py 23 frames = bytes.fromhex("""\
40 frames = bytes.fromhex("""\
49 frames = byteswap(frames, 2) variable in class:WavePCM16Test
61 frames = bytes.fromhex("""\
76 frames = byteswap(frames, 3) variable in class:WavePCM24Test
88 frames = bytes.fromhex("""\
103 frames = byteswap(frames, 4 variable in class:WavePCM32Test
    [all...]
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
  /frameworks/av/media/libaaudio/src/utility/
LinearRamp.cpp 31 bool LinearRamp::nextSegment(int32_t frames, float *levelFrom, float *levelTo) {
36 if (frames >= mRemaining) {
41 level = mLevelFrom + (frames * (mLevelTo - mLevelFrom) / mRemaining);
42 mRemaining -= frames;
  /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...]
  /external/flac/include/share/grabbag/
cuesheet.h 32 unsigned grabbag__cuesheet_msf_to_frame(unsigned minutes, unsigned seconds, unsigned frames);
33 void grabbag__cuesheet_frame_to_msf(unsigned frame, unsigned *minutes, unsigned *seconds, unsigned *frames);
  /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/python/cpython2/Lib/test/
test_wave.py 25 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...]
  /prebuilts/go/darwin-x86/test/fixedbugs/issue19467.dir/
z.go 17 frames := make([]runtime.Frame, 0, 4)
20 frames = append(frames, frame)
30 if frames[i].Function != expecting[i] {
31 log.Fatalf("frame %d: got %s, want %s", i, frames[i].Function, expecting[i])
  /prebuilts/go/linux-x86/test/fixedbugs/issue19467.dir/
z.go 17 frames := make([]runtime.Frame, 0, 4)
20 frames = append(frames, frame)
30 if frames[i].Function != expecting[i] {
31 log.Fatalf("frame %d: got %s, want %s", i, frames[i].Function, expecting[i])
  /external/replicaisland/src/com/replica/replicaisland/
SpriteAnimation.java 45 final FixedSizeArray<AnimationFrame> frames = mFrames; local
46 assert frames.getCount() == frames.getCapacity();
47 final int frameCount = frames.getCount();
48 result = frames.get(frameCount - 1);
58 // When there are very few frames it's actually slower to do a binary search
66 result = frames.get(index);
69 AnimationFrame frame = frames.get(x);
  /external/autotest/server/site_tests/network_WiFi_RandomMACAddress/
network_WiFi_RandomMACAddress.py 26 frames = self.stop_capture_and_get_probe_requests()
28 if not frames:
30 elif any(frame.source_addr == dut_hw_mac for frame in frames):
  /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/google-breakpad/src/processor/
stackwalker_amd64.h 32 // Provides stack frames given amd64 register context and a memory region
76 // the frame that called frames.back(). The caller takes ownership
78 StackFrameAMD64* GetCallerByCFIFrameInfo(const vector<StackFrame*> &frames,
87 const vector<StackFrame*>& frames);
91 StackFrameAMD64* GetCallerByStackScan(const vector<StackFrame*> &frames);
stackwalker_arm.h 34 // Provides stack frames given arm register context and a memory region
76 // the frame that called frames.back(). The caller takes ownership
78 StackFrameARM* GetCallerByCFIFrameInfo(const vector<StackFrame*> &frames,
83 StackFrameARM* GetCallerByFramePointer(const vector<StackFrame*> &frames);
87 StackFrameARM* GetCallerByStackScan(const vector<StackFrame*> &frames);
stackwalker_arm64.h 34 // Provides stack frames given arm64 register context and a memory region
77 // the frame that called frames.back(). The caller takes ownership
79 StackFrameARM64* GetCallerByCFIFrameInfo(const vector<StackFrame*> &frames,
84 StackFrameARM64* GetCallerByFramePointer(const vector<StackFrame*> &frames);
88 StackFrameARM64* GetCallerByStackScan(const vector<StackFrame*> &frames);

Completed in 366 milliseconds

1 2 3 4 5 6 7 8 91011>>