Lines Matching refs:src_aligned

31   char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, nbytes, 'x');  in BM_string_memcmp()  local
35 benchmark::DoNotOptimize(memcmp(dst_aligned, src_aligned, nbytes)); in BM_string_memcmp()
49 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, nbytes, 'x'); in BM_string_memcpy() local
53 memcpy(dst_aligned, src_aligned, nbytes); in BM_string_memcpy()
67 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, nbytes, 'x'); in BM_string_memmove_non_overlapping() local
71 memmove(dst_aligned, src_aligned, nbytes); in BM_string_memmove_non_overlapping()
146 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, nbytes, 'x'); in BM_string_strcat_copy_only() local
148 src_aligned[nbytes - 1] = '\0'; in BM_string_strcat_copy_only()
154 strcat(dst_aligned, src_aligned); in BM_string_strcat_copy_only()
169 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, 3, 'x'); in BM_string_strcat_seek_only() local
171 src_aligned[2] = '\0'; in BM_string_strcat_seek_only()
175 strcat(dst_aligned, src_aligned); in BM_string_strcat_seek_only()
195 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, nbytes / 2, 'x'); in BM_string_strcat_half_copy_half_seek() local
197 src_aligned[nbytes / 2 - 1] = '\0'; in BM_string_strcat_half_copy_half_seek()
201 strcat(dst_aligned, src_aligned); in BM_string_strcat_half_copy_half_seek()
216 char* src_aligned = GetAlignedPtrFilled(&src, src_alignment, nbytes, 'x'); in BM_string_strcpy() local
218 src_aligned[nbytes - 1] = '\0'; in BM_string_strcpy()
221 strcpy(dst_aligned, src_aligned); in BM_string_strcpy()