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

1 2 3 4

  /external/srec/audio/AudioIn/UNIX/include/
audioinwrapper.h 35 int AudioRead(short *buffer, int frame_count);
  /system/core/libcorkscrew/
test.c 9 ssize_t frame_count = unwind_backtrace(frames, 0, MAX_DEPTH); local
10 fprintf(stderr, "frame_count=%d\n", (int) frame_count);
12 backtrace_symbol_t* backtrace_symbols = (backtrace_symbol_t*) malloc(sizeof(backtrace_symbol_t) * frame_count);
13 get_backtrace_symbols(frames, frame_count, backtrace_symbols);
15 for (size_t i = 0; i < (size_t) frame_count; ++i) {
43 free_backtrace_symbols(backtrace_symbols, frame_count);
  /bionic/libc/bionic/
debug_stacktrace.cpp 74 size_t frame_count; member in struct:stack_crawl_state_t
79 : frames(frames), frame_count(0), max_depth(max_depth), have_skipped_self(false) {
112 state->frames[state->frame_count++] = ip;
113 return (state->frame_count >= state->max_depth) ? _URC_END_OF_STACK : _URC_NO_REASON;
119 return state.frame_count;
122 __LIBC_HIDDEN__ void log_backtrace(uintptr_t* frames, size_t frame_count) {
125 frame_count = get_backtrace(self_bt, 16);
132 for (size_t i = 0 ; i < frame_count; ++i) {
debug_stacktrace.h 38 __LIBC_HIDDEN__ void log_backtrace(uintptr_t* stack_frames, size_t frame_count);
  /external/srec/audio/AudioIn/UNIX/src/
audioinwrapper.cpp 125 int AudioRead(short *buffer, int frame_count)
129 n = read(audiofd, buffer, frame_count*sizeof(short)*N_CHANNELS);
133 int nreq = frame_count * sizeof(short);
191 int AudioRead(short *buffer, int frame_count)
196 int AudioWrite(short *buffer, int frame_count)
  /system/media/audio_utils/
echo_reference.c 82 buffer->frame_count = 0;
86 buffer->frame_count = (buffer->frame_count > er->wr_frames_in) ?
87 er->wr_frames_in : buffer->frame_count;
107 er->wr_frames_in -= buffer->frame_count;
150 ALOGV("echo_reference_write() START trying to write %d frames", buffer->frame_count);
155 //ALOGV("echo_reference_write() %d frames", buffer->frame_count);
181 er->wr_curr_frame_size = buffer->frame_count;
188 size_t wrBufSize = buffer->frame_count;
190 inFrames = buffer->frame_count;
    [all...]
resampler.c 108 buf.frame_count = rsmp->frames_needed - rsmp->frames_in;
115 buf.frame_count * rsmp->channel_count * sizeof(int16_t));
116 rsmp->frames_in += buf.frame_count;
  /system/media/audio_utils/include/audio_utils/
echo_reference.h 28 size_t frame_count; // number of frames in buffer member in struct:echo_reference_buffer
46 * - frame_count is updated with the actual number of frames returned
resampler.h 38 size_t frame_count; member in struct:resampler_buffer
46 * as input: buffer->frame_count is the number of frames requested
47 * as output: buffer->frame_count is the number of frames returned
54 * as input: buffer->frame_count is the number of frames released
  /external/libvpx/libvpx/test/
datarate_test.cc 156 const int frame_count = 40; local
158 30, 1, 0, frame_count);
164 vpx_codec_pts_t last_drop = frame_count;
  /external/webrtc/src/modules/audio_processing/test/
unpack.cc 127 int frame_count = 0; local
144 frame_count++;
200 fprintf(settings_file, "Init at frame: %d\n", frame_count);
  /external/srec/srec/cfront/
chelfep.c 105 channel->frame_valid = (channel->frame_count) % 2;
116 if (channel->frame_count <= 1)
cheldsp4.c 230 if (channel->frame_count >= channel->frame_delay)
234 regress(rgmcep, channel->cep, (unsigned short) channel->frame_count, channel->mel_dim);
236 dd_regress(ddmcep, channel->cep, (unsigned short) channel->frame_count, channel->mel_dim);
261 channel->frame_count++;
ca_front.c 166 if (valid > 0 && hWave->data.channel->frame_count > (DELTA + 3))
  /external/v8/src/
runtime-profiler.cc 242 int frame_count = 0; local
246 frame_count++ < frame_count_limit && !it.done();
287 && (frame_count > 1
  /device/asus/grouper/audio/
audio_hw.c 407 buffer->frame_count = 0;
419 buffer->frame_count = 0;
432 buffer->frame_count = (buffer->frame_count > in->frames_in) ?
433 in->frames_in : buffer->frame_count;
451 in->frames_in -= buffer->frame_count;
470 frame_count : frames_rd,
477 buf.frame_count * audio_stream_frame_size(&in->stream.common));
478 frames_rd = buf.frame_count;
    [all...]
  /external/srec/srec/include/
front.h 106 long frame_count; /* frame count */ member in struct:__anon15426
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
videodev.h 205 __u32 frame_count; /* frames output since decode/encode began */ member in struct:video_info
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
videodev.h 205 __u32 frame_count; /* frames output since decode/encode began */ member in struct:video_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
videodev.h 205 __u32 frame_count; /* frames output since decode/encode began */ member in struct:video_info
  /device/ti/panda/audio/
audio_hw.c     [all...]
  /device/samsung/manta/audio/
audio_hw.c 817 buffer->frame_count = 0;
829 buffer->frame_count = 0;
841 buffer->frame_count = (buffer->frame_count > in->frames_in) ?
842 in->frames_in : buffer->frame_count;
861 in->frames_in -= buffer->frame_count;
881 frame_count : frames_rd,
888 buf.frame_count * frame_size);
889 frames_rd = buf.frame_count;
    [all...]
  /external/qemu/hw/
usb-ohci.c 616 int frame_count; local
628 frame_count = OHCI_BM(iso_td.flags, TD_FC);
637 "frame_count 0x%.8x relative %d\n"
644 frame_count, relative_frame_number,
651 } else if (relative_frame_number > frame_count) {
655 frame_count);
696 ((relative_frame_number < frame_count) &&
703 if ((relative_frame_number < frame_count) && (start_offset > next_offset)) {
717 if (relative_frame_number < frame_count) {
820 if (relative_frame_number == frame_count) {
    [all...]
  /external/kernel-headers/original/asm-arm/arch/
dma.h 343 int frame_count; /* number of frames in a element */ member in struct:omap_dma_channel_params
375 int elem_count, int frame_count,
  /external/libvpx/libvpx/vp8/encoder/
temporal_filter.c 226 int frame_count,
284 for (frame = 0; frame < frame_count; frame++)

Completed in 1242 milliseconds

1 2 3 4