| 448 | } |
| 449 | |
| 450 | static uint64_t MakeRuneCacheKey(uint8_t lo, uint8_t hi, bool foldcase, |
| 451 | int next) { |
| 452 | return (uint64_t)next << 17 | |
| 453 | (uint64_t)lo << 9 | |
| 454 | (uint64_t)hi << 1 | |
| 455 | (uint64_t)foldcase; |
| 456 | } |
| 457 | |
| 458 | int Compiler::CachedRuneByteSuffix(uint8_t lo, uint8_t hi, bool foldcase, |
| 459 | int next) { |
no outgoing calls
no test coverage detected