Home
last modified time | relevance | path

Searched refs:max_frames (Results 1 – 8 of 8) sorted by relevance

/external/libvpx/libvpx/vp8/encoder/
Dtemporal_filter.c447 int max_frames = cpi->active_arnr_frames; in vp8_temporal_filter_prepare_c() local
460 if (frames_to_blur_backward >= max_frames) in vp8_temporal_filter_prepare_c()
461 frames_to_blur_backward = max_frames - 1; in vp8_temporal_filter_prepare_c()
471 if (frames_to_blur_forward >= max_frames) in vp8_temporal_filter_prepare_c()
472 frames_to_blur_forward = max_frames - 1; in vp8_temporal_filter_prepare_c()
490 if (frames_to_blur_forward > (max_frames - 1) / 2) in vp8_temporal_filter_prepare_c()
491 frames_to_blur_forward = ((max_frames - 1) / 2); in vp8_temporal_filter_prepare_c()
493 if (frames_to_blur_backward > (max_frames / 2)) in vp8_temporal_filter_prepare_c()
494 frames_to_blur_backward = (max_frames / 2); in vp8_temporal_filter_prepare_c()
503 vpx_memset(cpi->frames, 0, max_frames*sizeof(YV12_BUFFER_CONFIG *)); in vp8_temporal_filter_prepare_c()
/external/google-breakpad/src/google_breakpad/processor/
Dstackwalker.h94 static void set_max_frames(uint32_t max_frames) { in set_max_frames() argument
95 max_frames_ = max_frames; in set_max_frames()
98 static uint32_t max_frames() { return max_frames_; } in max_frames() function
/external/lldb/source/Host/linux/
DHost.cpp468 Host::Backtrace (Stream &strm, uint32_t max_frames) in Backtrace() argument
470 if (max_frames > 0) in Backtrace()
472 std::vector<void *> frame_buffer (max_frames, NULL); in Backtrace()
/external/lldb/source/Host/freebsd/
DHost.cpp90 Host::Backtrace (Stream &strm, uint32_t max_frames) in Backtrace() argument
96 std::vector<void *> frame_buffer (max_frames, NULL); in Backtrace()
/external/lldb/examples/darwin/heap_find/
Dheap.py309 if idx >= options.max_frames:
310 …(%u) was reached, use the "--max-frames=<COUNT>" option to see more frames' % (options.max_frames))
344 stack''' % (options.max_frames, addr);
395 info''' % (options.max_frames, options.max_history, addr);
/external/lldb/include/lldb/Host/
DHost.h474 Backtrace (Stream &strm, uint32_t max_frames);
/external/lldb/source/Host/macosx/
DHost.mm938 Host::Backtrace (Stream &strm, uint32_t max_frames)
940 if (max_frames > 0)
942 std::vector<void *> frame_buffer (max_frames, NULL);
/external/lldb/source/Host/common/
DHost.cpp537 Host::Backtrace (Stream &strm, uint32_t max_frames) in Backtrace() argument