MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / stb__lit

Function stb__lit

KBotExt/imgui/imgui_draw.cpp:4029–4036  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4027}
4028
4029static void stb__lit(const unsigned char* data, unsigned int length)
4030{
4031 IM_ASSERT(stb__dout + length <= stb__barrier_out_e);
4032 if (stb__dout + length > stb__barrier_out_e) { stb__dout += length; return; }
4033 if (data < stb__barrier_in_b) { stb__dout = stb__barrier_out_e + 1; return; }
4034 memcpy(stb__dout, data, length);
4035 stb__dout += length;
4036}
4037
4038#define stb__in2(x) ((i[x] << 8) + i[(x)+1])
4039#define stb__in3(x) ((i[x] << 16) + stb__in2((x)+1))

Callers 1

stb_decompress_tokenFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected