Home
last modified time | relevance | path

Searched refs:outPtr (Results 1 - 17 of 17) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H A 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, inPt in copyIndices()
[all...]
/third_party/vk-gl-cts/framework/delibs/deutil/
H A 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()
/third_party/curl/lib/
H A Dsendf.c74 char *inPtr, *outPtr; in convert_lineends() local
96 inPtr = outPtr = memchr(startPtr, '\r', size); in convert_lineends()
104 *outPtr = *inPtr; in convert_lineends()
111 *outPtr = '\n'; in convert_lineends()
115 *outPtr = *inPtr; in convert_lineends()
118 outPtr++; in convert_lineends()
126 *outPtr = '\n'; /* copy a NL instead */ in convert_lineends()
132 *outPtr = *inPtr; in convert_lineends()
134 outPtr++; in convert_lineends()
136 if(outPtr < startPt in convert_lineends()
[all...]
/third_party/vk-gl-cts/executor/
H A DxeTestResultParser.cpp864 deUint8* outPtr = &image->data[(m_base64DecodeOffset>>2)*3]; in handleData() local
868 case 0: outPtr[0] |= (deUint8)(decodedBits<<2); break; in handleData()
869 case 1: outPtr[0] = (deUint8)(outPtr[0] | (deUint8)(decodedBits>>4)); outPtr[1] = (deUint8)(outPtr[1] | (deUint8)((decodedBits&0xF)<<4)); break; in handleData()
870 case 2: outPtr[1] = (deUint8)(outPtr[1] | (deUint8)(decodedBits>>2)); outPtr[2] = (deUint8)(outPtr[ in handleData()
[all...]
/third_party/libsnd/src/ALAC/
H A Dag_dec.c271 int32_t *outPtr = pc ; in dyn_decomp() local
317 *outPtr++ = del ; in dyn_decomp()
341 *outPtr++ = 0 ; in dyn_decomp()
/third_party/skia/tests/
H A DPathOpsExtendedTest.cpp222 char* outPtr = out;
224 *outPtr++ = addr1[x] == (uint32_t) -1 ? '_' : 'x';
226 *outPtr++ = '|';
228 *outPtr++ = addr1[x] == (uint32_t) -1 ? '_' : 'x';
230 *outPtr++ = '\0';
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
H A Drenderer_utils.h334 // Writes the line-strip vertices for a line loop to outPtr,
337 void CopyLineLoopIndicesWithRestart(GLsizei indexCount, const uint8_t *srcPtr, uint8_t *outPtr) in CopyLineLoopIndicesWithRestart() argument
342 Out *outIndices = reinterpret_cast<Out *>(outPtr); in CopyLineLoopIndicesWithRestart()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A DFramebufferGL.cpp694 GLubyte *outPtr = static_cast<GLubyte *>(pixels); in readPixels()
706 outPtr += leftClip * glFormat.pixelBytes + topClip * rowBytes; in readPixels()
726 outPtr); in readPixels()
734 readFormat, readType, false, outPtr, &useLastRowPaddingWorkaround)); in readPixels()
738 outPtr, useLastRowPaddingWorkaround); in readPixels()
/third_party/node/test/fixtures/postject-copy/node_modules/postject/dist/
H A Dapi.js281 function stringToUTF8(str, outPtr, maxBytesToWrite) {
282 return stringToUTF8Array(str, HEAPU8, outPtr, maxBytesToWrite);
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A 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()
/third_party/skia/third_party/externals/d3d12allocator/src/
H A DTests.cpp80 static void FillData(void* outPtr, const UINT64 sizeInBytes, UINT seed) in FillData() argument
82 UINT* outValues = (UINT*)outPtr; in FillData()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
H A Dvk_helpers.cpp580 uint8_t *outPtr) in HandlePrimitiveRestart()
587 CopyLineLoopIndicesWithRestart<uint8_t, uint8_t>(indexCount, srcPtr, outPtr); in HandlePrimitiveRestart()
591 CopyLineLoopIndicesWithRestart<uint8_t, uint16_t>(indexCount, srcPtr, outPtr); in HandlePrimitiveRestart()
595 CopyLineLoopIndicesWithRestart<uint16_t, uint16_t>(indexCount, srcPtr, outPtr); in HandlePrimitiveRestart()
598 CopyLineLoopIndicesWithRestart<uint32_t, uint32_t>(indexCount, srcPtr, outPtr); in HandlePrimitiveRestart()
576 HandlePrimitiveRestart(ContextVk *contextVk, gl::DrawElementsType glIndexType, GLsizei indexCount, const uint8_t *srcPtr, uint8_t *outPtr) HandlePrimitiveRestart() argument
/third_party/astc-encoder/Source/
H A Dtinyexr.h9250 static bool CompressPiz(unsigned char *outPtr, unsigned int *outSize, in CompressPiz() argument
9316 char *buf = reinterpret_cast<char *>(outPtr); in CompressPiz()
9358 (reinterpret_cast<unsigned char *>(buf) - outPtr) + in CompressPiz()
9365 memcpy(outPtr, inPtr, inSize); in CompressPiz()
9370 static bool DecompressPiz(unsigned char *outPtr, const unsigned char *inPtr, in DecompressPiz() argument
9376 memcpy(outPtr, inPtr, inLen); in DecompressPiz()
9479 memcpy(outPtr, cd.end, static_cast<size_t>(n * sizeof(unsigned short))); in DecompressPiz()
9480 outPtr += n * sizeof(unsigned short); in DecompressPiz()
/third_party/skia/modules/canvaskit/
H A Dcanvaskit_bindings.cpp840 SkScalar lightRadius, uint32_t flags, WASMPointerF32 outPtr) -> bool { in EMSCRIPTEN_BINDINGS()
846 SkRect* outputBounds = reinterpret_cast<SkRect*>(outPtr); in EMSCRIPTEN_BINDINGS()
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/generated/vulkansc/
H A Dvulkan_json_parser.hpp300 deUint8* outPtr = result.data() + (base64DecodeOffset >> 2) * 3; in base64decode() local
304 case 0: outPtr[0] |= (deUint8)(decodedBits << 2); break; in base64decode()
305 case 1: outPtr[0] = (deUint8)(outPtr[0] | (deUint8)(decodedBits >> 4)); outPtr[1] = (deUint8)(outPtr[1] | (deUint8)((decodedBits & 0xF) << 4)); break; in base64decode()
306 case 2: outPtr[1] = (deUint8)(outPtr[1] | (deUint8)(decodedBits >> 2)); outPtr[2] = (deUint8)(outPtr[ in base64decode()
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DLLVMReactor.cpp4191 auto outPtr = args++; in promoteFunctionToCoroutine() local
4206 jit->builder->CreateStore(promise, outPtr); in promoteFunctionToCoroutine()
H A DSubzeroReactor.cpp4773 Ice::Variable *outPtr = awaitFunc->getArgs()[1];
4793 auto store = Ice::InstStore::create(awaitFunc, promiseVal, outPtr);

Completed in 80 milliseconds