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

/freebsd-current/contrib/lua/src/
H A Dltable.c43 ** MAXABITS is the largest integer such that MAXASIZE fits in an
46 #define MAXABITS cast_int(sizeof(int) * CHAR_BIT - 1) macro
51 ** between 2^MAXABITS and the maximum size that, measured in bytes,
54 #define MAXASIZE luaM_limitN(1u << MAXABITS, TValue)
60 #define MAXHBITS (MAXABITS - 1)
436 for (lg = 0, ttlg = 1; lg <= MAXABITS; lg++, ttlg *= 2) {
601 unsigned int nums[MAXABITS + 1];
604 for (i = 0; i <= MAXABITS; i++) nums[i] = 0; /* reset counts */

Completed in 105 milliseconds