Searched refs:seq_word_t (Results 1 – 2 of 2) sorted by relevance
37 #define WBITS_DEF 8 * sizeof (seq_word_t) /* Bits in a seq_word_t */150 static seq_word_t151 rev(seq_word_t r) in rev()154 seq_word_t t = 0; in rev()157 if (r & ((seq_word_t)1 << i)) in rev()158 t |= ((seq_word_t)1 << (WBITS - 1 - i)); in rev()261 sa->arr[i] = (seq_word_t)0; in clear_all_bits()271 return (sa->arr[bit/WBITS] & ((seq_word_t)1 << (bit % WBITS)) ? 1 : 0); in check_bit()279 sa->arr[bit/WBITS] |= ((seq_word_t)1 << (bit % WBITS)); in set_bit()313 seq_word_t in = 0, out; in shift_bits()[all …]
136 typedef unsigned long long seq_word_t; typedef147 seq_word_t arr[SSIZE]; /* Bit array of sequence history */