Lines Matching defs:position
139 { size_t position = 0;
146 size_t const uPosition = (position + (u * step)) & tableMask;
149 position = (position + (unroll * step)) & tableMask;
151 assert(position == 0); /* Must have initialized all positions */
154 U32 position = 0;
160 tableSymbol[position] = (FSE_FUNCTION_TYPE)symbol;
161 position = (position + step) & tableMask;
162 while (position > highThreshold)
163 position = (position + step) & tableMask; /* Low proba area */
165 assert(position==0); /* Must have initialized all positions */