Home
last modified time | relevance | path

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

12345

/freebsd-11-stable/contrib/gdb/gdb/
HDinterps.c46 struct interp struct
53 struct interp *next; argument
83 static struct interp *interp_list = NULL; argument
84 static struct interp *current_interpreter = NULL;
91 struct interp *
95 struct interp *new_interp; in interp_new()
97 new_interp = XMALLOC (struct interp); in interp_new()
112 interp_add (struct interp *interp) in interp_add() argument
117 gdb_assert (interp_lookup (interp->name) == NULL); in interp_add()
119 interp->next = interp_list; in interp_add()
[all …]
HDinterps.h28 struct interp;
30 extern int interp_resume (struct interp *interp);
31 extern int interp_suspend (struct interp *interp);
32 extern int interp_prompt_p (struct interp *interp);
33 extern int interp_exec_p (struct interp *interp);
34 extern int interp_exec (struct interp *interp, const char *command);
35 extern int interp_quiet_p (struct interp *interp);
54 extern struct interp *interp_new (const char *name, void *data,
57 extern void interp_add (struct interp *interp);
58 extern int interp_set (struct interp *interp);
[all …]
HDmain.c574 struct interp *interp = interp_lookup (interpreter_p); in captured_main() local
575 if (interp == NULL) in captured_main()
578 if (!interp_set (interp)) in captured_main()
/freebsd-11-stable/contrib/sqlite3/tea/generic/
HDtclsqlite3.c112 Tcl_Interp *interp; /* The TCL interpret to execute the function */ member
127 Tcl_Interp *interp; /* The TCL interpret to execute the function */ member
160 Tcl_Interp *interp; /* The interpreter used for this database */ member
230 Tcl_UnregisterChannel(pDb->interp, p->channel); in closeIncrblobChannels()
239 Tcl_Interp *interp in incrblobClose() argument
260 Tcl_SetResult(interp, (char *)sqlite3_errmsg(db), TCL_VOLATILE); in incrblobClose()
396 Tcl_Interp *interp, in createIncrblobChannel() argument
416 Tcl_SetResult(interp, (char *)sqlite3_errmsg(pDb->db), TCL_VOLATILE); in createIncrblobChannel()
426 Tcl_RegisterChannel(interp, p->channel); in createIncrblobChannel()
437 Tcl_SetResult(interp, (char *)Tcl_GetChannelName(p->channel), TCL_VOLATILE); in createIncrblobChannel()
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
HDBreakpointResolverScripted.cpp116 ScriptInterpreter *interp = GetScriptInterpreter(); in SearchCallback() local
117 should_continue = interp->ScriptedBreakpointResolverSearchCallback( in SearchCallback()
131 ScriptInterpreter *interp = GetScriptInterpreter(); in GetDepth() local
132 depth = interp->ScriptedBreakpointResolverSearchDepth( in GetDepth()
143 ScriptInterpreter *interp = GetScriptInterpreter(); in GetDescription() local
144 interp->GetShortHelpForCommandObject(m_implementation_sp, in GetDescription()
/freebsd-11-stable/sys/tools/sound/
HDfeeder_rate_mkfilter.awk599 function init_coeff_interpolator(interp)
604 if (interp == "ZOH" || interp == "LINEAR" || \
605 interp == "QUADRATIC" || interp == "HERMITE" || \
606 interp == "BSPLINE" || interp == "OPT32X" || \
607 interp == "OPT16X" || interp == "OPT8X" || \
608 interp == "OPT4X" || interp == "OPT2X")
609 Z_COEFF_INTERPOLATOR = interp;
/freebsd-11-stable/contrib/gdb/gdb/mi/
HDmi-interp.c46 struct interp *mi2_interp;
47 struct interp *mi1_interp;
48 struct interp *mi_interp;
190 struct interp *interp_to_use; in mi_cmd_interpreter_exec()
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
HDPrimType.cpp12 using namespace clang::interp;
15 namespace interp { namespace
HDByteCodeStmtGen.cpp20 using namespace clang::interp;
23 namespace interp { namespace
258 namespace interp { namespace
HDFrame.cpp12 using namespace clang::interp;
HDByteCodeGenError.cpp12 using namespace clang::interp;
HDOpcode.h19 namespace interp {
HDFrame.h22 namespace interp {
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5210/
HDar5210_reset.c621 uint32_t interp; in getPcdac() local
632 interp = (350 * (pRD->pcdac[i] - pRD->pcdac[i-1])) + 999; in getPcdac()
633 interp = (interp / 1000) + pRD->pcdac[i-1]; in getPcdac()
634 return interp; in getPcdac()
663 uint32_t interp; in getGainF() local
708 interp = ((pcdac - pRD->pcdac[low]) * 1000) / in getGainF()
714 interp = ((interp * (pRD->gainF[high] - pRD->gainF[low])) + 999) / 1000; in getGainF()
717 return interp + pRD->gainF[low]; in getGainF()
/freebsd-11-stable/sys/kern/
HDimgact_elf.c91 const char *interp, int interp_name_len, int32_t *osrel);
257 __elfN(get_brandinfo)(struct image_params *imgp, const char *interp, in __elfN()
278 if (interp != NULL && (bi->flags & BI_BRAND_ONLY_STATIC) != 0) in __elfN()
296 if (ret && bi_m == NULL && interp != NULL && in __elfN()
299 strncmp(interp, bi->interp_path, interp_name_len) in __elfN()
315 (interp != NULL && (bi->flags & BI_BRAND_ONLY_STATIC) != 0)) in __elfN()
334 interp_name_len && strncmp(interp, in __elfN()
359 if (interp != NULL) { in __elfN()
370 strncmp(interp, bi->interp_path, interp_name_len) in __elfN()
381 (interp != NULL && (bi->flags & BI_BRAND_ONLY_STATIC) != 0)) in __elfN()
[all …]
/freebsd-11-stable/gnu/usr.bin/gdb/libgdb/
HDMakefile19 cli-cmds.c cli-decode.c cli-dump.c cli-interp.c cli-logging.c \
41 mi-cmds.c mi-console.c mi-getopt.c mi-interp.c mi-main.c \
51 tui-data.c tui-disasm.c tui-file.c tui-hooks.c tui-interp.c \
/freebsd-11-stable/libexec/rtld-elf/amd64/
HDelf_rtld.x12 .interp : { *(.interp) }
/freebsd-11-stable/libexec/rtld-elf/i386/
HDelf_rtld.x12 .interp : { *(.interp) }
/freebsd-11-stable/stand/powerpc/kboot/
HDldscript.powerpc21 .interp : { *(.interp) }
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
HDBreakpointOptions.h50 CommandData(const StringList &user_source, lldb::ScriptLanguage interp) in CommandData()
51 : user_source(user_source), script_source(), interpreter(interp), in CommandData()
/freebsd-11-stable/sys/conf/
HDldscript.mips.cfe47 interp PT_INTERP ;
57 .interp : { *(.interp) } :interp
/freebsd-11-stable/stand/arm/uboot/
HDldscript.arm19 .interp : { *(.interp) }
/freebsd-11-stable/contrib/file/src/
HDreadelf.c1625 char interp[BUFSIZ]; in dophn_exec() local
1640 interp[0] = '\0'; in dophn_exec()
1717 memcpy(interp, nbuf, CAST(size_t, bufsize)); in dophn_exec()
1719 strlcpy(interp, "*empty*", sizeof(interp)); in dophn_exec()
1750 if (interp[0]) in dophn_exec()
1752 file_printable(ibuf, sizeof(ibuf), interp, sizeof(interp))) in dophn_exec()
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBDebugger.cpp217 SBCommandInterpreter interp = debugger.GetCommandInterpreter(); in Create() local
219 interp.get()->SkipLLDBInitFiles(false); in Create()
220 interp.get()->SkipAppInitFiles(false); in Create()
222 interp.SourceInitFileInHomeDirectory(result); in Create()
224 interp.get()->SkipLLDBInitFiles(true); in Create()
225 interp.get()->SkipAppInitFiles(true); in Create()
1188 CommandInterpreter &interp = m_opaque_sp->GetCommandInterpreter(); in RunCommandInterpreter() local
1189 interp.RunCommandInterpreter(auto_handle_events, spawn_thread, in RunCommandInterpreter()
1191 num_errors = interp.GetNumErrors(); in RunCommandInterpreter()
1192 quit_requested = interp.GetQuitRequested(); in RunCommandInterpreter()
[all …]
/freebsd-11-stable/stand/powerpc/uboot/
HDldscript.powerpc13 .interp : { *(.interp) }

12345