Home
last modified time | relevance | path

Searched refs:interp (Results 1 – 25 of 91) sorted by relevance

1234

/freebsd/contrib/sqlite3/autosetup/
H A Djimsh0.c439 #define Jim_DecrRefCount(interp, objPtr) \ argument
440 if (--(objPtr)->refCount <= 0) Jim_FreeObj(interp, objPtr)
461 typedef void (Jim_FreeInternalRepProc)(struct Jim_Interp *interp,
463 typedef void (Jim_DupInternalRepProc)(struct Jim_Interp *interp,
519 typedef int Jim_CmdProc(struct Jim_Interp *interp, int argc,
521 typedef void Jim_DelCmdProc(struct Jim_Interp *interp, void *privData);
588 int (*signal_set_result)(struct Jim_Interp *interp, jim_wide sigmask);
687 JIM_EXPORT int Jim_MakeTempFile(Jim_Interp *interp, const char *filename_template, int unlink_file);
700 JIM_EXPORT int Jim_Eval(Jim_Interp *interp, const char *script);
703 JIM_EXPORT int Jim_EvalSource(Jim_Interp *interp, const char *filename, int lineno, const char *scr…
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c142 Tcl_Interp *interp; /* The TCL interpret to execute the function */ member
157 Tcl_Interp *interp; /* The TCL interpret to execute the function */ member
190 Tcl_Interp *interp; /* The interpreter used for this database */ member
262 Tcl_UnregisterChannel(pDb->interp, p->channel); in closeIncrblobChannels()
271 Tcl_Interp *interp, in incrblobClose2() argument
301 Tcl_SetResult(interp, (char *)sqlite3_errmsg(db), TCL_VOLATILE); in incrblobClose2()
308 Tcl_Interp *interp in incrblobClose() argument
310 return incrblobClose2(instanceData, interp, 0); in incrblobClose()
459 Tcl_Interp *interp, in createIncrblobChannel() argument
479 Tcl_SetResult(interp, (char *)sqlite3_errmsg(pDb->db), TCL_VOLATILE); in createIncrblobChannel()
[all …]
/freebsd/lib/libveriexec/
H A Dexec_script.c127 const char *interp; in main() local
134 interp = NULL; in main()
138 interp = optarg; in main()
152 c = execv_script(interp, argv); in main()
153 err(2, "exec_script(%s,%s)", interp, argv[0]); in main()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverScripted.cpp109 ScriptInterpreter *interp = GetScriptInterpreter(); in SearchCallback()
110 should_continue = interp->ScriptedBreakpointResolverSearchCallback( in SearchCallback()
123 ScriptInterpreter *interp = GetScriptInterpreter(); in GetDepth()
124 depth = interp->ScriptedBreakpointResolverSearchDepth( in GetDepth()
135 ScriptInterpreter *interp = GetScriptInterpreter(); in GetDescription()
136 interp->GetShortHelpForCommandObject(m_implementation_sp, in GetDescription()
111 ScriptInterpreter *interp = GetScriptInterpreter(); SearchCallback() local
125 ScriptInterpreter *interp = GetScriptInterpreter(); GetDepth() local
137 ScriptInterpreter *interp = GetScriptInterpreter(); GetDescription() local
/freebsd/sys/tools/sound/
H A Dfeeder_rate_mkfilter.awk600 function init_coeff_interpolator(interp)
605 if (interp == "ZOH" || interp == "LINEAR" || \
606 interp == "QUADRATIC" || interp == "HERMITE" || \
607 interp == "BSPLINE" || interp == "OPT32X" || \
608 interp == "OPT16X" || interp == "OPT8X" || \
609 interp == "OPT4X" || interp == "OPT2X")
610 Z_COEFF_INTERPOLATOR = interp;
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DPrimType.cpp18 using namespace clang::interp;
21 namespace interp { namespace
H A DPrimType.h22 namespace interp {
60 interp::CastKind CK) {
62 case interp::CastKind::Reinterpret:
65 case interp::CastKind::Atomic:
H A DFrame.cpp12 using namespace clang::interp;
H A DOpcode.h19 namespace interp {
H A DFloating.cpp12 namespace interp { namespace
H A DInterpShared.h18 namespace interp {
H A DPrimitives.h22 namespace interp {
H A DInterpShared.cpp14 namespace interp { namespace
/freebsd/sys/kern/
H A Dimgact_elf.c96 const char *interp, int32_t *osrel, uint32_t *fctl0);
342 __elfN(get_brandinfo)(struct image_params *imgp, const char *interp, in __elfN()
350 interp_name_len = interp != NULL ? strlen(interp) + 1 : 0; in __elfN()
365 if (interp != NULL && (bi->flags & BI_BRAND_ONLY_STATIC) != 0) in __elfN()
389 if (ret && bi_m == NULL && interp != NULL && in __elfN()
392 strncmp(interp, bi->interp_path, interp_name_len) in __elfN()
408 (interp != NULL && (bi->flags & BI_BRAND_ONLY_STATIC) != 0)) in __elfN()
427 interp_name_len && strncmp(interp, in __elfN()
452 if (interp != NULL) { in __elfN()
463 strncmp(interp, bi->interp_path, interp_name_len) in __elfN()
[all …]
/freebsd/sys/dev/ath/ath_hal/ar5210/
H A Dar5210_reset.c620 uint32_t interp; in getPcdac() local
631 interp = (350 * (pRD->pcdac[i] - pRD->pcdac[i-1])) + 999; in getPcdac()
632 interp = (interp / 1000) + pRD->pcdac[i-1]; in getPcdac()
633 return interp; in getPcdac()
662 uint32_t interp; in getGainF() local
707 interp = ((pcdac - pRD->pcdac[low]) * 1000) / in getGainF()
713 interp = ((interp * (pRD->gainF[high] - pRD->gainF[low])) + 999) / 1000; in getGainF()
716 return interp + pRD->gainF[low]; in getGainF()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBDebugger.cpp289 SBCommandInterpreter interp = debugger.GetCommandInterpreter(); in Create() local
291 interp.get()->SkipLLDBInitFiles(false); in Create()
292 interp.get()->SkipAppInitFiles(false); in Create()
294 interp.SourceInitFileInGlobalDirectory(result); in Create()
295 interp.SourceInitFileInHomeDirectory(result, false); in Create()
297 interp.get()->SkipLLDBInitFiles(true); in Create()
298 interp.get()->SkipAppInitFiles(true); in Create()
730 lldb_private::ScriptInterpreter *interp = in GetScriptInterpreterInfo() local
732 if (interp) { in GetScriptInterpreterInfo()
733 data.m_impl_up->SetObjectSP(interp->GetInterpreterInfo()); in GetScriptInterpreterInfo()
[all …]
/freebsd/stand/efi/loader/arch/arm64/
H A Darm64.ldscript74 .interp : { *(.interp) }
/freebsd/stand/efi/loader/arch/riscv/
H A Driscv.ldscript73 .interp : { *(.interp) }
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointOptions.h48 CommandData(const StringList &user_source, lldb::ScriptLanguage interp) in CommandData()
49 : user_source(user_source), interpreter(interp), stop_on_error(true) {} in CommandData()
/freebsd/stand/uboot/arch/arm/
H A Darm.ldscript18 .interp : { *(.interp) }
/freebsd/sys/conf/
H A Dldscript.riscv23 .interp : { *(.interp) }
H A Dldscript.powerpc31 .interp : { *(.interp) }
H A Dldscript.arm22 .interp : { *(.interp) }
/freebsd/stand/uboot/arch/powerpc/
H A Dpowerpc.ldscript12 .interp : { *(.interp) }
/freebsd/stand/kboot/kboot/arch/powerpc64/
H A Dpowerpc64.ldscript11 .interp : { *(.interp) } :text

1234