Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/codec/
Dfx_codec_flate.cpp378 int move_size = row_size; in PNG_Predictor() local
379 if ((row + 1) * (move_size + 1) > (int)data_size) { in PNG_Predictor()
380 move_size = last_row_size - 1; in PNG_Predictor()
382 memmove(pDestData, pSrcData + 1, move_size); in PNG_Predictor()
383 pSrcData += move_size + 1; in PNG_Predictor()
384 pDestData += move_size; in PNG_Predictor()
385 byte_cnt += move_size; in PNG_Predictor()
/external/speex/libspeexdsp/
Djitter.c118 int move_size = tb->filled-pos; in tb_add() local
120 move_size -= 1; in tb_add()
121 SPEEX_MOVE(&tb->timing[pos+1], &tb->timing[pos], move_size); in tb_add()
122 SPEEX_MOVE(&tb->counts[pos+1], &tb->counts[pos], move_size); in tb_add()
/external/libaom/libaom/av1/encoder/
Dbitstream.c3280 const uint32_t move_size = obu_payload_size; in obu_memmove() local
3281 memmove(data + move_dst_offset, data + move_src_offset, move_size); in obu_memmove()