Searched refs:strCopy (Results 1 – 4 of 4) sorted by relevance
/external/guava/android/guava-tests/benchmark/com/google/common/base/ |
D | StringsRepeatBenchmark.java | 76 char[] strCopy = new char[len * Integer.highestOneBit(count)]; in mikeRepeat() local 77 string.getChars(0, len, strCopy, 0); in mikeRepeat() 85 System.arraycopy(strCopy, 0, array, pos, strCopyLen); in mikeRepeat() 90 System.arraycopy(strCopy, 0, strCopy, strCopyLen, strCopyLen); in mikeRepeat()
|
/external/guava/guava-tests/benchmark/com/google/common/base/ |
D | StringsRepeatBenchmark.java | 76 char[] strCopy = new char[len * Integer.highestOneBit(count)]; in mikeRepeat() local 77 string.getChars(0, len, strCopy, 0); in mikeRepeat() 85 System.arraycopy(strCopy, 0, array, pos, strCopyLen); in mikeRepeat() 90 System.arraycopy(strCopy, 0, strCopy, strCopyLen, strCopyLen); in mikeRepeat()
|
/external/icu/icu4c/source/test/cintltst/ |
D | usettest.c | 275 char strCopy[64]; in expectContainment() local 280 strncpy(strCopy, stringStart, stringLength); in expectContainment() 281 strCopy[stringLength] = 0; in expectContainment() 288 strCopy); in expectContainment() 292 strCopy); in expectContainment() 422 char strCopy[64]; in expectItems() local 427 strncpy(strCopy, stringStart, stringLength); in expectItems() 428 strCopy[stringLength] = 0; in expectItems() 435 pat, strCopy); in expectItems() 441 pat, strCopy); in expectItems()
|
/external/llvm-project/lld/lib/ReaderWriter/MachO/ |
D | MachONormalizedFileToAtoms.cpp | 706 char *strCopy = alloc.Allocate<char>(str.size() + 1); in copyDebugString() local 707 memcpy(strCopy, str.data(), str.size()); in copyDebugString() 708 strCopy[str.size()] = '\0'; in copyDebugString() 709 return strCopy; in copyDebugString()
|