Searched refs:mfb (Results 1 – 1 of 1) sorted by relevance
329 unsigned int mfb = 0x3f; /* maximum that fits in first byte */ in luaO_utf8esc() local333 mfb >>= 1; /* now there is one less bit available in first byte */ in luaO_utf8esc()334 } while (x > mfb); /* still needs continuation byte? */ in luaO_utf8esc()335 buff[UTF8BUFFSZ - n] = cast_char((~mfb << 1) | x); /* add first byte */ in luaO_utf8esc()
Completed in 3 milliseconds