Searched refs:move_size (Results 1 - 6 of 6) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | ra288.c | 178 int order, int n, int non_rec, int move_size) in backward_filter() 187 memmove(hist, hist + n, move_size*sizeof(*hist)); in backward_filter() 175 backward_filter(RA288Context *ractx, float *hist, float *rec, const float *window, float *lpc, const float *tab, int order, int n, int non_rec, int move_size) backward_filter() argument
|
/third_party/pulseaudio/speex/libspeexdsp/ |
H A D | jitter.c | 118 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()
|
/third_party/ffmpeg/libavresample/ |
H A D | audio_data.c | 342 int move_size = a->stride * (a->nb_samples - nb_samples); in ff_audio_data_drain() local 345 memmove(a->data[p], a->data[p] + move_offset, move_size); in ff_audio_data_drain()
|
/third_party/mesa3d/src/imgui/ |
H A D | imstb_textedit.h | 1138 size_t move_size = (size_t)((STB_TEXTEDIT_UNDOSTATECOUNT - state->redo_point - 1) * sizeof(state->undo_rec[0])); 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 STB_TEXTEDIT_memmove(state->undo_rec + state->redo_point+1, state->undo_rec + state->redo_point, move_size); in stb_textedit_discard_redo()
|
/third_party/skia/third_party/externals/imgui/ |
H A D | imstb_textedit.h | 1169 size_t move_size = (size_t)((STB_TEXTEDIT_UNDOSTATECOUNT - state->redo_point - 1) * sizeof(state->undo_rec[0])); in stb_textedit_discard_redo() local 1173 IM_ASSERT(((char*)(state->undo_rec + state->redo_point + 1) + move_size) <= buf_end); in stb_textedit_discard_redo() 1174 STB_TEXTEDIT_memmove(state->undo_rec + state->redo_point+1, state->undo_rec + state->redo_point, move_size); in stb_textedit_discard_redo()
|
/third_party/ffmpeg/libavformat/ |
H A D | mov.c | 9086 int move_size = payload_size; 9087 if (pkt->size < move_size) { 9088 move_size = pkt->size; 9090 memmove(pkt->data, payload_data, move_size);
|
Completed in 15 milliseconds