Lines Matching refs:bEnd

2090         const xxh_u8* const bEnd = input + len;  in XXH32_endian_align()  local
2091 const xxh_u8* const limit = bEnd - 15; in XXH32_endian_align()
2182 const xxh_u8* const bEnd = p + len; in XXH32_update() local
2205 if (p <= bEnd-16) { in XXH32_update()
2206 const xxh_u8* const limit = bEnd - 16; in XXH32_update()
2217 if (p < bEnd) { in XXH32_update()
2218 XXH_memcpy(state->mem32, p, (size_t)(bEnd-p)); in XXH32_update()
2219 state->memsize = (unsigned)(bEnd-p); in XXH32_update()
2503 const xxh_u8* const bEnd = input + len; in XXH64_endian_align() local
2504 const xxh_u8* const limit = bEnd - 31; in XXH64_endian_align()
2597 const xxh_u8* const bEnd = p + len; in XXH64_update() local
2617 if (p+32 <= bEnd) { in XXH64_update()
2618 const xxh_u8* const limit = bEnd - 32; in XXH64_update()
2629 if (p < bEnd) { in XXH64_update()
2630 XXH_memcpy(state->mem64, p, (size_t)(bEnd-p)); in XXH64_update()
2631 state->memsize = (unsigned)(bEnd-p); in XXH64_update()
4797 { const xxh_u8* const bEnd = input + len; in XXH3_update() local
4837 XXH_ASSERT(input < bEnd); in XXH3_update()
4840 if ((size_t)(bEnd - input) > state->nbStripesPerBlock * XXH_STRIPE_LEN) { in XXH3_update()
4841 size_t nbStripes = (size_t)(bEnd - 1 - input) / XXH_STRIPE_LEN; in XXH3_update()
4862 XXH_ASSERT(input < bEnd); /* at least some bytes left */ in XXH3_update()
4866 XXH_ASSERT(bEnd - input <= XXH_STRIPE_LEN); in XXH3_update()
4870 if (bEnd - input > XXH3_INTERNALBUFFER_SIZE) { in XXH3_update()
4871 const xxh_u8* const limit = bEnd - XXH3_INTERNALBUFFER_SIZE; in XXH3_update()
4886 XXH_ASSERT(input < bEnd); in XXH3_update()
4887 XXH_ASSERT(bEnd - input <= XXH3_INTERNALBUFFER_SIZE); in XXH3_update()
4889 XXH_memcpy(state->buffer, input, (size_t)(bEnd-input)); in XXH3_update()
4890 state->bufferedSize = (XXH32_hash_t)(bEnd-input); in XXH3_update()