Home
last modified time | relevance | path

Searched refs:skip_frames (Results 1 – 9 of 9) sorted by relevance

/external/autotest/client/site_tests/camera_V4L2/src/
Dmedia_v4l2_test.cc40 uint32_t skip_frames = 0; member
76 uint32_t skip_frames) { in RunTest() argument
79 skip_frames)) in RunTest()
255 uint32_t skip_frames = 0; in TestIO() local
272 skip_frames); in TestIO()
275 constant_framerate, skip_frames); in TestIO()
301 uint32_t skip_frames = 0; in TestResolutions() local
395 kFrameRate, constant_framerate, skip_frames)) { in TestResolutions()
458 uint32_t skip_frames) { in TestFirstFrameAfterStreamOn() argument
489 skip_frames)) in TestFirstFrameAfterStreamOn()
[all …]
/external/libchrome/base/sampling_heap_profiler/
Dsampling_heap_profiler.cc291 uint32_t skip_frames) { in RecordAlloc() argument
319 instance_->DoRecordAlloc(samples * mean_interval, size, address, skip_frames); in RecordAlloc()
323 uint32_t skip_frames) { in RecordStackTrace() argument
327 skip_frames += kSkipProfilerOwnFrames; in RecordStackTrace()
337 frames, kMaxStackEntries, skip_frames); in RecordStackTrace()
338 skip_frames = 0; in RecordStackTrace()
348 sample->stack.end(), const_cast<void**>(&frames[skip_frames]), in RecordStackTrace()
349 const_cast<void**>(&frames[std::max<size_t>(frame_count, skip_frames)])); in RecordStackTrace()
356 uint32_t skip_frames) { in DoRecordAlloc() argument
363 RecordStackTrace(&sample, skip_frames); in DoRecordAlloc()
Dsampling_heap_profiler.h80 static void RecordAlloc(void* address, size_t, uint32_t skip_frames = 0);
96 uint32_t skip_frames);
98 void RecordStackTrace(Sample*, uint32_t skip_frames);
/external/libaom/libaom/apps/
Daomenc.h45 int skip_frames; member
Daomenc.c1163 global->skip_frames = arg_parse_uint(&arg); in parse_global_config()
2435 frames_in > global.skip_frames ? frames_in - global.skip_frames : 0; in main()
2458 if (frames_in > global.skip_frames) { in main()
2512 remaining = 1000 * (global.limit - global.skip_frames - in main()
/external/libvpx/libvpx/
Dvpxenc.h46 int skip_frames; member
Dvpxenc.c969 global->skip_frames = arg_parse_uint(&arg); in parse_global_config()
2119 frames_in > global.skip_frames ? frames_in - global.skip_frames : 0; in main()
2141 if (frames_in > global.skip_frames) { in main()
2198 remaining = 1000 * (global.limit - global.skip_frames - in main()
/external/libaom/libaom/examples/
Dnoise_model.c113 int skip_frames; member
162 noise_args->skip_frames = atoi(arg.val); in parse_args()
360 if (frame_count % args.skip_frames == 0) { in main()
/external/tensorflow/tensorflow/compiler/xla/python/
Dxla_client.py234 def CurrentSourceInfoMetadata(op_type=None, op_name=None, skip_frames=1): argument
236 full_filename, lineno = inspect.stack()[skip_frames][1:3]