Home | History | Annotate | Download | only in src

Lines Matching refs:is_ascii

1665                                bool is_ascii,
1667 uint32_t hash = Hash(key, is_ascii);
1668 byte* encoding = BackupKey(key, is_ascii);
1729 uint32_t DuplicateFinder::Hash(i::Vector<const byte> key, bool is_ascii) {
1733 uint32_t hash = (length << 1) | (is_ascii ? 1 : 0) ;
1766 bool is_ascii) {
1767 uint32_t ascii_length = (bytes.length() << 1) | (is_ascii ? 1 : 0);