Lines Matching refs:WK_word

22 static WK_word*
23 WK_unpack_2bits(WK_word *input_buf,
24 WK_word *input_end,
25 WK_word *output_buf) {
27 register WK_word *input_next = input_buf;
28 register WK_word *output_next = output_buf;
29 register WK_word packing_mask = TWO_BITS_PACKING_MASK;
36 register WK_word temp = input_next[0];
57 static WK_word*
58 WK_unpack_4bits(WK_word *input_buf,
59 WK_word *input_end,
60 WK_word *output_buf) {
62 register WK_word *input_next = input_buf;
63 register WK_word *output_next = output_buf;
64 register WK_word packing_mask = FOUR_BITS_PACKING_MASK;
72 register WK_word temp = input_next[0];
88 static WK_word*
89 WK_unpack_3_tenbits(WK_word *input_buf,
90 WK_word *input_end,
91 WK_word *output_buf) {
93 register WK_word *input_next = input_buf;
94 register WK_word *output_next = output_buf;
95 register WK_word packing_mask = LOW_BITS_MASK;
102 register WK_word temp = input_next[0];
125 WKdm_decompress (WK_word* src_buf,
126 WK_word* dest_buf,
138 WK_word tempTagsArray[300]; /* tags for everything */
139 WK_word tempQPosArray[300]; /* queue positions for matches */
140 WK_word tempLowBitsArray[1200]; /* low bits for partial matches */
155 WK_word *arr =(src_buf + TAGS_AREA_OFFSET + (PAGE_SIZE_IN_WORDS / 16));
210 WK_word *next_low_bits = tempLowBitsArray;
211 WK_word *next_full_word = FULL_WORD_AREA_START(src_buf);
213 WK_word *next_output = dest_buf;
240 WK_word *dict_location = dictionary + *(next_q_pos++);
246 WK_word *dict_location = dictionary + *(next_q_pos++);
248 WK_word temp = *dict_location;
262 WK_word missed_word = *(next_full_word++);
263 WK_word *dict_location =
264 (WK_word *)