Searched refs:seq_word_t (Results 1 – 2 of 2) sorted by relevance
35 #define WBITS_DEF 8 * sizeof (seq_word_t) /* Bits in a seq_word_t */148 static seq_word_t149 rev(seq_word_t r) in rev()152 seq_word_t t = 0; in rev()155 if (r & ((seq_word_t)1 << i)) in rev()156 t |= ((seq_word_t)1 << (WBITS - 1 - i)); in rev()259 sa->arr[i] = (seq_word_t)0; in clear_all_bits()269 return (sa->arr[bit/WBITS] & ((seq_word_t)1 << (bit % WBITS)) ? 1 : 0); in check_bit()277 sa->arr[bit/WBITS] |= ((seq_word_t)1 << (bit % WBITS)); in set_bit()311 seq_word_t in = 0, out; in shift_bits()[all …]
134 typedef unsigned long long seq_word_t; typedef145 seq_word_t arr[SSIZE]; /* Bit array of sequence history */