Home
last modified time | relevance | path

Searched refs:move_size (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_flate.cpp263 int move_size = row_size; in PNG_PredictorEncode() local
264 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() local
423 if ((row + 1) * (move_size + 1) > (int)data_size) { in PNG_Predictor()
424 move_size = last_row_size - 1; in PNG_Predictor()
[all …]
/external/speex/libspeex/
Djitter.c120 int move_size = tb->filled-pos; in tb_add() local
122 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()
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/MLCPSolvers/
DbtDantzigLCP.cpp1434 const size_t move_size = (n-r-1)*sizeof(btScalar); in btRemoveRowCol() local
1438 memmove (Adst,Asrc,move_size); in btRemoveRowCol()