Lines Matching refs:debug_assert

42     debug_assert!(ptr > start_ptr && end_ptr.sub(VECTOR_SIZE) >= start_ptr);  in memchr()
78 debug_assert!(mask != 0); in memchr()
84 debug_assert!(sub(end_ptr, ptr) >= VECTOR_SIZE); in memchr()
92 debug_assert!(sub(end_ptr, ptr) < VECTOR_SIZE); in memchr()
126 debug_assert!(ptr > start_ptr && end_ptr.sub(VECTOR_SIZE) >= start_ptr); in memchr2()
161 debug_assert!(sub(end_ptr, ptr) < VECTOR_SIZE); in memchr2()
201 debug_assert!(ptr > start_ptr && end_ptr.sub(VECTOR_SIZE) >= start_ptr); in memchr3()
244 debug_assert!(sub(end_ptr, ptr) < VECTOR_SIZE); in memchr3()
278 debug_assert!(start_ptr <= ptr && ptr <= end_ptr); in memrchr()
315 debug_assert!(mask != 0); in memrchr()
326 debug_assert!(sub(ptr, start_ptr) < VECTOR_SIZE); in memrchr()
358 debug_assert!(start_ptr <= ptr && ptr <= end_ptr); in memrchr2()
393 debug_assert!(sub(ptr, start_ptr) < VECTOR_SIZE); in memrchr2()
431 debug_assert!(start_ptr <= ptr && ptr <= end_ptr); in memrchr3()
474 debug_assert!(sub(ptr, start_ptr) < VECTOR_SIZE); in memrchr3()
487 debug_assert!(sub(end_ptr, start_ptr) >= VECTOR_SIZE); in forward_search1()
488 debug_assert!(start_ptr <= ptr); in forward_search1()
489 debug_assert!(ptr <= end_ptr.sub(VECTOR_SIZE)); in forward_search1()
508 debug_assert!(sub(end_ptr, start_ptr) >= VECTOR_SIZE); in forward_search2()
509 debug_assert!(start_ptr <= ptr); in forward_search2()
510 debug_assert!(ptr <= end_ptr.sub(VECTOR_SIZE)); in forward_search2()
533 debug_assert!(sub(end_ptr, start_ptr) >= VECTOR_SIZE); in forward_search3()
534 debug_assert!(start_ptr <= ptr); in forward_search3()
535 debug_assert!(ptr <= end_ptr.sub(VECTOR_SIZE)); in forward_search3()
559 debug_assert!(sub(end_ptr, start_ptr) >= VECTOR_SIZE); in reverse_search1()
560 debug_assert!(start_ptr <= ptr); in reverse_search1()
561 debug_assert!(ptr <= end_ptr.sub(VECTOR_SIZE)); in reverse_search1()
580 debug_assert!(sub(end_ptr, start_ptr) >= VECTOR_SIZE); in reverse_search2()
581 debug_assert!(start_ptr <= ptr); in reverse_search2()
582 debug_assert!(ptr <= end_ptr.sub(VECTOR_SIZE)); in reverse_search2()
605 debug_assert!(sub(end_ptr, start_ptr) >= VECTOR_SIZE); in reverse_search3()
606 debug_assert!(start_ptr <= ptr); in reverse_search3()
607 debug_assert!(ptr <= end_ptr.sub(VECTOR_SIZE)); in reverse_search3()
643 debug_assert!(mask1 != 0 || mask2 != 0); in forward_pos2()
655 debug_assert!(mask1 != 0 || mask2 != 0 || mask3 != 0); in forward_pos3()
681 debug_assert!(mask1 != 0 || mask2 != 0); in reverse_pos2()
693 debug_assert!(mask1 != 0 || mask2 != 0 || mask3 != 0); in reverse_pos3()
701 debug_assert!(a >= b); in sub()