Lines Matching +defs:t +defs:e +defs:d
59 #define l_pushtime(L,t) lua_pushinteger(L,(lua_Integer)(t)) argument
65 #define l_pushtime(L,t) lua_pushnumber(L,(lua_Number)(t)) argument
79 #define l_gmtime(t,r) gmtime_r(t,r) argument
80 #define l_localtime(t,r) localtime_r(t,r) argument
85 #define l_gmtime(t,r) ((void)(r)->tm_sec, gmtime(t)) argument
86 #define l_localtime(t,r) ((void)(r)->tm_sec, localtime(t)) argument
114 #define lua_tmpnam(b,e) { \ argument
124 #define lua_tmpnam(b,e) { e = (tmpnam(b) == NULL); } argument
253 static int getfield (lua_State *L, const char *key, int d, int delta) { in getfield()
255 int t = lua_getfield(L, -1, key); /* get field and its type */ in getfield() local
294 l_timet t = l_gettime(L, arg); in l_checktime() local
307 time_t t = luaL_opt(L, l_checktime, 2, time(NULL)); in os_date() local
347 time_t t; in os_time() local