Lines Matching refs:buffer
88 #pragma GCC diagnostic ignored "-Wstack-protector" // warning: stack protector not protecting local variables: variable length buffer
112 #pragma warning (disable: 6385) // (stb_truetype) Reading invalid data from 'buffer': the readable size is '_Old_3`kernel_width' bytes, but '3' bytes may be read.
401 // Initialize before use in a new frame. We always have a command ready in the buffer.
749 // Temporary buffer
791 // FIXME-OPT: Merge the different loops, possibly remove the temporary buffer.
887 // FIXME-OPT: Merge the different loops, possibly remove the temporary buffer.
1716 // 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.
1723 // Calculate our final buffer sizes. Also fix the incorrect IdxOffset values in each command.
1771 // Ensure there's always a non-callback draw command trailing the command-buffer
1833 // Use if your final output buffer is at a different scale than draw_data->DisplaySize,
2158 // NB: Transfer ownership of 'ttf_data' to ImFontAtlas, unless font_cfg_template->FontDataOwnedByAtlas == false. Owned TTF buffer will be deleted after Build().
2430 // Allocate packing character data and flag packed characters buffer as non-packed (x0=y0=x1=y1=0)
3563 // 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)
4009 static unsigned int stb_adler32(unsigned int adler32, unsigned char *buffer, unsigned int buflen)
4018 s1 += buffer[0], s2 += s1;
4019 s1 += buffer[1], s2 += s1;
4020 s1 += buffer[2], s2 += s1;
4021 s1 += buffer[3], s2 += s1;
4022 s1 += buffer[4], s2 += s1;
4023 s1 += buffer[5], s2 += s1;
4024 s1 += buffer[6], s2 += s1;
4025 s1 += buffer[7], s2 += s1;
4027 buffer += 8;
4031 s1 += *buffer++, s2 += s1;