Lines Matching refs:entry
41 static inline uchar GetEntry(int32_t entry) { return entry & (kStartBit - 1); }
43 static inline bool IsStart(int32_t entry) { return (entry & kStartBit) != 0; }
63 // If we've found an entry less than or equal to this one, and the
80 uchar entry = GetEntry(field);
82 return (entry == value) || (entry < value && is_start);
117 // If we've found an entry less than or equal to this one, and the next one
134 uchar entry = GetEntry(field);
136 bool found = (entry == key) || (entry < key && is_start);
147 result[0] = entry + chunk_start + (value >> 2);
159 result[length] = mapped + (key - entry);