/external/skqp/src/utils/ |
D | SkLua.cpp | 83 template <typename T> void push_obj(lua_State* L, const T& obj) { in push_obj() 89 template <typename T> T* push_ptr(lua_State* L, T* ptr) { in push_ptr() 96 template <typename T> T* push_ref(lua_State* L, T* ref) { in push_ref() 103 template <typename T> void push_ref(lua_State* L, sk_sp<T> sp) { in push_ref() 109 template <typename T> T* get_ref(lua_State* L, int index) { in get_ref() 113 template <typename T> T* get_obj(lua_State* L, int index) { in get_obj() 117 static bool lua2bool(lua_State* L, int index) { in lua2bool() 129 SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {} in SkLua() 161 static void setfield_bool_if(lua_State* L, const char key[], bool pred) { in setfield_bool_if() 168 static void setfield_string(lua_State* L, const char key[], const char value[]) { in setfield_string() [all …]
|
/external/skia/src/utils/ |
D | SkLua.cpp | 82 template <typename T> void push_obj(lua_State* L, const T& obj) { in push_obj() 88 template <typename T> T* push_ptr(lua_State* L, T* ptr) { in push_ptr() 95 template <typename T> T* push_ref(lua_State* L, T* ref) { in push_ref() 102 template <typename T> void push_ref(lua_State* L, sk_sp<T> sp) { in push_ref() 108 template <typename T> T* get_ref(lua_State* L, int index) { in get_ref() 112 template <typename T> T* get_obj(lua_State* L, int index) { in get_obj() 116 static bool lua2bool(lua_State* L, int index) { in lua2bool() 128 SkLua::SkLua(lua_State* L) : fL(L), fWeOwnL(false) {} in SkLua() 160 static void setfield_bool_if(lua_State* L, const char key[], bool pred) { in setfield_bool_if() 167 static void setfield_string(lua_State* L, const char key[], const char value[]) { in setfield_string() [all …]
|
/external/lua/src/ |
D | lmathlib.c | 39 static int math_abs (lua_State *L) { in math_abs() 50 static int math_sin (lua_State *L) { in math_sin() 55 static int math_cos (lua_State *L) { in math_cos() 60 static int math_tan (lua_State *L) { in math_tan() 65 static int math_asin (lua_State *L) { in math_asin() 70 static int math_acos (lua_State *L) { in math_acos() 75 static int math_atan (lua_State *L) { in math_atan() 83 static int math_toint (lua_State *L) { in math_toint() 96 static void pushnumint (lua_State *L, lua_Number d) { in pushnumint() 105 static int math_floor (lua_State *L) { in math_floor() [all …]
|
D | lbaselib.c | 24 static int luaB_print (lua_State *L) { in luaB_print() 69 static int luaB_tonumber (lua_State *L) { in luaB_tonumber() 102 static int luaB_error (lua_State *L) { in luaB_error() 114 static int luaB_getmetatable (lua_State *L) { in luaB_getmetatable() 125 static int luaB_setmetatable (lua_State *L) { in luaB_setmetatable() 138 static int luaB_rawequal (lua_State *L) { in luaB_rawequal() 146 static int luaB_rawlen (lua_State *L) { in luaB_rawlen() 155 static int luaB_rawget (lua_State *L) { in luaB_rawget() 163 static int luaB_rawset (lua_State *L) { in luaB_rawset() 173 static int luaB_collectgarbage (lua_State *L) { in luaB_collectgarbage() [all …]
|
D | lbitlib.c | 22 #define pushunsigned(L,n) lua_pushinteger(L, (lua_Integer)(n)) argument 23 #define checkunsigned(L,i) ((lua_Unsigned)luaL_checkinteger(L,i)) argument 49 static lua_Unsigned andaux (lua_State *L) { in andaux() 58 static int b_and (lua_State *L) { in b_and() 65 static int b_test (lua_State *L) { in b_test() 72 static int b_or (lua_State *L) { in b_or() 82 static int b_xor (lua_State *L) { in b_xor() 92 static int b_not (lua_State *L) { in b_not() 99 static int b_shift (lua_State *L, lua_Unsigned r, lua_Integer i) { in b_shift() 116 static int b_lshift (lua_State *L) { in b_lshift() [all …]
|
D | ldblib.c | 35 static void checkstack (lua_State *L, lua_State *L1, int n) { in checkstack() 41 static int db_getregistry (lua_State *L) { in db_getregistry() 47 static int db_getmetatable (lua_State *L) { in db_getmetatable() 56 static int db_setmetatable (lua_State *L) { in db_setmetatable() 66 static int db_getuservalue (lua_State *L) { in db_getuservalue() 75 static int db_setuservalue (lua_State *L) { in db_setuservalue() 90 static lua_State *getthread (lua_State *L, int *arg) { in getthread() 107 static void settabss (lua_State *L, const char *k, const char *v) { in settabss() 112 static void settabsi (lua_State *L, const char *k, int v) { in settabsi() 117 static void settabsb (lua_State *L, const char *k, int v) { in settabsb() [all …]
|
D | lapi.c | 60 static TValue *index2addr (lua_State *L, int idx) { in index2addr() 91 static void growstack (lua_State *L, void *ud) { in growstack() 97 LUA_API int lua_checkstack (lua_State *L, int n) { in lua_checkstack() 134 LUA_API lua_CFunction lua_atpanic (lua_State *L, lua_CFunction panicf) { in lua_atpanic() 144 LUA_API const lua_Number *lua_version (lua_State *L) { in lua_version() 160 LUA_API int lua_absindex (lua_State *L, int idx) { in lua_absindex() 167 LUA_API int lua_gettop (lua_State *L) { in lua_gettop() 172 LUA_API void lua_settop (lua_State *L, int idx) { in lua_settop() 193 static void reverse (lua_State *L, StkId from, StkId to) { in reverse() 207 LUA_API void lua_rotate (lua_State *L, int idx, int n) { in lua_rotate() [all …]
|
D | liolib.c | 59 #define l_popen(L,c,m) (fflush(NULL), popen(c,m)) argument 60 #define l_pclose(L,file) (pclose(file)) argument 64 #define l_popen(L,c,m) (_popen(c,m)) argument 65 #define l_pclose(L,file) (_pclose(file)) argument 70 #define l_popen(L,c,m) \ argument 74 #define l_pclose(L,file) ((void)L, (void)file, -1) argument 145 #define tolstream(L) ((LStream *)luaL_checkudata(L, 1, LUA_FILEHANDLE)) argument 150 static int io_type (lua_State *L) { in io_type() 164 static int f_tostring (lua_State *L) { in f_tostring() 174 static FILE *tofile (lua_State *L) { in tofile() [all …]
|
D | lcorolib.c | 21 static lua_State *getco (lua_State *L) { in getco() 28 static int auxresume (lua_State *L, lua_State *co, int narg) { in auxresume() 57 static int luaB_coresume (lua_State *L) { in luaB_coresume() 74 static int luaB_auxwrap (lua_State *L) { in luaB_auxwrap() 89 static int luaB_cocreate (lua_State *L) { in luaB_cocreate() 99 static int luaB_cowrap (lua_State *L) { in luaB_cowrap() 106 static int luaB_yield (lua_State *L) { in luaB_yield() 111 static int luaB_costatus (lua_State *L) { in luaB_costatus() 138 static int luaB_yieldable (lua_State *L) { in luaB_yieldable() 144 static int luaB_corunning (lua_State *L) { in luaB_corunning() [all …]
|
D | loadlib.c | 67 #define setprogdir(L) ((void)0) argument 126 static void *lsys_load (lua_State *L, const char *path, int seeglb) { in lsys_load() 133 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) { in lsys_sym() 168 static void setprogdir (lua_State *L) { in setprogdir() 185 static void pusherror (lua_State *L) { in pusherror() 200 static void *lsys_load (lua_State *L, const char *path, int seeglb) { in lsys_load() 208 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) { in lsys_sym() 236 static void *lsys_load (lua_State *L, const char *path, int seeglb) { in lsys_load() 243 static lua_CFunction lsys_sym (lua_State *L, void *lib, const char *sym) { in lsys_sym() 278 static int noenv (lua_State *L) { in noenv() [all …]
|
D | lauxlib.c | 46 static int findfield (lua_State *L, int objidx, int level) { in findfield() 73 static int pushglobalfuncname (lua_State *L, lua_Debug *ar) { in pushglobalfuncname() 94 static void pushfuncname (lua_State *L, lua_Debug *ar) { in pushfuncname() 110 static int lastlevel (lua_State *L) { in lastlevel() 125 LUALIB_API void luaL_traceback (lua_State *L, lua_State *L1, in luaL_traceback() 164 LUALIB_API int luaL_argerror (lua_State *L, int arg, const char *extramsg) { in luaL_argerror() 182 static int typeerror (lua_State *L, int arg, const char *tname) { in typeerror() 196 static void tag_error (lua_State *L, int arg, int tag) { in tag_error() 205 LUALIB_API void luaL_where (lua_State *L, int level) { in luaL_where() 223 LUALIB_API int luaL_error (lua_State *L, const char *fmt, ...) { in luaL_error() [all …]
|
D | ldo.c | 58 #define LUAI_THROW(L,c) throw(c) argument 59 #define LUAI_TRY(L,c,a) \ argument 66 #define LUAI_THROW(L,c) _longjmp((c)->b, 1) argument 67 #define LUAI_TRY(L,c,a) if (_setjmp((c)->b) == 0) { a } argument 73 #define LUAI_THROW(L,c) longjmp((c)->b, 1) argument 74 #define LUAI_TRY(L,c,a) if (setjmp((c)->b) == 0) { a } argument 91 static void seterrorobj (lua_State *L, int errcode, StkId oldtop) { in seterrorobj() 110 l_noret luaD_throw (lua_State *L, int errcode) { in luaD_throw() 136 int luaD_rawrunprotected (lua_State *L, Pfunc f, void *ud) { in luaD_rawrunprotected() 158 static void correctstack (lua_State *L, TValue *oldstack) { in correctstack() [all …]
|
D | lua.c | 84 #define lua_readline(L,b,p) ((void)L, ((b)=readline(p)) != NULL) argument 85 #define lua_saveline(L,line) ((void)L, add_history(line)) argument 86 #define lua_freeline(L,b) ((void)L, free(b)) argument 90 #define lua_readline(L,b,p) \ argument 93 #define lua_saveline(L,line) { (void)L; (void)line; } argument 94 #define lua_freeline(L,b) { (void)L; (void)b; } argument 111 static void lstop (lua_State *L, lua_Debug *ar) { in lstop() 166 static int report (lua_State *L, int status) { in report() 179 static int msghandler (lua_State *L) { in msghandler() 198 static int docall (lua_State *L, int narg, int nres) { in docall() [all …]
|
D | lmem.h | 30 #define luaM_reallocv(L,b,on,n,e) \ argument 38 #define luaM_reallocvchar(L,b,on,n) \ argument 41 #define luaM_freemem(L, b, s) luaM_realloc_(L, (b), (s), 0) argument 42 #define luaM_free(L, b) luaM_realloc_(L, (b), sizeof(*(b)), 0) argument 43 #define luaM_freearray(L, b, n) luaM_realloc_(L, (b), (n)*sizeof(*(b)), 0) argument 45 #define luaM_malloc(L,s) luaM_realloc_(L, NULL, 0, (s)) argument 46 #define luaM_new(L,t) cast(t *, luaM_malloc(L, sizeof(t))) argument 47 #define luaM_newvector(L,n,t) \ argument 50 #define luaM_newobject(L,tag,s) luaM_realloc_(L, NULL, tag, (s)) argument 52 #define luaM_growvector(L,v,nelems,size,t,limit,e) \ argument [all …]
|
D | lstate.c | 70 #define fromstate(L) (cast(LX *, cast(lu_byte *, (L)) - offsetof(LX, l))) argument 81 static unsigned int makeseed (lua_State *L) { in makeseed() 108 CallInfo *luaE_extendCI (lua_State *L) { in luaE_extendCI() 122 void luaE_freeCI (lua_State *L) { in luaE_freeCI() 137 void luaE_shrinkCI (lua_State *L) { in luaE_shrinkCI() 151 static void stack_init (lua_State *L1, lua_State *L) { in stack_init() 171 static void freestack (lua_State *L) { in freestack() 184 static void init_registry (lua_State *L, global_State *g) { in init_registry() 203 static void f_luaopen (lua_State *L, void *ud) { in f_luaopen() 221 static void preinit_thread (lua_State *L, global_State *g) { in preinit_thread() [all …]
|
D | loslib.c | 67 #define l_pushtime(L,t) lua_pushinteger(L,(lua_Integer)(t)) argument 69 static time_t l_checktime (lua_State *L, int arg) { in l_checktime() 141 static int os_execute (lua_State *L) { in os_execute() 153 static int os_remove (lua_State *L) { in os_remove() 159 static int os_rename (lua_State *L) { in os_rename() 166 static int os_tmpname (lua_State *L) { in os_tmpname() 177 static int os_getenv (lua_State *L) { in os_getenv() 183 static int os_clock (lua_State *L) { in os_clock() 197 static void setfield (lua_State *L, const char *key, int value) { in setfield() 202 static void setboolfield (lua_State *L, const char *key, int value) { in setboolfield() [all …]
|
D | ltablib.c | 33 #define aux_getn(L,n,w) (checktab(L, n, (w) | TAB_L), luaL_len(L, n)) argument 36 static int checkfield (lua_State *L, const char *key, int n) { in checkfield() 46 static void checktab (lua_State *L, int arg, int what) { in checktab() 62 static int maxn (lua_State *L) { in maxn() 79 static int tinsert (lua_State *L) { in tinsert() 106 static int tremove (lua_State *L) { in tremove() 128 static int tmove (lua_State *L) { in tmove() 160 static void addfield (lua_State *L, luaL_Buffer *b, lua_Integer i) { in addfield() 169 static int tconcat (lua_State *L) { in tconcat() 194 static int pack (lua_State *L) { in pack() [all …]
|
D | llimits.h | 214 #define lua_lock(L) ((void) 0) argument 215 #define lua_unlock(L) ((void) 0) argument 223 #define luai_threadyield(L) {lua_unlock(L); lua_lock(L);} argument 233 #define luai_userstateopen(L) ((void)L) argument 237 #define luai_userstateclose(L) ((void)L) argument 241 #define luai_userstatethread(L,L1) ((void)L) argument 245 #define luai_userstatefree(L,L1) ((void)L) argument 249 #define luai_userstateresume(L,n) ((void)L) argument 253 #define luai_userstateyield(L,n) ((void)L) argument 264 #define luai_numidiv(L,a,b) ((void)L, l_floor(luai_numdiv(L,a,b))) argument [all …]
|
D | lauxlib.h | 40 #define luaL_checkversion(L) \ argument 86 #define luaL_loadfile(L,f) luaL_loadfilex(L,f,NULL) argument 116 #define luaL_newlibtable(L,l) \ argument 119 #define luaL_newlib(L,l) \ argument 122 #define luaL_argcheck(L, cond,arg,extramsg) \ argument 124 #define luaL_checkstring(L,n) (luaL_checklstring(L, (n), NULL)) argument 125 #define luaL_optstring(L,n,d) (luaL_optlstring(L, (n), (d), NULL)) argument 127 #define luaL_typename(L,i) lua_typename(L, lua_type(L,(i))) argument 129 #define luaL_dofile(L, fn) \ argument 132 #define luaL_dostring(L, s) \ argument [all …]
|
/external/v8/src/codegen/mips64/ |
D | assembler-mips64.h | 223 inline bool is_near_pre_r6(Label* L) { in is_near_pre_r6() 227 inline bool is_near_r6(Label* L) { in is_near_r6() 238 inline int32_t branch_offset(Label* L) { in branch_offset() 241 inline int32_t branch_offset21(Label* L) { in branch_offset21() 244 inline int32_t branch_offset26(Label* L) { in branch_offset26() 247 inline int32_t shifted_branch_offset(Label* L) { in shifted_branch_offset() 250 inline int32_t shifted_branch_offset21(Label* L) { in shifted_branch_offset21() 253 inline int32_t shifted_branch_offset26(Label* L) { in shifted_branch_offset26() 387 inline void b(Label* L) { b(shifted_branch_offset(L)); } in b() 389 inline void bal(Label* L) { bal(shifted_branch_offset(L)); } in bal() [all …]
|
/external/v8/src/codegen/mips/ |
D | assembler-mips.h | 225 inline bool is_near_pre_r6(Label* L) { in is_near_pre_r6() 229 inline bool is_near_r6(Label* L) { in is_near_r6() 240 inline int32_t branch_offset(Label* L) { in branch_offset() 243 inline int32_t branch_offset21(Label* L) { in branch_offset21() 246 inline int32_t branch_offset26(Label* L) { in branch_offset26() 249 inline int32_t shifted_branch_offset(Label* L) { in shifted_branch_offset() 252 inline int32_t shifted_branch_offset21(Label* L) { in shifted_branch_offset21() 255 inline int32_t shifted_branch_offset26(Label* L) { in shifted_branch_offset26() 390 inline void b(Label* L) { b(shifted_branch_offset(L)); } in b() 392 inline void bal(Label* L) { bal(shifted_branch_offset(L)); } in bal() [all …]
|
/external/clang/test/CodeGenCXX/ |
D | lambda-expressions-nested-linkage.cpp | 8 auto L = [](int a) { in foo() local 18 struct L { struct 19 int t = ([](int a) { return [](int b) { return b; };})(2)(3); in __anonac57fa500302() 26 struct L { struct 27 T t2 = ([](int a) { return [](int b) { return b; };})(T{})(T{}); in __anonac57fa500502() 45 auto L = [](int a) { in foo() local
|
/external/mesa3d/src/freedreno/decode/ |
D | script.c | 43 static lua_State *L; variable 100 static int l_meta_rnn_enum_tostring(lua_State *L) in l_meta_rnn_enum_tostring() 116 static int l_meta_rnn_enum_tonumber(lua_State *L) in l_meta_rnn_enum_tonumber() 129 static void pushenum(struct lua_State *L, int val, struct rnnenum *info) in pushenum() 159 static void push_rnndoff(lua_State *L, struct rnn *rnn, in push_rnndoff() 173 static int pushdecval(struct lua_State *L, struct rnn *rnn, in pushdecval() 202 static int l_rnn_etype(lua_State *L, struct rnn *rnn, in l_rnn_etype() 234 static int l_rnn_struct_meta_index(lua_State *L) in l_rnn_struct_meta_index() 257 static int l_rnn_etype_struct(lua_State *L, struct rnn *rnn, in l_rnn_etype_struct() 275 static int l_rnn_array_meta_index(lua_State *L) in l_rnn_array_meta_index() [all …]
|
/external/flac/libFLAC/ |
D | window.c | 46 void FLAC__window_bartlett(FLAC__real *window, const FLAC__int32 L) in FLAC__window_bartlett() 65 void FLAC__window_bartlett_hann(FLAC__real *window, const FLAC__int32 L) in FLAC__window_bartlett_hann() 74 void FLAC__window_blackman(FLAC__real *window, const FLAC__int32 L) in FLAC__window_blackman() 84 void FLAC__window_blackman_harris_4term_92db_sidelobe(FLAC__real *window, const FLAC__int32 L) in FLAC__window_blackman_harris_4term_92db_sidelobe() 93 void FLAC__window_connes(FLAC__real *window, const FLAC__int32 L) in FLAC__window_connes() 106 void FLAC__window_flattop(FLAC__real *window, const FLAC__int32 L) in FLAC__window_flattop() 115 void FLAC__window_gauss(FLAC__real *window, const FLAC__int32 L, const FLAC__real stddev) in FLAC__window_gauss() 127 void FLAC__window_hamming(FLAC__real *window, const FLAC__int32 L) in FLAC__window_hamming() 136 void FLAC__window_hann(FLAC__real *window, const FLAC__int32 L) in FLAC__window_hann() 145 void FLAC__window_kaiser_bessel(FLAC__real *window, const FLAC__int32 L) in FLAC__window_kaiser_bessel() [all …]
|
/external/clang/test/SemaCXX/ |
D | cxx1y-generic-lambdas-variadics.cpp | 17 auto L = [](auto ... as) { }; in test() local 21 auto L = [](auto a) { }; in test() local 25 auto L = [](auto a, auto b) { }; in test() local 29 auto L = [](auto a, auto b) { }; in test() local 33 auto L = [](auto a, auto b, auto ... cs) { }; in test() local 39 auto L = [](auto ... As) { in test() local 44 auto L = [](auto A, auto B, auto ... As) { in test() local 51 auto L = [](auto ... As) { in test() local 64 auto L = [](auto A, auto ... As) { in test() local
|