Lines Matching refs:stb__dout

3083 static unsigned char *stb__dout;  variable
3087 IM_ASSERT(stb__dout + length <= stb__barrier_out_e); in stb__match()
3088 if (stb__dout + length > stb__barrier_out_e) { stb__dout += length; return; } in stb__match()
3089 if (data < stb__barrier_out_b) { stb__dout = stb__barrier_out_e+1; return; } in stb__match()
3090 while (length--) *stb__dout++ = *data++; in stb__match()
3095 IM_ASSERT(stb__dout + length <= stb__barrier_out_e); in stb__lit()
3096 if (stb__dout + length > stb__barrier_out_e) { stb__dout += length; return; } in stb__lit()
3097 if (data < stb__barrier_in_b) { stb__dout = stb__barrier_out_e+1; return; } in stb__lit()
3098 memcpy(stb__dout, data, length); in stb__lit()
3099 stb__dout += length; in stb__lit()
3109 if (*i >= 0x80) stb__match(stb__dout-i[1]-1, i[0] - 0x80 + 1), i += 2; in stb_decompress_token()
3110 else if (*i >= 0x40) stb__match(stb__dout-(stb__in2(0) - 0x4000 + 1), i[2]+1), i += 3; in stb_decompress_token()
3113 if (*i >= 0x18) stb__match(stb__dout-(stb__in3(0) - 0x180000 + 1), i[3]+1), i += 4; 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()
3117 else if (*i == 0x06) stb__match(stb__dout-(stb__in3(1)+1), i[4]+1), i += 5; 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()
3165 stb__dout = output; in stb_decompress()
3171 IM_ASSERT(stb__dout == output + olen); in stb_decompress()
3172 if (stb__dout != output + olen) return 0; in stb_decompress()
3181 IM_ASSERT(stb__dout <= output + olen); in stb_decompress()
3182 if (stb__dout > output + olen) in stb_decompress()