HomeSort by relevance Sort by last modified time
    Searched refs:memmove (Results 151 - 175 of 557) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/speex/libspeex/
os_support.h 101 #define SPEEX_MOVE(dst, src, n) (memmove((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)-(src)) ))
  /external/stlport/test/unit/
cstring_test.cpp 47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL );
  /ndk/tests/device/test-gnustl-full/unit/
cstring_test.cpp 47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL );
  /ndk/tests/device/test-stlport/unit/
cstring_test.cpp 47 CPPUNIT_CHECK( std::memmove(buf1, buf2, 0) != NULL );
  /external/icu4c/test/cintltst/
nfsprep.c 118 memmove(dest, b3, reqLength);
260 memmove(dest, p, pLen);
264 memmove(dest+pLen, s, sLen);
  /external/llvm/include/llvm/IR/
IntrinsicInst.h 116 /// MemIntrinsic - This is the common base class for memset/memcpy/memmove.
177 case Intrinsic::memmove:
211 /// MemTransferInst - This class wraps the llvm.memcpy/memmove intrinsics.
237 I->getIntrinsicID() == Intrinsic::memmove;
258 /// MemMoveInst - This class wraps the llvm.memmove intrinsic.
264 return I->getIntrinsicID() == Intrinsic::memmove;
  /external/skia/include/core/
SkPostConfig.h 219 #ifndef memmove
220 #define memmove(dst, src, n) memmove(dst, src, n)
SkTDArray.h 153 memmove(fArray + 1, fArray, (fCount - 1) * sizeof(T));
189 memmove(dst + count, dst, sizeof(T) * (oldCount - index));
199 memmove(fArray + index, fArray + index + count, sizeof(T) * (fCount - index));
  /external/webrtc/src/modules/audio_processing/utility/
delay_estimator.c 195 memmove(&(handle->binary_far_history[1]), &(handle->binary_far_history[0]),
201 memmove(&(handle->far_bit_counts[1]), &(handle->far_bit_counts[0]),
208 memmove(&(handle->binary_near_history[1]),
  /frameworks/av/media/libstagefright/foundation/
AString.cpp 142 memmove(mData, &mData[i], j - i);
153 memmove(&mData[start], &mData[start + n], mSize - start - n);
281 memmove(&mData[insertionPos + size],
  /frameworks/av/media/libstagefright/mpeg2ts/
ESQueue.cpp 313 memmove(mBuffer->data(),
387 memmove(
487 memmove(mBuffer->data(), mBuffer->data() + offset,
617 memmove(mBuffer->data(),
673 memmove(mBuffer->data(),
772 memmove(mBuffer->data(), mBuffer->data() + offset, size - offset);
802 memmove(mBuffer->data(),
830 memmove(mBuffer->data(),
991 memmove(data, &data[offset], size - offset);
1022 memmove(data, &data[offset], size - offset)
    [all...]
  /external/e2fsprogs/util/
subst.c 114 memmove(begin, end+1, strlen(end)+1);
116 memmove(end+(replace_len-len-1), end,
140 memmove(name_ptr-1, name_ptr, strlen(name_ptr)+1);
  /external/skia/legacy/include/core/
SkTDArray.h 149 memmove(fArray + 1, fArray, (fCount - 1) * sizeof(T));
185 memmove(dst + count, dst, sizeof(T) * (oldCount - index));
195 memmove(fArray + index, fArray + index + count, sizeof(T) * (fCount - index));
  /system/core/liblinenoise/
linenoise.c 250 memmove(buf+pos-1,buf+pos,len-pos);
332 memmove(buf+pos+1,buf+pos,len-pos);
423 memmove(history,history+1,sizeof(char*)*(history_max_len-1));
  /bionic/tests/
string_benchmark.cpp 72 memmove(buf, buf + 1, nbytes); // Worst-case overlap.
  /external/chromium/net/http/
http_chunked_decoder.cc 91 memmove(buf, buf + bytes_consumed, buf_len);
  /external/chromium/net/tools/flip_server/
simple_buffer.cc 149 memmove(storage_, read_ptr, read_size);
  /external/clang/tools/libclang/
CXString.cpp 97 memmove(Spelling, String.data(), String.size());
  /external/openssh/openbsd-compat/
realpath.c 101 memmove(left, s + 1, left_len + 1);
  /external/qemu/distrib/sdl-1.2.15/src/stdlib/
SDL_qsort.c 69 #ifdef memmove
70 #undef memmove macro
72 #define memmove SDL_memmove macro
262 memmove(test+size,test,first-test); \
  /external/qemu/
readline.c 86 memmove(rs->cmd_buf + rs->cmd_buf_index + 1,
112 memmove(rs->cmd_buf + rs->cmd_buf_index,
158 memmove(rs->cmd_buf + start,
238 memmove(&rs->history[idx], &rs->history[idx + 1],
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
ISACHist.cc 112 memmove(audioFileName, &audioFileName[n], 500 - n);
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
string_h.pass.cpp 27 static_assert((std::is_same<decltype(memmove(vp, vpc, s)), void*>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/test/strings/c.strings/
cstring.pass.cpp 27 static_assert((std::is_same<decltype(std::memmove(vp, vpc, s)), void*>::value), "");
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node_state_prevword.h 85 // TODO: memmove
92 memmove(mPrevWord, &mPrevWord[offset], newPrevWordLength * sizeof(mPrevWord[0]));

Completed in 498 milliseconds

1 2 3 4 5 67 8 91011>>