MCPcopy Create free account
hub / github.com/EmmyLua/EmmyLuaDebugger / lua_pushunsigned

Function lua_pushunsigned

third-party/lua-5.2.4/src/lapi.c:491–498  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

489
490
491LUA_API void lua_pushunsigned (lua_State *L, lua_Unsigned u) {
492 lua_Number n;
493 lua_lock(L);
494 n = lua_unsigned2number(u);
495 setnvalue(L->top, n);
496 api_incr_top(L);
497 lua_unlock(L);
498}
499
500
501LUA_API const char *lua_pushlstring (lua_State *L, const char *s, size_t len) {

Callers 9

b_andFunction · 0.85
b_orFunction · 0.85
b_xorFunction · 0.85
b_notFunction · 0.85
b_shiftFunction · 0.85
b_arshiftFunction · 0.85
b_rotFunction · 0.85
b_extractFunction · 0.85
b_replaceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected