Lines Matching refs:bEnd
1356 const xxh_u8* bEnd = input + len; in XXH32_endian_align() local
1362 bEnd=input=(const xxh_u8*)(size_t)16; in XXH32_endian_align()
1367 const xxh_u8* const limit = bEnd - 15; in XXH32_endian_align()
1456 const xxh_u8* const bEnd = p + len; in XXH32_update() local
1479 if (p <= bEnd-16) { in XXH32_update()
1480 const xxh_u8* const limit = bEnd - 16; in XXH32_update()
1499 if (p < bEnd) { in XXH32_update()
1500 XXH_memcpy(state->mem32, p, (size_t)(bEnd-p)); in XXH32_update()
1501 state->memsize = (unsigned)(bEnd-p); in XXH32_update()
1894 const xxh_u8* bEnd = input + len; in XXH64_endian_align() local
1900 bEnd=input=(const xxh_u8*)(size_t)32; in XXH64_endian_align()
1905 const xxh_u8* const limit = bEnd - 32; in XXH64_endian_align()
1996 const xxh_u8* const bEnd = p + len; in XXH64_update() local
2016 if (p+32 <= bEnd) { in XXH64_update()
2017 const xxh_u8* const limit = bEnd - 32; in XXH64_update()
2036 if (p < bEnd) { in XXH64_update()
2037 XXH_memcpy(state->mem64, p, (size_t)(bEnd-p)); in XXH64_update()
2038 state->memsize = (unsigned)(bEnd-p); in XXH64_update()
4068 { const xxh_u8* const bEnd = input + len; in XXH3_update() local
4098 XXH_ASSERT(input < bEnd); in XXH3_update()
4101 if (input+XXH3_INTERNALBUFFER_SIZE < bEnd) { in XXH3_update()
4102 const xxh_u8* const limit = bEnd - XXH3_INTERNALBUFFER_SIZE; in XXH3_update()
4114 XXH_ASSERT(input < bEnd); in XXH3_update()
4117 XXH_memcpy(state->buffer, input, (size_t)(bEnd-input)); in XXH3_update()
4118 state->bufferedSize = (XXH32_hash_t)(bEnd-input); in XXH3_update()