MCPcopy Create free account

hub / github.com/PlutoLang/Pluto / functions

Functions1,782 in github.com/PlutoLang/Pluto

↓ 1 callersFunctiondumpCode
src/ldump.cpp:173
↓ 1 callersFunctiondumpConstants
src/ldump.cpp:183
↓ 1 callersFunctiondumpDebug
src/ldump.cpp:229
↓ 1 callersFunctiondumpHeader
src/ldump.cpp:275
↓ 1 callersFunctiondumpInteger
** Signed integers are coded to keep small values small. (Coding -1 as ** 0xfff...fff would use too many bytes to save a quite common value.) ** A non
src/ldump.cpp:129
↓ 1 callersFunctiondumpNumber
src/ldump.cpp:118
↓ 1 callersFunctiondumpProtos
src/ldump.cpp:209
↓ 1 callersFunctiondumpSize
src/ldump.cpp:107
↓ 1 callersFunctiondumpUpvalues
src/ldump.cpp:218
↓ 1 callersFunctionenablekeyword
src/lparser.cpp:5920
↓ 1 callersFunctionencode
src/ljson.cpp:140
↓ 1 callersFunctionend_capture
src/lstrlib.cpp:604
↓ 1 callersFunctionenumexp
src/lparser.cpp:3374
↓ 1 callersFunctionenumstat
src/lparser.cpp:4888
↓ 1 callersFunctionequalkey
** Check whether key 'k1' is equal to the key in node 'n2'. This ** equality is raw, so there are no metamethods. Floats with integer ** values have b
src/ltable.cpp:252
↓ 1 callersFunctionerrorlimit
src/lparser.cpp:313
↓ 1 callersFunctionexplist_nonlinear
src/lparser.cpp:2877
↓ 1 callersFunctionexprstat
src/lparser.cpp:5811
↓ 1 callersFunctionf_close
src/liolib.cpp:246
↓ 1 callersFunctionf_newext
src/lstring.cpp:312
↓ 1 callersFunctionfile_time_to_unix_time
src/liolib.cpp:1228
↓ 1 callersFunctionfilterpc
src/ldebug.cpp:451
↓ 1 callersFunctionfinaltarget
** return the final target of a jump (skipping jumps to jumps) */
src/lcode.cpp:2126
↓ 1 callersFunctionfindfield
** Search for 'objidx' in table at index -1. ('objidx' must be an ** absolute index.) Return 1 + string at top if it found a good name. */
src/lauxlib.cpp:66
↓ 1 callersFunctionfindindex
** returns the index of a 'key' for table traversals. First goes all ** elements in the array part, then elements in the hash part. The ** beginning o
src/ltable.cpp:343
↓ 1 callersFunctionfindlast
** find last 'next' field in list 'p' list (to add elements in its end) */
src/lgc.cpp:1009
↓ 1 callersFunctionfindloader
src/loadlib.cpp:650
↓ 1 callersFunctionfindpcall
** Try to find a suspended protected call (a "recover point") for the ** given thread. */
src/ldo.cpp:892
↓ 1 callersFunctionfindsetreg
** Try to find last instruction before 'lastpc' that modified register 'reg'. */
src/ldebug.cpp:461
↓ 1 callersFunctionfindvararg
src/ldebug.cpp:186
↓ 1 callersFunctionfinishCcall
** Completes the execution of a C function interrupted by an yield. ** The interruption must have happened while the function was either ** closing it
src/ldo.cpp:845
↓ 1 callersFunctionfinishpcallk
** Finish the job of 'lua_pcallk' after it was interrupted by an yield. ** (The caller, 'finishCcall', does the final call to 'adjustresults'.) ** The
src/ldo.cpp:812
↓ 1 callersFunctionfloatforloop
** Execute a step of a float numerical for loop, returning ** true iff the loop must continue. (The integer case is ** written online with opcode OP_F
src/lvm.cpp:271
↓ 1 callersFunctionforlimit
** Try to convert a 'for' limit to an integer, preserving the semantics ** of the loop. Return true if the loop must not run; otherwise, '*p' ** gets
src/lvm.cpp:179
↓ 1 callersFunctionforlist
src/lparser.cpp:5105
↓ 1 callersFunctionfornum
src/lparser.cpp:5083
↓ 1 callersFunctionforprep
** Prepare a numerical for loop (opcode OP_FORPREP). ** Before execution, stack is as follows: ** ra : initial value ** ra + 1 : limit ** ra
src/lvm.cpp:212
↓ 1 callersFunctionforstat
src/lparser.cpp:5162
↓ 1 callersFunctionforvlist
src/lparser.cpp:5131
↓ 1 callersFunctionfreeCI
** free all CallInfo structures not in use by a thread */
src/lstate.cpp:95
↓ 1 callersFunctionfreeupval
src/lgc.cpp:829
↓ 1 callersFunctionfullgen
** Does a full collection in generational mode. */
src/lgc.cpp:1458
↓ 1 callersFunctionfuncinfo
src/ldebug.cpp:266
↓ 1 callersFunctionfuncname
src/lparser.cpp:5776
↓ 1 callersFunctionfuncnamefromcode
** Try to find a name for a function based on the code that called it. ** (Only works when function was called by a Lua function.) ** Returns what the
src/ldebug.cpp:633
↓ 1 callersFunctionfuncstat
src/lparser.cpp:5790
↓ 1 callersFunctiong_read
src/liolib.cpp:662
↓ 1 callersFunctiong_write
src/liolib.cpp:760
↓ 1 callersMethodgetSpecialName
src/llex.h:347
↓ 1 callersFunctionget_prompt
** Return the string to be used as a prompt by the interpreter. Leave ** the string (or nil, if using the default value) on the stack, to keep ** it a
src/lua.cpp:543
↓ 1 callersFunctiongetbaseline
** Get a "base line" to find the line corresponding to an instruction. ** Base lines are regularly placed at MAXIWTHABS intervals, so usually ** an in
src/ldebug.cpp:62
↓ 1 callersFunctiongetboolfield
src/loslib.cpp:242
↓ 1 callersFunctiongetformat
** Get a conversion specification and copy it to 'form'. ** Return the address of its last character. */
src/lstrlib.cpp:1361
↓ 1 callersFunctiongetfreepos
src/ltable.cpp:859
↓ 1 callersFunctiongetfuncname
src/ldebug.cpp:339
↓ 1 callersFunctiongetmode
** (result & 1) iff weak values; (result & 2) iff weak keys. */
src/lgc.cpp:595
↓ 1 callersFunctiongetn
src/ltablib.cpp:493
↓ 1 callersFunctiongetnextfilename
** Get the next name in '*path' = 'name1;name2;name3;...', changing ** the ending ';' to '\0' to create a zero-terminated string. Return ** NULL when
src/loadlib.cpp:461
↓ 1 callersFunctiongetnumargs
** Get the number of extra arguments in a vararg function. If vararg ** table has been optimized away, that number is in the call info. ** Otherwise,
src/ltm.cpp:328
↓ 1 callersFunctiongetunopr
src/lparser.cpp:4383
↓ 1 callersFunctiongetupvalname
** Checks whether value 'o' came from an upvalue. (That can only happen ** with instructions OP_GETTABUP/OP_SETTABUP, which operate directly on ** upv
src/ldebug.cpp:719
↓ 1 callersFunctionglobalfunc
src/lparser.cpp:5751
↓ 1 callersFunctionglobalnames
src/lparser.cpp:5719
↓ 1 callersFunctionglobalstat
src/lparser.cpp:5735
↓ 1 callersFunctiongotostat
src/lparser.cpp:4882
↓ 1 callersFunctiongrowstrtab
src/lstring.cpp:201
↓ 1 callersFunctionhandle_luainit
src/lua.cpp:387
↓ 1 callersFunctionhandle_script
src/lua.cpp:265
↓ 1 callersFunctionhash_search
** Try to find a boundary in the hash part of table 't'. From the ** caller, we know that 'asize + 1' is present. We want to find a larger ** key that
src/ltable.cpp:1270
↓ 1 callersFunctionifexpr
src/lparser.cpp:3948
↓ 1 callersFunctionifstat
src/lparser.cpp:5293
↓ 1 callersFunctionincomplete
** Check whether 'status' signals a syntax error and the error ** message at the top of the stack ends with the above mark for ** incomplete statement
src/lua.cpp:565
↓ 1 callersFunctionincstep
** Performs a basic incremental step. The step size is ** converted from bytes to "units of work"; then the function loops ** running single steps unt
src/lgc.cpp:1710
↓ 1 callersFunctioninexpr
src/lparser.cpp:4369
↓ 1 callersFunctioninit_registry
** Create registry table and its predefined values */
src/lstate.cpp:193
↓ 1 callersFunctioninitbuff
src/lobject.cpp:540
↓ 1 callersFunctioninitglobal
** Recursively traverse list of globals to be initalized. When ** going, generate table description for the global. In the end, ** after all indices h
src/lparser.cpp:5698
↓ 1 callersFunctioninopr
src/lvm.cpp:898
↓ 1 callersFunctioninstack
** Check whether pointer 'o' points to some value in the stack frame of ** the current function and, if so, returns its index. Because 'o' may ** not
src/ldebug.cpp:703
↓ 1 callersFunctioninterror
src/lauxlib.cpp:473
↓ 1 callersFunctionisCint
** Check whether expression 'e' is a literal integer in ** proper range to fit in register C */
src/lcode.cpp:1424
↓ 1 callersMethodisEnabled
src/llex.h:261
↓ 1 callersMethodisFatal
src/llex.h:265
↓ 1 callersMethodisSimple
src/llex.h:167
↓ 1 callersFunctionispostfixplusplus
src/lparser.cpp:3712
↓ 1 callersFunctioniswalrusassign
src/lparser.cpp:3544
↓ 1 callersFunctionjumpscopeerror
** Generates an error that a goto jumps into the scope of some ** variable declaration. */
src/lparser.cpp:1271
↓ 1 callersFunctionl_checkmode
Check whether 'mode' matches '[rwa]%+?[L_MODEEXT]*' */
src/liolib.cpp:62
↓ 1 callersFunctionl_hashfloat
src/ltable.cpp:168
↓ 1 callersFunctionl_print
** Prints (calling the Lua 'print' function) any values on the stack */
src/lua.cpp:671
↓ 1 callersFunctionl_str2d
** Convert string 's' to a Lua number (put in 'result') handling the ** current locale. ** This function accepts both the current locale or a dot as t
src/lobject.cpp:324
↓ 1 callersFunctionl_str2int
src/lobject.cpp:349
↓ 1 callersFunctionlabelstat
src/lparser.cpp:4965
↓ 1 callersFunctionlastlevel
src/lauxlib.cpp:131
↓ 1 callersFunctionlessequalothers
** return 'l <= r' for non-numbers. */
src/lvm.cpp:584
↓ 1 callersFunctionlessthanothers
** return 'l < r' for non-numbers. */
src/lvm.cpp:562
↓ 1 callersFunctionlistdir_r
0.4.0 Changes: - Second boolean parameter will toggle recursive iteration. - Returns an empty table instead of throwing an error if 'f' is not
src/liolib.cpp:1099
↓ 1 callersFunctionllex
src/llex.cpp:804
↓ 1 callersFunctionlmemfind
src/lstrlib.cpp:729
↓ 1 callersFunctionloadBlock
src/lundump.cpp:57
← previousnext →901–1,000 of 1,782, ranked by callers