Searched refs:interp (Results 1 - 25 of 113) sorted by relevance

12345

/external/python/cpython2/Modules/
H A Dtkappinit.c27 Tcl_AppInit(Tcl_Interp *interp) argument
45 Tk_MacOSXOpenBundleResources (interp, "com.tcltk.tcllibrary",
49 Tcl_SetVar(interp, "tcl_library", tclLibPath, TCL_GLOBAL_ONLY);
50 Tcl_SetVar(interp, "tclDefaultLibrary", tclLibPath, TCL_GLOBAL_ONLY);
51 Tcl_SetVar(interp, "tcl_pkgPath", tclLibPath, TCL_GLOBAL_ONLY);
55 Tcl_SetVar(interp, "tcl_library", tclLibPath, TCL_GLOBAL_ONLY);
56 Tcl_SetVar(interp, "tclDefaultLibrary", tclLibPath, TCL_GLOBAL_ONLY);
57 Tcl_SetVar(interp, "tcl_pkgPath", tclLibPath, TCL_GLOBAL_ONLY);
60 if (Tcl_Init (interp) == TCL_ERROR)
65 Tk_MacOSXOpenBundleResources (interp, "co
[all...]
H A D_tkinter.c259 Tcl_Interp *interp; member in struct:__anon17565
279 #define Tkapp_Interp(v) (((TkappObject *) (v))->interp)
667 Tcl_AppInit(Tcl_Interp *interp) argument
671 if (Tcl_Init(interp) == TCL_ERROR) {
672 PySys_WriteStderr("Tcl_Init error: %s\n", Tcl_GetStringResult(interp));
676 _tkinter_skip_tk_init = Tcl_GetVar(interp,
690 if (Tk_Init(interp) == TCL_ERROR) {
694 PySys_WriteStderr("Tk_Init error: %s\n", Tcl_GetStringResult(interp));
723 v->interp = Tcl_CreateInterp();
725 v->threaded = Tcl_GetVar2Ex(v->interp, "tcl_platfor
1298 Tcl_Interp *interp = Tkapp_Interp(tkapp); local
2424 PythonCmd_Error(Tcl_Interp *interp) argument
2436 PythonCmd(ClientData clientData, Tcl_Interp *interp, int argc, char *argv[]) argument
2504 Tcl_Interp* interp; member in struct:CommandEvent
3128 Tcl_Interp *interp = Tkapp_Interp(self); local
[all...]
/external/valgrind/coregrind/m_ume/
H A Dscript.c51 const HChar* interp = script + 2; local
59 while (interp < end && (*interp == ' ' || *interp == '\t')) interp++;
62 if (interp >= end) return False; // can't find start of interp name
65 if (*interp == '\n') return False;
77 HChar* interp; local
95 interp
[all...]
H A Delf.c238 /* Check whether the program's and interp's ABIs have a matching FPU
526 interpreter (interp == NULL), this must be a statically linked
542 struct elfinfo *interp = NULL; local
654 interp = readelf(intfd, buf);
655 if (interp == NULL) {
662 for (j = 0; j < interp->e.e_phnum; j++) {
663 ESZ(Phdr) *iph = &interp->p[j];
687 retval = arch_elf_pt_proc(&interp->e, iph, intfd, True,
703 /* assumes that all segments in the interp are close */
756 interp !
[all...]
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_flog.c67 EAS_U32 interp; local
85 interp = (n >> MANTISSA_LSB_SHIFT) & MANTISSA_LSB_MASK;
91 interp = ((eas_log2_table[n+1] - eas_log2_table[n]) * interp) >> INTERPOLATION_SHIFT;
92 exp += eas_log2_table[n] + interp;
/external/python/cpython2/Python/
H A Dpystate.c31 static PyThread_type_lock head_mutex = NULL; /* Protects interp->tstate_head */
60 PyInterpreterState *interp = (PyInterpreterState *) local
63 if (interp != NULL) {
69 interp->modules = NULL;
70 interp->modules_reloading = NULL;
71 interp->sysdict = NULL;
72 interp->builtins = NULL;
73 interp->tstate_head = NULL;
74 interp->codec_search_path = NULL;
75 interp
99 PyInterpreterState_Clear(PyInterpreterState *interp) argument
117 zapthreads(PyInterpreterState *interp) argument
129 PyInterpreterState_Delete(PyInterpreterState *interp) argument
157 new_threadstate(PyInterpreterState *interp, int init) argument
211 PyThreadState_New(PyInterpreterState *interp) argument
217 _PyThreadState_Prealloc(PyInterpreterState *interp) argument
261 PyInterpreterState *interp; local
394 PyInterpreterState *interp = tstate->interp; local
436 PyInterpreterState_Next(PyInterpreterState *interp) argument
441 PyInterpreterState_ThreadHead(PyInterpreterState *interp) argument
[all...]
H A Dpythonrun.c157 PyInterpreterState *interp; local
196 interp = PyInterpreterState_New();
197 if (interp == NULL)
200 tstate = PyThreadState_New(interp);
221 interp->modules = PyDict_New();
222 if (interp->modules == NULL)
224 interp->modules_reloading = PyDict_New();
225 if (interp->modules_reloading == NULL)
236 interp->builtins = PyModule_GetDict(bimod);
237 if (interp
406 PyInterpreterState *interp; local
578 PyInterpreterState *interp; local
654 PyInterpreterState *interp = tstate->interp; local
[all...]
H A Dcodecs.c31 PyInterpreterState *interp = PyThreadState_GET()->interp; local
32 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
42 return PyList_Append(interp->codec_search_path, search_function);
96 PyInterpreterState *interp; local
105 interp = PyThreadState_GET()->interp;
106 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
118 result = PyDict_GetItem(interp->codec_search_cache, v);
131 len = PyList_Size(interp
565 PyInterpreterState *interp = PyThreadState_GET()->interp; local
583 PyInterpreterState *interp = PyThreadState_GET()->interp; local
1001 PyInterpreterState *interp = PyThreadState_GET()->interp; local
[all...]
/external/python/cpython2/Lib/test/
H A Dtest_tcl.py49 self.interp = Tcl()
50 self.wantobjects = self.interp.tk.wantobjects()
53 tcl = self.interp
58 tcl = self.interp
62 tcl = self.interp
66 tcl = self.interp
71 tcl = self.interp
75 tcl = self.interp
79 tcl = self.interp
84 tcl = self.interp
[all...]
/external/skia/experimental/docs/
H A DinterpolatorFunctions.js1 function interp(A, B, t) { function
7 var ab = interp(x1, x2, t);
8 var bc = interp(x2, x3, t);
9 var cd = interp(x3, x4, t);
10 var abc = interp(ab, bc, t);
11 var bcd = interp(bc, cd, t);
12 var abcd = interp(abc, bcd, t);
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_setup.h47 unsigned interp:8; /**< SP_INTERP_X */ member in struct:sp_setup_info::__anon15184
H A Dsp_state_derived.c107 enum sp_interp_mode interp = SP_INTERP_LINEAR; local
111 interp = SP_INTERP_CONSTANT;
114 interp = SP_INTERP_LINEAR;
117 interp = SP_INTERP_PERSPECTIVE;
128 interp = SP_INTERP_POS;
134 interp = SP_INTERP_CONSTANT;
136 interp = SP_INTERP_PERSPECTIVE;
160 sinfo->attrib[i].interp = interp;
/external/speex/libspeex/
H A Dresample.c244 double interp[4]; local
250 interp[3] = -0.1666666667*frac + 0.1666666667*(frac*frac*frac);
251 interp[2] = frac + 0.5*(frac*frac) - 0.5*(frac*frac*frac);
252 /*interp[2] = 1.f - 0.5f*frac - frac*frac + 0.5f*frac*frac*frac;*/
253 interp[0] = -0.3333333333*frac + 0.5*(frac*frac) - 0.1666666667*(frac*frac*frac);
255 interp[1] = 1.f-interp[3]-interp[2]-interp[0];
258 return interp[
303 cubic_coef(spx_word16_t x, spx_word16_t interp[4]) argument
319 cubic_coef(spx_word16_t frac, spx_word16_t interp[4]) argument
456 spx_word16_t interp[4]; local
519 spx_word16_t interp[4]; local
[all...]
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_bld_interp.h70 uint interp:4; /* enum lp_interp */ member in struct:lp_shader_input
86 enum lp_interp interp[1 + PIPE_MAX_SHADER_INPUTS]; member in struct:lp_build_interp_soa_context
H A Dlp_bld_interp.c183 const unsigned interp = bld->interp[attrib]; local
191 switch (interp) {
268 const unsigned interp = bld->interp[attrib]; local
279 switch (interp) {
313 if (interp == LP_INTERP_PERSPECTIVE) {
394 const unsigned interp = bld->interp[attrib]; local
403 switch (interp) {
570 const unsigned interp = bld->interp[attrib]; local
[all...]
/external/skia/src/gpu/text/
H A DGrDistanceFieldAdjustTable.cpp75 float interp = (127.5f - rowPtr[col]) / (rowPtr[col + 1] - rowPtr[col]); local
76 float borderAlpha = (col + interp) / 255.f;
/external/walt/pywalt/pywalt/
H A Dminimization.py62 yl = numpy.interp(tl + shift, ty, y)
63 xl = numpy.interp(tl + shift, tx, x)
116 xx = numpy.interp(ty, tx, x)
119 yl = numpy.interp(tl + shift, ty, y)
120 xl = numpy.interp(tl + shift, tx, x)
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_pipe_flatshade.c170 int interp; local
175 interp = indexed_interp[semantic_index];
181 interp = TGSI_INTERPOLATE_PERSPECTIVE;
186 interp = fs->info.input_interpolate[j];
192 return interp;
234 int interp = find_interp(fs, indexed_interp, local
239 if (interp == TGSI_INTERPOLATE_CONSTANT) {
247 int interp = find_interp(fs, indexed_interp, local
251 if (interp == TGSI_INTERPOLATE_CONSTANT) {
/external/walt/android/WALT/app/src/test/java/org/chromium/latency/walt/
H A DUtilsTest.java74 assertThat(Utils.interp(new double[]{5,6,16,17}, new double[]{0, 10, 12, 18},
80 assertThat(Utils.interp(new double[]{5}, new double[]{0, 10},
86 assertThat(Utils.interp(new double[]{0}, new double[]{0, 10},
92 assertThat(Utils.interp(new double[]{5, 10}, new double[]{0, 5, 10},
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_interpolation_map.c43 enum glsl_interp_mode interp)
48 prog_data->interp_mode[slot] = interp;
40 gen4_frag_prog_set_interp_modes(struct brw_wm_prog_data *prog_data, struct brw_vue_map *vue_map, unsigned location, unsigned slot_count, enum glsl_interp_mode interp) argument
/external/python/cpython2/Lib/idlelib/
H A DScriptBinding.py148 interp = self.shell.interp
150 interp.restart_subprocess(with_cwd=False, filename=code.co_filename)
153 interp.runcommand("""if 1:
164 interp.prepend_syspath(filename)
168 interp.runcode(code)
H A DPyShell.py176 debug = self.flist.pyshell.interp.debugger
204 debug = self.flist.pyshell.interp.debugger
219 debug = self.flist.pyshell.interp.debugger
470 self.rpcclt.register("interp", self)
781 self.interp.restart_subprocess()
885 self.interp = ModifiedInterpreter(self)
955 db = self.interp.getdebugger()
962 db = self.interp.getdebugger()
969 db = self.interp.getdebugger()
971 self.interp
[all...]
/external/skia/samplecode/
H A DClockFaceView.cpp105 static sk_sp<SkPathEffect> makepe(float interp, SkTDArray<SkPoint>* pts) { argument
107 SkScalar rad = 3 + SkIntToScalar(4) * (1 - interp);
113 static void r7(SkLayerRasterizer::Builder* rastBuilder, SkPaint& p, SkScalar interp) { argument
114 p.setPathEffect(makepe(SkScalarToFloat(interp), nullptr));
120 p.setAlpha((1 - interp) * 255);
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_vs_draw.c89 unsigned name, unsigned index, unsigned interp,
102 decl.Interp.Interpolate = interp;
109 unsigned name, unsigned index, unsigned interp)
120 emit_output(ctx, name, index, interp,
128 unsigned name, unsigned index, unsigned interp)
139 emit_output(ctx, name, index, interp,
88 emit_output(struct tgsi_transform_context *ctx, unsigned name, unsigned index, unsigned interp, unsigned reg) argument
107 insert_output_before(struct tgsi_transform_context *ctx, struct tgsi_full_declaration *before, unsigned name, unsigned index, unsigned interp) argument
126 insert_output_after(struct tgsi_transform_context *ctx, struct tgsi_full_declaration *after, unsigned name, unsigned index, unsigned interp) argument
/external/python/cpython2/Lib/
H A DCGIHTTPServer.py258 interp = sys.executable
259 if interp.lower().endswith("w.exe"):
261 interp = interp[:-5] + interp[-4:]
262 cmdline = [interp, '-u'] + cmdline

Completed in 4276 milliseconds

12345