Searched refs:copyCount (Results 1 - 2 of 2) sorted by relevance

/haiku/src/add-ons/kernel/debugger/qrencode/
H A Dmodule.cpp99 int copyCount = 0; local
101 char character = data[copyCount];
134 copyCount++;
137 return copyCount;
163 int copyCount = 0; local
165 copyCount = encode_url(sWebPostCounter++ == 0 ? "clear" : "d",
167 if (copyCount < 0) {
173 copyCount = inputLength < encodeLength ? inputLength : encodeLength;
174 memcpy(sEncodeBuffer, source, copyCount);
175 sEncodeBuffer[copyCount]
255 int copyCount = sizeof(sStringBuffer) - sBufferPosition - 1; local
[all...]
/haiku/src/kits/interface/
H A DColorConversion.cpp788 int32 copyCount = (width * srcBitsPerPixel) >> 3; local
791 if (copyCount > srcBitsLength)
792 copyCount = srcBitsLength;
793 if (copyCount > dstBitsLength)
794 copyCount = dstBitsLength;
795 if (copyCount == 0)
798 memcpy(dstBits, srcBits, copyCount);
800 srcBitsLength -= copyCount;
801 dstBitsLength -= copyCount;

Completed in 26 milliseconds