Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/flate/
Dflatemodule.cpp382 int move_size = row_size; in PNG_Predictor() local
383 if ((row + 1) * (move_size + 1) > static_cast<int>(*data_size)) { in PNG_Predictor()
384 move_size = last_row_size - 1; in PNG_Predictor()
386 memcpy(pDestData, pSrcData + 1, move_size); in PNG_Predictor()
387 pSrcData += move_size + 1; in PNG_Predictor()
388 pDestData += move_size; in PNG_Predictor()
389 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/mesa3d/src/imgui/
Dimstb_textedit.h1138 …size_t move_size = (size_t)((STB_TEXTEDIT_UNDOSTATECOUNT - state->redo_point - 1) * sizeof(state->… in stb_textedit_discard_redo() local
1142 IM_ASSERT(((char*)(state->undo_rec + state->redo_point + 1) + move_size) <= buf_end); in stb_textedit_discard_redo()
1143 …DIT_memmove(state->undo_rec + state->redo_point+1, state->undo_rec + state->redo_point, move_size); in stb_textedit_discard_redo()
/external/libaom/libaom/av1/encoder/
Dbitstream.c3314 const size_t move_size = obu_payload_size; in obu_memmove() local
3315 memmove(data + move_dst_offset, data + move_src_offset, move_size); in obu_memmove()