Searched refs:stb__in2 (Results 1 – 1 of 1) sorted by relevance
/external/mesa3d/src/imgui/ |
D | imgui_draw.cpp | 3102 #define stb__in2(x) ((i[x] << 8) + i[(x)+1]) macro 3103 #define stb__in3(x) ((i[x] << 16) + stb__in2((x)+1)) 3110 else if (*i >= 0x40) stb__match(stb__dout-(stb__in2(0) - 0x4000 + 1), i[2]+1), i += 3; in stb_decompress_token() 3114 … else if (*i >= 0x10) stb__match(stb__dout-(stb__in3(0) - 0x100000 + 1), stb__in2(3)+1), i += 5; in stb_decompress_token() 3115 …else if (*i >= 0x08) stb__lit(i+2, stb__in2(0) - 0x0800 + 1), i += 2 + (stb__in2(0) - 0x0800 + 1); in stb_decompress_token() 3116 else if (*i == 0x07) stb__lit(i+3, stb__in2(1) + 1), i += 3 + (stb__in2(1) + 1); in stb_decompress_token() 3118 else if (*i == 0x04) stb__match(stb__dout-(stb__in3(1)+1), stb__in2(4)+1), i += 6; in stb_decompress_token()
|