Searched refs:lineSize (Results 1 – 5 of 5) sorted by relevance
/frameworks/native/opengl/libs/EGL/ |
D | trace.cpp | 81 static const int lineSize = 500; member in android::StringBuilder 82 char line[lineSize]; 92 line_index += vsnprintf(line + line_index, lineSize-line_index, fmt, argp); in append() 97 line[lineSize-1] = '\0'; in getString()
|
/frameworks/support/renderscript/v8/rs_support/driver/ |
D | rsdAllocation.cpp | 291 uint32_t lineSize = eSize * w; in rsdAllocationData2D() local 302 memcpy(dst, src, lineSize); in rsdAllocationData2D() 303 src += lineSize; in rsdAllocationData2D() 335 uint32_t lineSize = eSize * w; in rsdAllocationRead2D() local 342 memcpy(dst, src, lineSize); in rsdAllocationRead2D() 343 dst += lineSize; in rsdAllocationRead2D()
|
/frameworks/support/renderscript/v8/rs_support/ |
D | rsAllocation.cpp | 89 const size_t lineSize = eSize * w; in data() local 93 if ((lineSize * h) != sizeBytes) { in data() 94 ALOGE("Allocation size mismatch, expected %zu, got %zu", (lineSize * h), sizeBytes); in data() 125 const size_t lineSize = eSize * w; in read() local 127 if ((lineSize * h) != sizeBytes) { in read() 128 ALOGE("Allocation size mismatch, expected %zu, got %zu", (lineSize * h), sizeBytes); in read()
|
/frameworks/rs/ |
D | rsAllocation.cpp | 94 const size_t lineSize = eSize * w; in data() local 98 if ((lineSize * h) != sizeBytes) { in data() 99 ALOGE("Allocation size mismatch, expected %zu, got %zu", (lineSize * h), sizeBytes); in data() 130 const size_t lineSize = eSize * w; in read() local 132 if ((lineSize * h) != sizeBytes) { in read() 133 ALOGE("Allocation size mismatch, expected %zu, got %zu", (lineSize * h), sizeBytes); in read()
|
/frameworks/rs/driver/ |
D | rsdAllocation.cpp | 598 uint32_t lineSize = eSize * w; in rsdAllocationData2D() local 609 memcpy(dst, src, lineSize); in rsdAllocationData2D() 610 src += lineSize; in rsdAllocationData2D() 642 uint32_t lineSize = eSize * w; in rsdAllocationRead2D() local 649 memcpy(dst, src, lineSize); in rsdAllocationRead2D() 650 dst += lineSize; in rsdAllocationRead2D()
|