MCPcopy Index your code
hub / github.com/git/git / st_sub

Function st_sub

git-compat-util.h:653–659  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

651}
652
653static inline size_t st_sub(size_t a, size_t b)
654{
655 if (a < b)
656 die("size_t underflow: %"PRIuMAX" - %"PRIuMAX,
657 (uintmax_t)a, (uintmax_t)b);
658 return a - b;
659}
660
661static inline size_t st_left_shift(size_t a, unsigned shift)
662{

Callers 2

update_imageFunction · 0.85

Calls 1

dieFunction · 0.70

Tested by

no test coverage detected