Home
last modified time | relevance | path

Searched refs:lua_newuserdata (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/mesa3d/src/freedreno/decode/
H A Dscript.c123 struct rnndenum *e = lua_newuserdata(L, sizeof(*e)); in pushenum()
155 struct rnndoff *rnndoff = lua_newuserdata(L, sizeof(*rnndoff)); in push_rnndoff()
453 struct rnndec *rnndec = lua_newuserdata(L, sizeof(*rnndec)); in l_rnn_init()
713 struct rnndec *rnndec = lua_newuserdata(L, sizeof(*rnndec)); in script_packet()
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/upb/lua/
Ddef.c255 int* index = lua_newuserdata(L, sizeof(int)); in lupb_OneofDef_Fields()
430 int* index = lua_newuserdata(L, sizeof(int)); in lupb_MessageDef_Fields()
470 int* index = lua_newuserdata(L, sizeof(int)); in lupb_MessageDef_Oneofs()
Dupb.c84 void* ret = lua_newuserdata(L, size); in lupb_newuserdata()
Dmsg.c616 size_t* iter = lua_newuserdata(L, sizeof(*iter)); in lupb_map_pairs()
/aosp_15_r20/external/lua/src/
H A Dlua.h411 #define lua_newuserdata(L,s) lua_newuserdatauv(L,s,1) macro
/aosp_15_r20/external/libtextclassifier/native/utils/
H A Dlua-utils.h87 new (lua_newuserdata(state_, sizeof(func))) F(func); in PushFunction()