| /freebsd-src/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-src/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-src/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-src/contrib/lutok/examples/ |
| H A D | hello.cpp | 55 state.pcall(1, 0, 0); in main()
|
| /freebsd-src/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPrintfRuntimeBinding.cpp | 294 CallInst *pcall = CallInst::Create(PrintfAllocFn, alloc_args, in lowerPrintfForGpu() 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() 293 CallInst *pcall = lowerPrintfForGpu() local
|
| /freebsd-src/sys/dev/smbus/ |
| H A D | smbus_if.m | 122 METHOD int pcall {
|
| /freebsd-src/stand/lua/ |
| H A D | config.lua | 560 local res, err = pcall(load(text, name, "t", cfg_env))
|