Home
last modified time | relevance | path

Searched refs:outPtr (Results 1 – 7 of 7) sorted by relevance

/external/swiftshader/src/OpenGL/libGLESv2/
DIndexDataManager.cpp76 unsigned char* outPtr = static_cast<unsigned char*>(output); in copyIndices() local
106 memcpy(outPtr, inPtr, numBytes); in copyIndices()
107 outPtr += numBytes; in copyIndices()
120 memcpy(outPtr, inPtr, bytesPerIndex); in copyIndices()
121 outPtr += bytesPerIndex; in copyIndices()
122 memcpy(outPtr, inPtr + ((tri + 1) * bytesPerIndex), bytesPerIndex + bytesPerIndex); in copyIndices()
123 outPtr += bytesPerIndex + bytesPerIndex; in copyIndices()
137 memcpy(outPtr, inPtr + ((tri + 1) * bytesPerIndex), bytesPerIndex); in copyIndices()
138 outPtr += bytesPerIndex; in copyIndices()
139 memcpy(outPtr, inPtr + ((tri + 0) * bytesPerIndex), bytesPerIndex); in copyIndices()
[all …]
/external/deqp/framework/delibs/deutil/
DdeCommandLine.c44 char* outPtr; in deCommandLine_parse() local
62 outPtr = buf; in deCommandLine_parse()
81 case 'n': *outPtr++ = '\n'; break; in deCommandLine_parse()
82 case 't': *outPtr++ = '\t'; break; in deCommandLine_parse()
83 default: *outPtr++ = c; break; in deCommandLine_parse()
99 *outPtr++ = 0; in deCommandLine_parse()
101 if (!CharPtrArray_pushBack(args, outPtr)) in deCommandLine_parse()
109 *outPtr++ = c; in deCommandLine_parse()
115 *outPtr = 0; in deCommandLine_parse()
/external/curl/lib/
Dsendf.c61 char *inPtr, *outPtr; in convert_lineends() local
83 inPtr = outPtr = memchr(startPtr, '\r', size); in convert_lineends()
91 *outPtr = *inPtr; in convert_lineends()
98 *outPtr = '\n'; in convert_lineends()
102 *outPtr = *inPtr; in convert_lineends()
105 outPtr++; in convert_lineends()
113 *outPtr = '\n'; /* copy a NL instead */ in convert_lineends()
119 *outPtr = *inPtr; in convert_lineends()
121 outPtr++; in convert_lineends()
123 if(outPtr < startPtr + size) in convert_lineends()
[all …]
/external/deqp/executor/
DxeTestResultParser.cpp846 deUint8* outPtr = &image->data[(m_base64DecodeOffset>>2)*3]; in handleData() local
850 case 0: outPtr[0] |= (deUint8)(decodedBits<<2); break; in handleData()
851 …case 1: outPtr[0] = (deUint8)(outPtr[0] | (deUint8)(decodedBits>>4)); outPtr[1] = (deUint8)(outPtr in handleData()
852 …case 2: outPtr[1] = (deUint8)(outPtr[1] | (deUint8)(decodedBits>>2)); outPtr[2] = (deUint8)(outPtr in handleData()
853 case 3: outPtr[2] |= decodedBits; break; in handleData()
/external/skia/tests/
DPathOpsExtendedTest.cpp307 char* outPtr = out; in drawAsciiPaths() local
309 *outPtr++ = addr1[x] == (uint32_t) -1 ? '_' : 'x'; in drawAsciiPaths()
311 *outPtr++ = '|'; in drawAsciiPaths()
313 *outPtr++ = addr1[x] == (uint32_t) -1 ? '_' : 'x'; in drawAsciiPaths()
315 *outPtr++ = '\0'; in drawAsciiPaths()
/external/skqp/tests/
DPathOpsExtendedTest.cpp307 char* outPtr = out; in drawAsciiPaths() local
309 *outPtr++ = addr1[x] == (uint32_t) -1 ? '_' : 'x'; in drawAsciiPaths()
311 *outPtr++ = '|'; in drawAsciiPaths()
313 *outPtr++ = addr1[x] == (uint32_t) -1 ? '_' : 'x'; in drawAsciiPaths()
315 *outPtr++ = '\0'; in drawAsciiPaths()
/external/deqp/modules/gles3/functional/
Des3fTransformFeedbackTests.cpp738 const deUint8* outPtr = outBasePtr + outStride*outNdx + outOffset + compNdx*sizeof(deUint32); in compareTransformFeedbackOutput() local
740 deUint32 outVal = *(const deUint32*)outPtr; in compareTransformFeedbackOutput()
753 float outF = *(const float*)outPtr; in compareTransformFeedbackOutput()