/external/opencv/cvaux/src/ |
H A D | cvbgfg_gaussmix.cpp | 136 cvCreateGaussianBGModel( IplImage* first_frame, CvGaussBGStatModelParams* parameters ) argument 166 if( !CV_IS_IMAGE(first_frame) ) 167 CV_ERROR( CV_StsBadArg, "Invalid or NULL first_frame parameter" ); 179 ((first_frame->width*first_frame->height) + 256))); 181 CV_CALL( bg_model->background = cvCreateImage(cvSize(first_frame->width, 182 first_frame->height), IPL_DEPTH_8U, first_frame->nChannels)); 183 CV_CALL( bg_model->foreground = cvCreateImage(cvSize(first_frame->width, 184 first_frame [all...] |
H A D | cvbgfg_acmmm2003.cpp | 75 // first_frame - frame from video sequence 79 cvCreateFGDStatModel( IplImage* first_frame, CvFGDStatModelParams* parameters ) argument 90 if( !CV_IS_IMAGE(first_frame) ) 91 CV_ERROR( CV_StsBadArg, "Invalid or NULL first_frame parameter" ); 93 if (first_frame->nChannels != 3) 94 CV_ERROR( CV_StsBadArg, "first_frame must have 3 color channels" ); 132 pixel_count = first_frame->width * first_frame->height; 146 for( i = 0, k = 0; i < first_frame->height; i++ ) { 147 for( j = 0; j < first_frame [all...] |
/external/v8/test/mjsunit/ |
H A D | stack-traces-overflow.js | 42 var first_frame = e.stack.split("\n")[1] 43 assertTrue(first_frame.indexOf("stack-traces-overflow.js:30:18") > 0);
|
/external/lldb/source/Plugins/Process/Utility/ |
H A D | UnwindMacOSXFrameBackchain.cpp | 91 StackFrame *first_frame = exe_ctx.GetFramePtr(); local 140 SymbolContext first_frame_sc (first_frame->GetSymbolContext(resolve_scope)); 154 if (first_frame->GetFrameCodeAddress() == addr_range_ptr->GetBaseAddress()) 194 StackFrame *first_frame = exe_ctx.GetFramePtr(); 239 SymbolContext first_frame_sc(first_frame->GetSymbolContext(resolve_scope)); 253 if (first_frame->GetFrameCodeAddress() == addr_range_ptr->GetBaseAddress())
|
/external/webrtc/talk/media/devices/ |
H A D | yuvframescapturer.cc | 178 void YuvFramesCapturer::ReadFrame(bool first_frame) { argument 180 if (!first_frame) {
|
H A D | filevideocapturer.h | 133 bool ReadFrame(bool first_frame, int* wait_time_ms);
|
H A D | yuvframescapturer.h | 76 void ReadFrame(bool first_frame);
|
H A D | filevideocapturer.cc | 315 bool FileVideoCapturer::ReadFrame(bool first_frame, int* wait_time_ms) { argument 319 if (!first_frame) { 369 if (!first_frame && !ignore_framerate_) {
|
/external/lldb/include/lldb/Target/ |
H A D | StackFrameList.h | 88 uint32_t first_frame,
|
H A D | Thread.h | 898 uint32_t first_frame,
|
/external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/ |
H A D | rendering_stats_unittest.py | 61 def AddSurfaceFlingerStats(mock_timer, thread, first_frame, 66 first_frame: Is this the first frame within the bounds of an action? 85 if not first_frame: 93 def AddDisplayRenderingStats(mock_timer, thread, first_frame, 98 first_frame: Is this the first frame within the bounds of an action? 115 if not first_frame: 123 def AddImplThreadRenderingStats(mock_timer, thread, first_frame, 128 first_frame: Is this the first frame within the bounds of an action? 149 if not first_frame:
|
/external/lldb/source/Target/ |
H A D | StackFrameList.cpp | 863 uint32_t first_frame, 881 last_frame = first_frame + num_frames; 883 for (frame_idx = first_frame; frame_idx < last_frame; ++frame_idx) 891 num_frames_with_source > (first_frame - frame_idx))) 862 GetStatus(Stream& strm, uint32_t first_frame, uint32_t num_frames, bool show_frame_info, uint32_t num_frames_with_source) argument
|
H A D | Thread.cpp | 1880 uint32_t first_frame, 1886 first_frame, 1879 GetStackFrameStatus(Stream& strm, uint32_t first_frame, uint32_t num_frames, bool show_frame_info, uint32_t num_frames_with_source) argument
|
/external/libvpx/libvpx/vp8/encoder/ |
H A D | firstpass.c | 2720 FIRSTPASS_STATS first_frame; local 2756 memcpy(&first_frame, this_frame, sizeof(*this_frame)); 2772 * itself can be subtracted out using the first_frame data 2847 memcpy(&tmp_frame, &first_frame, sizeof(first_frame)); 2884 * itself can be subtracted out using the first_frame data 3216 double group_iiratio = (kf_group_intra_err - first_frame.intra_error) / (kf_group_coded_err - first_frame.coded_error);
|
/external/libopus/src/ |
H A D | opus_decoder.c | 367 int first_frame = decoded_samples == 0; local 369 lost_flag, first_frame, &dec, pcm_ptr, &silk_frame_size );
|
/external/opencv/cvaux/include/ |
H A D | cvaux.h | 1312 CVAPI(CvBGStatModel*) cvCreateFGDStatModel( IplImage* first_frame, 1375 CVAPI(CvBGStatModel*) cvCreateGaussianBGModel( IplImage* first_frame,
|
/external/libvpx/libvpx/vp9/encoder/ |
H A D | vp9_firstpass.c | 2274 const FIRSTPASS_STATS first_frame = *this_frame; local 2369 FIRSTPASS_STATS tmp_frame = first_frame;
|