Home
last modified time | relevance | path

Searched refs:bvalue (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dldump.c93 DumpChar(bvalue(o),D); in DumpConstants()
Dlobject.h165 #define bvalue(o) check_exp(ttisboolean(o), val_(o).b) macro
170 #define l_isfalse(o) (ttisnil(o) || (ttisboolean(o) && bvalue(o) == 0))
Dluac.c260 printf(bvalue(o) ? "true" : "false"); in PrintConstant()
Dlvm.c266 case LUA_TBOOLEAN: return bvalue(t1) == bvalue(t2); /* true must be 1 !! */ in luaV_equalobj_()
Dltable.c112 return hashboolean(t, bvalue(key)); in mainposition()