Home
last modified time | relevance | path

Searched refs:toCopy (Results 1 – 6 of 6) sorted by relevance

/hardware/google/aemu/base/include/aemu/base/
DAllocator.h42 char* strDup(const char* toCopy) { in strDup() argument
43 size_t bytes = strlen(toCopy) + 1; in strDup()
46 memcpy(res, toCopy, bytes); in strDup()
DSubAllocator.h65 char* strDup(const char* toCopy) { in strDup() argument
66 size_t bytes = strlen(toCopy) + 1; in strDup()
69 memcpy(res, toCopy, bytes); in strDup()
/hardware/google/gfxstream/guest/android-emu/aemu/base/
DAllocator.h42 char* strDup(const char* toCopy) { in strDup() argument
43 size_t bytes = strlen(toCopy) + 1; in strDup()
46 memcpy(res, toCopy, bytes); in strDup()
DAndroidSubAllocator.h64 char* strDup(const char* toCopy) { in strDup() argument
65 size_t bytes = strlen(toCopy) + 1; in strDup()
68 memcpy(res, toCopy, bytes); in strDup()
/hardware/google/gfxstream/guest/vulkan_enc/
DDescriptorSetVirtualization.cpp212 std::vector<DescriptorWrite> toCopy; in doEmulatedDescriptorCopy() local
223 toCopy.push_back(srcTable[currBinding][arrOffset]); in doEmulatedDescriptorCopy()
238 dstTable[currBinding][arrOffset] = toCopy[i]; in doEmulatedDescriptorCopy()
/hardware/google/gfxstream/guest/GLESv2_enc/
DGL2Encoder.cpp2122 size_t toCopy = bufsize < (ret.size() + 1) ? bufsize : ret.size() + 1; in s_glGetShaderSource() local
2123 memcpy(source, ret.c_str(), toCopy); in s_glGetShaderSource()