Searched refs:toCopy (Results 1 – 6 of 6) sorted by relevance
/hardware/google/aemu/base/include/aemu/base/ |
D | Allocator.h | 42 char* strDup(const char* toCopy) { in strDup() argument 43 size_t bytes = strlen(toCopy) + 1; in strDup() 46 memcpy(res, toCopy, bytes); in strDup()
|
D | SubAllocator.h | 65 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/ |
D | Allocator.h | 42 char* strDup(const char* toCopy) { in strDup() argument 43 size_t bytes = strlen(toCopy) + 1; in strDup() 46 memcpy(res, toCopy, bytes); in strDup()
|
D | AndroidSubAllocator.h | 64 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/ |
D | DescriptorSetVirtualization.cpp | 212 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/ |
D | GL2Encoder.cpp | 2122 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()
|