MCPcopy Index your code
hub / github.com/RsyncProject/rsync / read_int

Function read_int

io.c:1795–1807  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1793}
1794
1795int32 read_int(int f)
1796{
1797 char b[4];
1798 int32 num;
1799
1800 read_buf(f, b, 4);
1801 num = IVAL(b, 0);
1802#if SIZEOF_INT32 > 4
1803 if (num & (int32)0x80000000)
1804 num |= ~(int32)0xffffffff;
1805#endif
1806 return num;
1807}
1808
1809uint32 read_uint(int f)
1810{

Callers 15

receive_sumsFunction · 0.85
read_varint30Function · 0.85
read_stream_flagsFunction · 0.85
recv_filter_listFunction · 0.85
simple_recv_tokenFunction · 0.85
wait_for_receiverFunction · 0.85
read_int_boundedFunction · 0.85
read_longintFunction · 0.85
read_sum_headFunction · 0.85
read_ndxFunction · 0.85
recv_file_entryFunction · 0.85

Calls 2

IVALFunction · 0.85
read_bufFunction · 0.70

Tested by

no test coverage detected