Lines Matching defs:shift
751 inflater->shift = 0;
849 * including partial decoding (in this case, number of shift to make
854 uint32_t initial, size_t shift, const uint8_t *in,
878 for (; in != last; ++in, shift += 7) {
881 if (shift >= 32) {
882 DEBUGF("inflate: shift exponent overflow\n");
886 if ((UINT32_MAX >> shift) < add) {
887 DEBUGF("inflate: integer overflow on shift\n");
891 add <<= shift;
905 *shift_ptr = shift;
1654 rv = decode_length(&out, &inflater->shift, rfin, (uint32_t)inflater->left,
1655 inflater->shift, in, last, prefix);
1936 inflater->shift = 0;
2008 inflater->shift = 0;
2092 inflater->shift = 0;
2301 uint32_t initial, size_t shift, uint8_t *in,
2303 return decode_length(res, shift_ptr, fin, initial, shift, in, last, prefix);