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

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.cpp2133 const int write_off = (Buf.Size != 0) ? Buf.Size : 1; local in function:ImGuiTextBuffer::append
2134 const int needed_sz = write_off + len;
2135 if (write_off + len >= Buf.Capacity)
2142 memcpy(&Buf[write_off - 1], str, (size_t)len);
2143 Buf[write_off - 1 + len] = 0;
2168 const int write_off = (Buf.Size != 0) ? Buf.Size : 1; local in function:ImGuiTextBuffer::appendfv
2169 const int needed_sz = write_off + len;
2170 if (write_off + len >= Buf.Capacity)
2177 ImFormatStringV(&Buf[write_off - 1], (size_t)len + 1, fmt, args_copy);
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.cpp2133 const int write_off = (Buf.Size != 0) ? Buf.Size : 1; local in function:ImGuiTextBuffer::append
2134 const int needed_sz = write_off + len;
2135 if (write_off + len >= Buf.Capacity)
2142 memcpy(&Buf[write_off - 1], str, (size_t)len);
2143 Buf[write_off - 1 + len] = 0;
2168 const int write_off = (Buf.Size != 0) ? Buf.Size : 1; local in function:ImGuiTextBuffer::appendfv
2169 const int needed_sz = write_off + len;
2170 if (write_off + len >= Buf.Capacity)
2177 ImFormatStringV(&Buf[write_off - 1], (size_t)len + 1, fmt, args_copy);

Completed in 33 milliseconds