Searched refs:outIndex (Results 1 - 9 of 9) sorted by relevance

/haiku/src/kits/support/
H A DBase64.cpp78 int outIndex = 0; local
88 lastOutLine = outIndex;
109 outIndex = lastOutLine;
121 out[outIndex++] = (concat & 0x00ff0000) >> 16;
123 out[outIndex++] = (concat & 0x0000ff00) >> 8;
125 out[outIndex++] = (concat & 0x000000ff);
128 return outIndex;
/haiku/headers/private/shared/
H A Dcpu_type.h53 int outIndex = 0; local
65 outIndex += strlcpy(&buffer[outIndex], "��",
66 sizeof(buffer) - outIndex);
69 outIndex += strlcpy(&buffer[outIndex], "���",
70 sizeof(buffer) - outIndex);
79 buffer[outIndex++] = name[index];
82 buffer[outIndex] = '\0';
100 int outIndex local
[all...]
/haiku/src/system/libroot/posix/crypt/
H A Dcrypt.cpp46 size_t outIndex = 0; local
59 outBuffer[outIndex++] = kHexAlphabet[upper];
60 outBuffer[outIndex++] = kHexAlphabet[lower];
61 outBuffer[outIndex] = '\0';
64 outBuffer[outIndex] = '\0';
74 size_t outIndex = 0;
84 return outIndex;
89 if (outIndex >= outBufferLength)
92 outBuffer[outIndex++] = (index1 << 4) | index2;
96 return outIndex;
[all...]
/haiku/headers/private/interface/
H A DWidthBuffer.h45 bool FindTable(const BFont* font, int32* outIndex);
/haiku/src/kits/interface/textview_support/
H A DWidthBuffer.cpp178 \param outIndex a pointer to an int32, where the function will store
184 WidthBuffer::FindTable(const BFont* inStyle, int32* outIndex) argument
197 if (outIndex != NULL)
198 *outIndex = tableIndex;
H A DStyleBuffer.h86 int32* outIndex);
H A DStyleBuffer.cpp145 int32* outIndex)
150 *outIndex = i;
144 MatchRecord(const BFont* inFont, const rgb_color* inColor, int32* outIndex) argument
/haiku/src/kits/debugger/files/
H A DFileManager.cpp402 int32 outIndex = 0; local
408 buffer[outIndex++] = '/';
416 if (outIndex > 1)
417 outIndex--;
436 buffer[outIndex++] = *(remaining++);
441 if (outIndex == path.Length()) {
444 normalizedPath.UnlockBuffer(outIndex);
/haiku/src/apps/deskbar/
H A DResourceSet.h69 size_t* outIndex);

Completed in 78 milliseconds