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

/netbsd-current/external/mit/lua/dist/src/
H A Dlmem.h27 ** the runtime division MAX_SIZET/(e).
36 (sizeof(n) >= sizeof(size_t) && cast_sizet((n)) + 1 > MAX_SIZET/(e))
43 ** Computes the minimum between 'n' and 'MAX_SIZET/sizeof(t)', so that
49 ((cast_sizet(n) <= MAX_SIZET/sizeof(t)) ? (n) : \
50 cast_uint((MAX_SIZET/sizeof(t))))
H A Dllimits.h45 #define MAX_SIZET ((size_t)(~(size_t)0)) macro
48 #define MAX_SIZE (sizeof(size_t) < sizeof(lua_Integer) ? MAX_SIZET \
H A Dlauxlib.c36 #if !defined(MAX_SIZET)
38 #define MAX_SIZET ((size_t)(~(size_t)0)) macro
546 if (l_unlikely(MAX_SIZET - sz < B->n)) /* overflow in (B->n + sz)? */
H A Dlstrlib.c51 #define MAX_SIZET ((size_t)(~(size_t)0)) macro
54 (sizeof(size_t) < sizeof(int) ? MAX_SIZET : (size_t)(INT_MAX))

Completed in 146 milliseconds