Lines Matching defs:position
519 size_t position = 0;
526 size_t const uPosition = (position + (u * step)) & tableMask;
529 position = (position + (unroll * step)) & tableMask;
531 assert(position == 0);
536 U32 s, position = 0;
541 tableDecode[position].baseValue = s;
542 position = (position + step) & tableMask;
543 while (position > highThreshold) position = (position + step) & tableMask; /* lowprob area */
545 assert(position == 0); /* position must reach all cells once, otherwise normalizedCounter is incorrect */
1695 size_t prefetchPos = (size_t)(op-prefixStart); /* track position relative to prefixStart */