Searched refs:TempBuffer (Results 1 – 4 of 4) sorted by relevance
355 char TempBuffer[LINEBUFFERSIZE], TempTilde[TOKENBUFFERSIZE]; in tilde_sub() local 378 TempBuffer[CopiedBufferLength] = '\0'; in tilde_sub() 380 strcat(TempBuffer, TildeSub[k].Value); in tilde_sub() 381 CopiedBufferLength = strlen(TempBuffer); in tilde_sub() 388 TempBuffer[CopiedBufferLength] = '\0'; in tilde_sub() 389 TempBuffer[CopiedBufferLength++] = '~'; in tilde_sub() 390 TempBuffer[CopiedBufferLength] = '\0'; in tilde_sub() 391 strcat(TempBuffer, TempTilde); in tilde_sub() 392 strcat(TempBuffer, "~"); in tilde_sub() 393 CopiedBufferLength = strlen(TempBuffer); in tilde_sub() [all...]
369 struct TempBuffer { struct374 TempBuffer(bool GenerateComments) : BS(Bytes, Comments, GenerateComments) {} in TempBuffer() argument377 std::unique_ptr<TempBuffer> TmpBuf;
206 TmpBuf = std::make_unique<TempBuffer>(OutBS.GenerateComments); in enableTemporaryBuffer()
1119 char TempBuffer[17]; in outputHex() local1121 ::memset(TempBuffer, 0, sizeof(TempBuffer)); in outputHex()1122 constexpr int MaxPos = sizeof(TempBuffer) - 1; in outputHex()1127 writeHexDigit(&TempBuffer[Pos--], C % 16); in outputHex()1131 TempBuffer[Pos--] = 'x'; in outputHex()1133 TempBuffer[Pos--] = '\\'; in outputHex()1134 OB << StringView(&TempBuffer[Pos + 1]); in outputHex()