/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/ |
H A D | tst.lib_table.lua | 33 function pcall(f, ...) function 85 assert(not pcall(unpack, {}, 0, 2^31-1)) 86 assert(not pcall(unpack, {}, 1, 2^31-1)) 87 assert(not pcall(unpack, {}, -(2^31), 2^31-1)) 88 assert(not pcall(unpack, {}, -(2^31 - 1), 2^31-1)) 89 assert(pcall(unpack, {}, 2^31-1, 0)) 90 assert(pcall(unpack, {}, 2^31-1, 1)) 91 pcall(unpack, {}, 1, 2^31) 116 local s, e = pcall(table.sort, t, f)
|
/freebsd/tools/lua/ |
H A D | template.lua | 40 local pcall = pcall 111 ok, newtab = pcall(require, "table.new") 296 local ok, err = pcall(render, ...) 302 local ok, output = pcall(process, ...) 310 local ok, output = pcall(process, ...) 633 local ok, a, b = pcall(template[k], ...)
|
/freebsd/contrib/lutok/ |
H A D | operations.cpp | 86 s.pcall(nargs, nresults == -1 ? LUA_MULTRET : nresults, in do_file() 126 s.pcall(nargs, nresults == -1 ? LUA_MULTRET : nresults, in do_string()
|
H A D | state.hpp | 121 void pcall(const int, const int, const int);
|
H A D | NEWS | 24 pcall call.
|
H A D | state_test.cpp | 691 state.pcall(0, 0, 0); in ATF_TEST_CASE_BODY() 697 state.pcall(2, 1, 0); in ATF_TEST_CASE_BODY() 708 REQUIRE_API_ERROR("lua_pcall", state.pcall(0, 0, 0)); in ATF_TEST_CASE_BODY()
|
H A D | state.cpp | 643 lutok::state::pcall(const int nargs, const int nresults, const int errfunc) in pcall() function in lutok::state
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPrintfRuntimeBinding.cpp | 294 CallInst *pcall = CallInst::Create(PrintfAllocFn, alloc_args, in lowerPrintfForGpu() local 304 auto *cmp = cast<ICmpInst>(Builder.CreateICmpNE(pcall, zeroIntPtr, "")); in lowerPrintfForGpu() 320 I8Ty, pcall, ConstantInt::get(Ctx, APInt(32, 0)), "PrintBuffID", in lowerPrintfForGpu() 331 BufferIdx = GetElementPtrInst::Create(I8Ty, pcall, in lowerPrintfForGpu()
|
/freebsd/contrib/lutok/examples/ |
H A D | hello.cpp | 55 state.pcall(1, 0, 0); in main()
|
/freebsd/sys/tools/syscalls/scripts/ |
H A D | syscall_mk.lua | 12 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
|
H A D | syscalls_map.lua | 13 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
|
H A D | libsys_h.lua | 13 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
|
H A D | syscall_h.lua | 12 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
|
H A D | syscalls.lua | 12 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
|
H A D | init_sysent.lua | 12 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
|
H A D | systrace_args.lua | 12 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
|
H A D | sysproto_h.lua | 11 local script = not pcall(debug.getlocal, 4, 1) -- TRUE if script.
|
/freebsd/sys/tools/syscalls/core/ |
H A D | scarg.lua | 54 local status, type = pcall(function()
|
/freebsd/sys/dev/smbus/ |
H A D | smbus_if.m | 122 METHOD int pcall {
|
/freebsd/stand/lua/ |
H A D | config.lua | 560 local res, err = pcall(load(text, name, "t", cfg_env))
|