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

  /bionic/benchmarks/
string_benchmark.cpp 31 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, nbytes, 'x'); local
36 c += memcmp(dst_aligned, src_aligned, nbytes);
50 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, nbytes, 'x'); local
54 memcpy(dst_aligned, src_aligned, nbytes);
68 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, nbytes, 'x'); local
72 memmove(dst_aligned, src_aligned, nbytes);
148 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, nbytes, 'x'); local
150 src_aligned[nbytes - 1] = '\0';
156 strcat(dst_aligned, src_aligned);
171 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, 3, 'x') local
197 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, nbytes \/ 2, 'x'); local
218 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, nbytes, 'x'); local
    [all...]
  /libcore/luni/src/test/native/
libcore_io_Memory_test.cpp 47 T* src_aligned = reinterpret_cast<T*>(&src[src_align]); local
49 memcpy(src_aligned, src_buf, sizeof(T) * NUM_ELEMENTS);
50 swap_func(dst_aligned, src_aligned, NUM_ELEMENTS);
90 jlong src_aligned = reinterpret_cast<jlong>(src) + i; local
91 memcpy(reinterpret_cast<void*>(src_aligned), &value, sizeof(T));
92 T result = peek_func(nullptr, nullptr, src_aligned);

Completed in 68 milliseconds