Lines Matching refs:buffer
558 // Note that we never use or rely on channels.Size because it is merely a buffer that we never shrink back to 0 to keep all sub-buffers ready for use.
691 // Temporary buffer
717 // FIXME-OPT: Merge the different loops, possibly remove the temporary buffer.
772 // FIXME-OPT: Merge the different loops, possibly remove the temporary buffer.
1291 // Use if your final output buffer is at a different scale than draw_data->DisplaySize,
1630 // NB: Transfer ownership of 'ttf_data' to ImFontAtlas, unless font_cfg_template->FontDataOwnedByAtlas == false. Owned TTF buffer will be deleted after Build().
1879 // Allocate packing character data and flag packed characters buffer as non-packed (x0=y0=x1=y1=0)
2778 // Note that very large horizontal line will still be affected by the issue (e.g. a one megabyte string buffer without a newline will likely crash atm)
3123 static unsigned int stb_adler32(unsigned int adler32, unsigned char *buffer, unsigned int buflen)
3132 s1 += buffer[0], s2 += s1;
3133 s1 += buffer[1], s2 += s1;
3134 s1 += buffer[2], s2 += s1;
3135 s1 += buffer[3], s2 += s1;
3136 s1 += buffer[4], s2 += s1;
3137 s1 += buffer[5], s2 += s1;
3138 s1 += buffer[6], s2 += s1;
3139 s1 += buffer[7], s2 += s1;
3141 buffer += 8;
3145 s1 += *buffer++, s2 += s1;