Searched refs:move_size (Results 1 – 3 of 3) sorted by relevance
263 int move_size = row_size; in PNG_PredictorEncode() local264 if (move_size * (row + 1) > (int)data_size) { in PNG_PredictorEncode()265 move_size = data_size - (move_size * row); in PNG_PredictorEncode()267 FXSYS_memmove(pDestData + 1, pSrcData, move_size); in PNG_PredictorEncode()268 pDestData += (move_size + 1); in PNG_PredictorEncode()269 pSrcData += move_size; in PNG_PredictorEncode()270 byte_cnt += move_size; in PNG_PredictorEncode()422 int move_size = row_size; in PNG_Predictor() local423 if ((row + 1) * (move_size + 1) > (int)data_size) { in PNG_Predictor()424 move_size = last_row_size - 1; in PNG_Predictor()[all …]
120 int move_size = tb->filled-pos; in tb_add() local122 move_size -= 1; in tb_add()123 SPEEX_MOVE(&tb->timing[pos+1], &tb->timing[pos], move_size); in tb_add()124 SPEEX_MOVE(&tb->counts[pos+1], &tb->counts[pos], move_size); in tb_add()
1434 const size_t move_size = (n-r-1)*sizeof(btScalar); in btRemoveRowCol() local1438 memmove (Adst,Asrc,move_size); in btRemoveRowCol()