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

1 2

  /external/compiler-rt/test/asan/TestCases/
debug_stacks.cc 29 size_t num_frames = 100; local
31 num_frames = __asan_get_alloc_stack(mem, trace, num_frames, &thread_id);
33 fprintf(stderr, "alloc stack retval %s\n", (num_frames > 0 && num_frames < 10)
43 num_frames = 100;
44 num_frames = __asan_get_free_stack(mem, trace, num_frames, &thread_id);
46 fprintf(stderr, "free stack retval %s\n", (num_frames > 0 && num_frames < 10
    [all...]
  /bionic/libc/malloc_debug/
malloc_debug.h 62 size_t num_frames; member in struct:BacktraceHeader
  /external/webrtc/webrtc/modules/audio_processing/vad/
common.h 23 size_t num_frames; member in struct:AudioFeatures
standalone_vad.cc 64 const size_t num_frames = index_ / kLength10Ms; local
65 if (num_frames > length_p)
76 for (size_t n = 1; n < num_frames; n++)
standalone_vad_unittest.cc 81 int num_frames = 0; local
84 num_frames++;
85 if (num_frames == kNumVadFramesToProcess) {
86 num_frames = 0;
vad_audio_proc_unittest.cc 49 if (features.num_frames > 0) {
50 ASSERT_LT(features.num_frames, kMaxNumFrames);
52 const size_t num_frames = features.num_frames; local
53 ASSERT_EQ(num_frames, fread(sp, sizeof(sp[0]), num_frames, peak_file));
54 for (size_t n = 0; n < features.num_frames; n++)
  /system/core/libbacktrace/
UnwindCurrent.cpp 101 size_t num_frames = 0; local
116 frames_.resize(num_frames+1);
117 backtrace_frame_data_t* frame = &frames_.at(num_frames);
118 frame->num = num_frames;
126 if (ucontext != nullptr || num_frames != 0 || !DiscardFrame(*frame)) {
131 if (num_frames > 0) {
133 backtrace_frame_data_t* prev = &frames_.at(num_frames-1);
136 num_frames++;
142 CHECK(num_frames == 0);
157 } while (ret > 0 && num_frames < MAX_BACKTRACE_FRAMES)
    [all...]
UnwindPtrace.cpp 109 size_t num_frames = 0; local
125 frames_.resize(num_frames+1);
126 backtrace_frame_data_t* frame = &frames_.at(num_frames);
127 frame->num = num_frames;
132 if (num_frames > 0) {
133 backtrace_frame_data_t* prev = &frames_.at(num_frames-1);
141 num_frames++;
162 } while (ret > 0 && num_frames < MAX_BACKTRACE_FRAMES);
  /external/webrtc/webrtc/common_audio/
channel_buffer.h 42 ChannelBuffer(size_t num_frames,
45 : data_(new T[num_frames * num_channels]()),
48 num_frames_(num_frames),
49 num_frames_per_band_(num_frames / num_bands),
116 size_t num_frames() const { return num_frames_; } function in class:webrtc::ChannelBuffer
145 IFChannelBuffer(size_t num_frames, size_t num_channels, size_t num_bands = 1);
152 size_t num_frames() const { return ibuf_.num_frames(); } function in class:webrtc::IFChannelBuffer
  /system/core/libmemunreachable/include/memunreachable/
memunreachable.h 45 size_t num_frames; member in struct:Leak::Backtrace
  /external/autotest/client/site_tests/graphics_SanAngeles/src/
app-linux.c 227 int num_frames = 0; local
255 num_frames++;
261 fprintf(stdout, "frame_rate = %.1f\n", num_frames / total_time);
  /system/core/healthd/
animation.h 61 int num_frames; member in struct:android::animation
  /external/libyuv/files/util/
convert.cc 37 int num_frames = 0; // Number of frames to convert. variable
102 num_frames = atoi(argv[++c]); // NOLINT
124 if (num_frames < 0) {
268 if (num_frames && number_of_frames >= num_frames)
psnr_main.cc 62 int num_frames = 0; variable
182 num_frames = atoi(argv[++c]); // NOLINT
206 if (num_frames < 0) {
432 if (num_frames && number_of_frames >= num_frames)
  /external/webp/include/webp/
demux.h 140 int num_frames; // equivalent to WEBP_FF_FRAME_COUNT. member in struct:WebPIterator
  /external/webp/src/mux/
muxread.c 292 const int num_frames = MuxImageCount(mux->images_, WEBP_CHUNK_ANMF); local
297 } else if (num_images == 1 && num_frames == 0) {
muxedit.c 548 int num_frames; local
554 WebPMuxError err = WebPMuxNumChunks(mux, kChunks[IDX_ANMF].id, &num_frames);
556 if (num_frames == 1) {
568 num_frames = 0;
574 if (num_anim_chunks >= 1 && num_frames == 0) {
muxinternal.c 464 int num_frames; local
496 err = ValidateChunk(mux, IDX_ANMF, NO_FLAG, flags, -1, &num_frames);
501 if (has_animation && (num_anim == 0 || num_frames == 0)) {
504 if (!has_animation && (num_anim == 1 || num_frames > 0)) {
  /external/webp/src/webp/
demux.h 140 int num_frames; // equivalent to WEBP_FF_FRAME_COUNT. member in struct:WebPIterator
  /external/webrtc/webrtc/modules/audio_coding/test/
delay_test.cc 181 int num_frames = 0; local
187 while (num_frames < (duration_sec * 100)) {
193 if ((num_frames & 0x3F) == 0x3F) {
217 if (num_frames > 10)
220 ++num_frames;
  /external/webrtc/webrtc/modules/audio_processing/
audio_buffer.cc 35 size_t NumBandsFromSamplesPerChannel(size_t num_frames) {
37 if (num_frames == kSamplesPer32kHzChannel ||
38 num_frames == kSamplesPer48kHzChannel) {
39 num_bands = rtc::CheckedDivExact(num_frames, kSamplesPer16kHzChannel);
107 assert(stream_config.num_frames() == input_num_frames_);
152 assert(stream_config.num_frames() == output_num_frames_);
352 size_t AudioBuffer::num_frames() const { function in class:webrtc::AudioBuffer
  /external/webrtc/webrtc/modules/audio_processing/test/
debug_dump_test.cc 34 if (!buffer_ref.get() || buffer_ref->num_frames() != config.num_frames() ||
36 buffer_ref.reset(new ChannelBuffer<float>(config.num_frames(),
128 input_(new ChannelBuffer<float>(input_config_.num_frames(),
130 reverse_(new ChannelBuffer<float>(reverse_config_.num_frames(),
132 output_(new ChannelBuffer<float>(output_config_.num_frames(),
215 const size_t num_frames = config.num_frames(); local
218 std::vector<int16_t> signal(channels * num_frames);
220 audio->Read(num_frames * channels, &signal[0])
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
vp8_sequence_coder.cc 125 // Get range of frames: will encode num_frames following start_frame).
127 int num_frames = strtol((parser->GetFlag("num_frames")).c_str(), NULL, 10); local
159 // num_frames = -1 implies unlimited encoding (entire sequence).
165 (num_frames == -1 || frames_processed < num_frames)) {
214 " - num_frames - Number of frames to be processed. "
229 parser.SetFlag("num_frames", "-1");
  /external/webrtc/webrtc/tools/agc/
activity_metric.cc 111 if (features.num_frames > 0) {
119 for (size_t n = 0; n < features.num_frames; n++) {
128 for (size_t n = 0; n < features.num_frames; n++) {
142 return static_cast<int>(features.num_frames);
236 int num_frames = 0; local
277 num_frames++;
  /external/libvncserver/libvncclient/
h264.c 45 static unsigned int num_frames = 0; variable
183 num_frames = 0;
296 if ( (slice_type != SLICE_TYPE_I) && (num_frames == 0) ) {
460 ++num_frames;

Completed in 573 milliseconds

1 2