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

1 2 3 4 5 6 7 8 91011>>

  /external/libvorbis/lib/
envelope.c 361 memmove(e->mark,e->mark+smallshift,(smallsize-smallshift)*sizeof(*e->mark));
365 memmove(e->filter[i].markers,
  /external/openssl/crypto/evp/
bio_ok.c 246 memmove(ctx->buf, &(ctx->buf[ctx->buf_off_save]),
541 memmove(ctx->buf, &(ctx->buf[ctx->buf_off]), ctx->buf_len- ctx->buf_off);
  /frameworks/native/include/utils/
RefBase.h 490 memmove(d, s, n*sizeof(sp<TYPE>));
509 memmove(d, s, n*sizeof(wp<TYPE>));
  /frameworks/rs/server/
RefBase.h 484 memmove(d, s, n*sizeof(sp<TYPE>));
490 memmove(d, s, n*sizeof(wp<TYPE>));
  /bionic/libc/bionic/
fts.c 192 memmove(sp->fts_path, p->fts_name, len + 1);
195 memmove(p->fts_name, cp, len + 1);
389 memmove(t, p->fts_name, p->fts_namelen + 1);
719 memmove(cp, p->fts_name, p->fts_namelen + 1);
  /dalvik/vm/
ReferenceTable.cpp 143 memmove(ptr, ptr+1, moveCount * sizeof(Object*));
  /dalvik/vm/native/
java_lang_System.cpp 33 * We can't rely on standard libc functions like memcpy() and memmove()
51 * Works like memmove(), except:
58 * testing for unaligned values and punting to memmove(), but that's
252 memmove((u1*) dstArray->contents + dstPos,
  /external/chromium/net/socket/
ssl_client_socket_win.cc 757 memmove(recv_buffer_.get(), received_ptr_, bytes_received_);
    [all...]
  /external/compiler-rt/lib/asan/tests/
asan_mem_test.cc 120 // Same test for memcpy and memmove functions
198 return Ident(memmove)(to, from, size);
  /external/elfutils/libelf/
gelf_xlate.c 76 memmove (dest, src, n);
  /external/kernel-headers/original/asm-x86/
string_32.h 153 void *memmove(void * dest,const void * src, size_t n);
  /external/kernel-headers/original/linux/
if_vlan.h 218 memmove(skb->data, skb->data + VLAN_HLEN, 2 * VLAN_ETH_ALEN);
  /external/llvm/lib/IR/
IRBuilder.cpp 114 Value *TheFn = Intrinsic::getDeclaration(M, Intrinsic::memmove, Tys);
  /external/openssl/crypto/bio/
bss_mem.c 158 memmove(&(bm->data[0]),&(bm->data[ret]),bm->length);
  /external/openssl/crypto/stack/
stack.c 168 #ifdef undef /* no memmove on sunos :-( */
169 memmove(&(st->data[loc+1]),
  /external/qemu/
buffered_file.c 105 memmove(s->buffer, s->buffer + offset, s->buffer_size - offset);
  /external/qemu/hw/
goldfish_tty.c 145 memmove(s->data, s->data + s->ptr_len, s->data_count - s->ptr_len);
  /external/qemu/slirp/
slirp.h 98 #define memmove(x, y, z) bcopy(y, x, z) macro
  /external/regex-re2/re2/
bitstate.cc 109 memmove(newjob, job_, njob_*sizeof job_[0]);
regexp.cc 218 memmove(subcopy, sub, nsub * sizeof sub[0]);
308 // Can use memmove because Regexp is just a struct (no vtable).
310 memmove(tmp, this, sizeof tmp);
311 memmove(this, that, sizeof tmp);
312 memmove(that, tmp, sizeof tmp);
  /external/srec/portable/src/
LCHAR.c 60 memmove(target + offset + LSTRLEN(source), target + offset, LSTRLEN(target + offset) + 1);
  /external/stlport/stlport/stl/
_cwchar.h 323 { return __STATIC_CAST(wchar_t*, memmove(__wdst, __wc, __n * sizeof(wchar_t))); }
char_traits.h 168 { return (_Sz == 0 ? __s1 : (char_type*)memmove(__s1, __s2, _Sz * sizeof(char_type))); }
  /external/valgrind/main/include/
pub_tool_libcbase.h 121 extern void* VG_(memmove)( void *d, const void *s, SizeT sz );
  /external/webkit/Source/WebCore/platform/text/
TextCodecUTF8.cpp 156 memmove(m_partialSequence, m_partialSequence + 1, m_partialSequenceSize);

Completed in 475 milliseconds

1 2 3 4 5 6 7 8 91011>>