Home
last modified time | relevance | path

Searched refs:TempBuffer (Results 1 - 10 of 10) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfExpression.h349 struct TempBuffer {
354 TempBuffer(bool GenerateComments) : BS(Bytes, Comments, GenerateComments) {}
357 std::unique_ptr<TempBuffer> TmpBuf;
H A DDwarfDebug.cpp204 TmpBuf = std::make_unique<TempBuffer>(OutBS.GenerateComments);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp1118 char TempBuffer[17]; in outputHex() local
1120 ::memset(TempBuffer, 0, sizeof(TempBuffer)); in outputHex()
1121 constexpr int MaxPos = sizeof(TempBuffer) - 1; in outputHex()
1123 int Pos = MaxPos - 1; // TempBuffer[MaxPos] is the terminating \0. in outputHex()
1126 writeHexDigit(&TempBuffer[Pos--], C % 16); in outputHex()
1130 TempBuffer[Pos--] = 'x'; in outputHex()
1132 TempBuffer[Pos--] = '\\'; in outputHex()
1133 OS << StringView(&TempBuffer[Pos + 1]); in outputHex()
/third_party/lzma/CPP/7zip/Archive/7z/
H A D7zEncode.cpp251 CInOutTempBuffer TempBuffer; member
262 RINOK(TempBuffer.Write_HRESULT(data, size)) in Write()
497 CInOutTempBuffer &iotb = tempBufferSpecs[i - 1]->TempBuffer; in Encode1()
/third_party/mesa3d/src/imgui/
H A Dimgui_widgets.cpp249 const char* text_end = g.TempBuffer + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); in TextV()
250 TextUnformatted(g.TempBuffer, text_end); in TextV()
328 const char* value_text_begin = &g.TempBuffer[0]; in LabelTextV()
329 const char* value_text_end = value_text_begin + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); in LabelTextV()
353 const char* text_begin = g.TempBuffer; in BulletTextV()
354 const char* text_end = text_begin + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fm in BulletTextV()
[all...]
H A Dimgui_internal.h566 ImVector<char> TempBuffer; // temporary buffer for callback and other other operations. size=capacity. member
931 char TempBuffer[1024*3+1]; // Temporary text buffer member
1040 memset(TempBuffer, 0, sizeof(TempBuffer)); in ImGuiContext()
H A Dimgui.cpp3608 g.InputTextState.TempBuffer.clear(); in Shutdown()
/third_party/skia/third_party/externals/imgui/
H A Dimgui_widgets.cpp278 const char* text_end = g.TempBuffer + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); in TextV()
279 TextEx(g.TempBuffer, text_end, ImGuiTextFlags_NoWidthForLargeClippedText); in TextV()
360 const char* value_text_begin = &g.TempBuffer[0]; in LabelTextV()
361 const char* value_text_end = value_text_begin + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); in LabelTextV()
396 const char* text_begin = g.TempBuffer; in BulletTextV()
397 const char* text_end = text_begin + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fm in BulletTextV()
[all...]
H A Dimgui_internal.h1710 char TempBuffer[1024 * 3 + 1]; // Temporary text buffer
1859 memset(TempBuffer, 0, sizeof(TempBuffer));
H A Dimgui.cpp5029 ImFormatString(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), "%s/%s_%08X", parent_window->Name, name, id); in BeginChildEx()
5031 ImFormatString(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), "%s/%08X", parent_window->Name, id); in BeginChildEx()
5036 bool ret = Begin(g.TempBuffer, NULL, flags); in BeginChildEx()

Completed in 65 milliseconds