HomeSort by relevance Sort by last modified time
    Searched refs:move_size (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/socket/
inet_pton.c 121 int move_size = result_pos - double_colon_pos; local
123 memmove(result + kIpv6AddressSize - move_size,
124 result + double_colon_pos, move_size);
  /external/pdfium/core/src/fxcodec/codec/
fx_codec_flate.cpp 248 int move_size = row_size; local
249 if (move_size * (row + 1) > (int)data_size) {
250 move_size = data_size - (move_size * row);
252 FXSYS_memmove32(pDestData + 1, pSrcData, move_size);
253 pDestData += (move_size + 1);
254 pSrcData += move_size;
255 byte_cnt += move_size;
402 int move_size = row_size; local
403 if ((row + 1) * (move_size + 1) > (int)data_size) {
    [all...]
  /external/speex/libspeex/
jitter.c 120 int move_size = tb->filled-pos; local
122 move_size -= 1;
123 SPEEX_MOVE(&tb->timing[pos+1], &tb->timing[pos], move_size);
124 SPEEX_MOVE(&tb->counts[pos+1], &tb->counts[pos], move_size);

Completed in 215 milliseconds