Lines Matching refs:src_buff
127 int CopyData(ring_buffer *dest_buff, ring_buffer *src_buff, int len) in CopyData() argument
139 to_cpy = MIN(GetDataSizeRBuffer(src_buff), to_cpy); in CopyData()
143 memcpy(ip, GetDataPoint(src_buff), to_cpy); in CopyData()
149 int MoveToREPData(ring_buffer *dest_buff, ring_buffer *src_buff, int len) in MoveToREPData() argument
154 int data_size = GetDataSizeRBuffer(src_buff); in MoveToREPData()
183 memcpy(ip, GetDataPoint(src_buff), to_move); in MoveToREPData()
188 ret = RemoveDataFromBuffer(src_buff, to_move); in MoveToREPData()
195 int MoveData(ring_buffer *dest_buff, ring_buffer *src_buff, int len) in MoveData() argument
201 to_move = GetDataSizeRBuffer(src_buff); in MoveData()
206 to_move = MIN(GetDataSizeRBuffer(src_buff), to_move); in MoveData()
212 memcpy(ip, GetDataPoint(src_buff), to_move); in MoveData()
216 ret = RemoveDataFromBuffer(src_buff, to_move); in MoveData()