Lines Matching refs:prior_bytes
11653 * prior_bytes indicates how many bytes, prior to 'buf' may belong to the current memory section
11654 * and can be safely accessed. We prior_bytes to access safely up to three bytes before 'buf'.
11662 inline result rewind_and_convert_with_errors(size_t prior_bytes, const char* buf, size_t len, char16_t* utf16_output) {
11666 size_t how_far_back = prior_bytes;
11668 // if(how_far_back >= prior_bytes) { how_far_back = prior_bytes; }
11932 * prior_bytes indicates how many bytes, prior to 'buf' may belong to the current memory section
11933 * and can be safely accessed. We prior_bytes to access safely up to three bytes before 'buf'.
11940 inline result rewind_and_convert_with_errors(size_t prior_bytes, const char* buf, size_t len, char32_t* utf32_output) {
11944 if(how_far_back > prior_bytes) { how_far_back = prior_bytes; }
12234 inline result rewind_and_convert_with_errors(size_t prior_bytes, const char* buf, size_t len, char* latin1_output) {
12238 size_t how_far_back = prior_bytes;
12240 // if(how_far_back >= prior_bytes) { how_far_back = prior_bytes; }