Lines Matching refs:bEnd

2121         const xxh_u8* const bEnd = input + len;  in XXH32_endian_align()  local
2122 const xxh_u8* const limit = bEnd - 15; in XXH32_endian_align()
2213 const xxh_u8* const bEnd = p + len; in XXH32_update() local
2236 if (p <= bEnd-16) { in XXH32_update()
2237 const xxh_u8* const limit = bEnd - 16; in XXH32_update()
2248 if (p < bEnd) { in XXH32_update()
2249 XXH_memcpy(state->mem32, p, (size_t)(bEnd-p)); in XXH32_update()
2250 state->memsize = (unsigned)(bEnd-p); in XXH32_update()
2534 const xxh_u8* const bEnd = input + len; in XXH64_endian_align() local
2535 const xxh_u8* const limit = bEnd - 31; in XXH64_endian_align()
2628 const xxh_u8* const bEnd = p + len; in XXH64_update() local
2648 if (p+32 <= bEnd) { in XXH64_update()
2649 const xxh_u8* const limit = bEnd - 32; in XXH64_update()
2660 if (p < bEnd) { in XXH64_update()
2661 XXH_memcpy(state->mem64, p, (size_t)(bEnd-p)); in XXH64_update()
2662 state->memsize = (unsigned)(bEnd-p); in XXH64_update()
4828 { const xxh_u8* const bEnd = input + len; in XXH3_update() local
4868 XXH_ASSERT(input < bEnd); in XXH3_update()
4871 if ((size_t)(bEnd - input) > state->nbStripesPerBlock * XXH_STRIPE_LEN) { in XXH3_update()
4872 size_t nbStripes = (size_t)(bEnd - 1 - input) / XXH_STRIPE_LEN; in XXH3_update()
4893 XXH_ASSERT(input < bEnd); /* at least some bytes left */ in XXH3_update()
4897 XXH_ASSERT(bEnd - input <= XXH_STRIPE_LEN); in XXH3_update()
4901 if (bEnd - input > XXH3_INTERNALBUFFER_SIZE) { in XXH3_update()
4902 const xxh_u8* const limit = bEnd - XXH3_INTERNALBUFFER_SIZE; in XXH3_update()
4917 XXH_ASSERT(input < bEnd); in XXH3_update()
4918 XXH_ASSERT(bEnd - input <= XXH3_INTERNALBUFFER_SIZE); in XXH3_update()
4920 XXH_memcpy(state->buffer, input, (size_t)(bEnd-input)); in XXH3_update()
4921 state->bufferedSize = (XXH32_hash_t)(bEnd-input); in XXH3_update()