Lines Matching defs:value
57 uint16_t value = chr & (kChunkBits - 1);
65 if ((current_value <= value) &&
67 GetEntry(TableGet<kEntryDist>(table, mid + 1)) > value)) {
70 } else if (current_value < value) {
72 } else if (current_value > value) {
73 // If we've just checked the bottom-most value and it's not
82 return (entry == value) || (entry < value && is_start);
127 // If we've just checked the bottom-most value and it's not
138 int32_t value = table[2 * low + 1];
139 if (value == 0) {
142 } else if ((value & 3) == 0) {
145 result[0] = chr + (value >> 2);
147 result[0] = entry + chunk_start + (value >> 2);
150 } else if ((value & 3) == 1) {
153 const MultiCharacterSpecialCase<kW>& mapping = multi_chars[value >> 2];
170 switch (value >> 2) {
192 // This method decodes an UTF-8 value according to RFC 3629 and