Lines Matching refs:debug_assert
132 debug_assert!(ptr > start_ptr && end_ptr.sub(VECTOR_SIZE) >= start_ptr); in memchr()
168 debug_assert!(mask != 0); in memchr()
174 debug_assert!(sub(end_ptr, ptr) >= VECTOR_SIZE); in memchr()
182 debug_assert!(sub(end_ptr, ptr) < VECTOR_SIZE); in memchr()
216 debug_assert!(ptr > start_ptr && end_ptr.sub(VECTOR_SIZE) >= start_ptr); in memchr2()
251 debug_assert!(sub(end_ptr, ptr) < VECTOR_SIZE); in memchr2()
291 debug_assert!(ptr > start_ptr && end_ptr.sub(VECTOR_SIZE) >= start_ptr); in memchr3()
334 debug_assert!(sub(end_ptr, ptr) < VECTOR_SIZE); in memchr3()
368 debug_assert!(start_ptr <= ptr && ptr <= end_ptr); in memrchr()
405 debug_assert!(mask != 0); in memrchr()
416 debug_assert!(sub(ptr, start_ptr) < VECTOR_SIZE); in memrchr()
448 debug_assert!(start_ptr <= ptr && ptr <= end_ptr); in memrchr2()
483 debug_assert!(sub(ptr, start_ptr) < VECTOR_SIZE); in memrchr2()
521 debug_assert!(start_ptr <= ptr && ptr <= end_ptr); in memrchr3()
564 debug_assert!(sub(ptr, start_ptr) < VECTOR_SIZE); in memrchr3()
577 debug_assert!(sub(end_ptr, start_ptr) >= VECTOR_SIZE); in forward_search1()
578 debug_assert!(start_ptr <= ptr); in forward_search1()
579 debug_assert!(ptr <= end_ptr.sub(VECTOR_SIZE)); in forward_search1()
598 debug_assert!(sub(end_ptr, start_ptr) >= VECTOR_SIZE); in forward_search2()
599 debug_assert!(start_ptr <= ptr); in forward_search2()
600 debug_assert!(ptr <= end_ptr.sub(VECTOR_SIZE)); in forward_search2()
623 debug_assert!(sub(end_ptr, start_ptr) >= VECTOR_SIZE); in forward_search3()
624 debug_assert!(start_ptr <= ptr); in forward_search3()
625 debug_assert!(ptr <= end_ptr.sub(VECTOR_SIZE)); in forward_search3()
649 debug_assert!(sub(end_ptr, start_ptr) >= VECTOR_SIZE); in reverse_search1()
650 debug_assert!(start_ptr <= ptr); in reverse_search1()
651 debug_assert!(ptr <= end_ptr.sub(VECTOR_SIZE)); in reverse_search1()
670 debug_assert!(sub(end_ptr, start_ptr) >= VECTOR_SIZE); in reverse_search2()
671 debug_assert!(start_ptr <= ptr); in reverse_search2()
672 debug_assert!(ptr <= end_ptr.sub(VECTOR_SIZE)); in reverse_search2()
695 debug_assert!(sub(end_ptr, start_ptr) >= VECTOR_SIZE); in reverse_search3()
696 debug_assert!(start_ptr <= ptr); in reverse_search3()
697 debug_assert!(ptr <= end_ptr.sub(VECTOR_SIZE)); in reverse_search3()
733 debug_assert!(mask1 != 0 || mask2 != 0); in forward_pos2()
745 debug_assert!(mask1 != 0 || mask2 != 0 || mask3 != 0); in forward_pos3()
771 debug_assert!(mask1 != 0 || mask2 != 0); in reverse_pos2()
783 debug_assert!(mask1 != 0 || mask2 != 0 || mask3 != 0); in reverse_pos3()
791 debug_assert!(a >= b); in sub()