Searched refs:MAX_SIZET (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/lua/src/
H A Dllimits.h39 #define MAX_SIZET ((size_t)(~(size_t)0)) macro
42 #define MAX_SIZE (sizeof(size_t) < sizeof(lua_Integer) ? MAX_SIZET \
H A Dlmem.h21 ** 'e' is always constant, it avoids the runtime division MAX_SIZET/(e).
31 (((sizeof(n) >= sizeof(size_t) && cast(size_t, (n)) + 1 > MAX_SIZET/(e)) \
H A Dlstrlib.c46 #define MAX_SIZET ((size_t)(~(size_t)0)) macro
49 (sizeof(size_t) < sizeof(int) ? MAX_SIZET : (size_t)(INT_MAX))
/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlmem.h18 ** This macro avoids the runtime division MAX_SIZET/(e), as 'e' is
26 (cast(size_t, (n)+1) > MAX_SIZET/(e)) ? (luaM_toobig(L), 0) : 0), \
H A Dlstring.c160 if (l + 1 > (MAX_SIZET - sizeof(TString))/sizeof(char))
177 if (s > MAX_SIZET - sizeof(Udata))
H A Dllimits.h28 #define MAX_SIZET ((size_t)(~(size_t)0)-2) macro
H A Dllex.c54 if (luaZ_sizebuffer(b) >= MAX_SIZET/2)
H A Dlvm.c315 if (l >= (MAX_SIZET/sizeof(char)) - tl)

Completed in 87 milliseconds