Home | History | Annotate | Download | only in gold

Lines Matching refs:plen

41 // encoded integer at the location PLEN.  The common case of a single-byte
46 read_unsigned_LEB_128_x(const unsigned char* buffer, size_t* plen,
50 read_unsigned_LEB_128(const unsigned char* buffer, size_t* plen)
55 return read_unsigned_LEB_128_x(buffer, plen, byte);
57 *plen = 1;
62 // encoded integer at the location PLEN. The common case of a single-byte
67 read_signed_LEB_128_x(const unsigned char* buffer, size_t* plen,
71 read_signed_LEB_128(const unsigned char* buffer, size_t* plen)
76 return read_signed_LEB_128_x(buffer, plen, byte);
78 *plen = 1;