Searched refs:MAXSIZE (Results 1 – 8 of 8) sorted by relevance
47 #define MAXSIZE (SIZE_MAX < SSIZE_MAX ? SIZE_MAX : SSIZE_MAX) macro64 size_t buf_size = size < MAXSIZE ? size + 1 : MAXSIZE; in xreadlink()89 if (buf_size <= MAXSIZE / 2) in xreadlink()91 else if (buf_size < MAXSIZE) in xreadlink()92 buf_size = MAXSIZE; in xreadlink()
38 enum { MAXSIZE = 48 }; enumerator42 unsigned char constant[MAXSIZE];44 unsigned char key[MAXSIZE];45 unsigned char res[MAXSIZE];
38 enum { MAXSIZE = 32 }; enumerator42 unsigned char constant[MAXSIZE];44 unsigned char key[MAXSIZE];45 unsigned char res[MAXSIZE];
37 enum { MAXSIZE = 24 }; enumerator42 unsigned char res[MAXSIZE];98 unsigned char data[MAXSIZE]; in main()
38 enum { MAXSIZE = 24 }; enumerator44 unsigned char res[MAXSIZE];
41 enum { MAXSIZE = 26 }; enumerator48 } vals[MAXSIZE];
53 #define MAXSIZE \ macro161 else if (l_unlikely(l + lsep < l || l + lsep > MAXSIZE / n)) in str_rep()1474 } while (digit(**fmt) && a <= ((int)MAXSIZE - 9)/10); in getnum()1739 luaL_argcheck(L, totalsize <= MAXSIZE - size, 1, in str_packsize()
1808 * subr.c (Xreadlink): Remove MAXSIZE macro. Minor reformatting.1826 * filesubr.c (MAXSIZE): New macro.1827 (xreadlink): Ensure initial buffer size does not exceed MAXSIZE.1828 Avoid cast. If readlink fails with buffer size just under MAXSIZE,1829 try again with MAXSIZE.