Lines Matching refs:cont_process
453 bool cont_process = true; // continue processing after extraction. in extractFrame() local
482 cont_process = false; // end of input data. in extractFrame()
505 cont_process = (bool)(dataPtr < eodPtr); in extractFrame()
508 if(hasFSyncs && cont_process && (m_ex_frm_n_bytes == 0)) in extractFrame()
510 while((*((uint32_t *)(dataPtr)) == FSYNC_PATTERN) && cont_process) in extractFrame()
514 cont_process = (bool)(dataPtr < eodPtr); in extractFrame()
521 while((m_ex_frm_n_bytes < OCSD_DFRMTR_FRAME_SIZE) && cont_process) in extractFrame()
559 cont_process = (bool)(dataPtr < eodPtr); in extractFrame()
564 if(!cont_process && (m_ex_frm_n_bytes == OCSD_DFRMTR_FRAME_SIZE)) in extractFrame()
565 cont_process = true; in extractFrame()
585 return cont_process; in extractFrame()