HomeSort by relevance Sort by last modified time
    Searched defs:interp (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/chromium_org/third_party/skia/experimental/Intersection/
IntersectionUtilities.h 45 inline double interp(double A, double B, double t) { function
  /external/skia/experimental/Intersection/
IntersectionUtilities.h 45 inline double interp(double A, double B, double t) { function
  /frameworks/av/media/libeffects/testlibs/
AudioCoefInterpolator.cpp 72 out[d] = interp(out[d], tempCoef[d], fracCoord[dim]);
78 audio_coef_t AudioCoefInterpolator::interp(audio_coef_t lo, audio_coef_t hi, function in class:android::AudioCoefInterpolator
  /external/sonivox/arm-wt-22k/lib_src/
eas_flog.c 67 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/valgrind/main/coregrind/m_ume/
script.c 49 const HChar* interp = script + 2; local
58 while (interp < end && VG_(isspace)(*interp)) interp++;
61 if (interp >= end) return False; // can't find start of interp name
63 // interp should now point at the /
64 if (*interp != '/') return False; // absolute path only for interpreter
67 interp++;
68 if (interp >= end) return False
85 HChar* interp; local
    [all...]
elf.c 287 interpreter (interp == NULL), this must be a statically linked
303 struct elfinfo *interp = NULL; local
386 interp = readelf(intfd, buf);
387 if (interp == NULL) {
394 for (j = 0; j < interp->e.e_phnum; j++) {
395 ESZ(Phdr) *iph = &interp->p[j];
407 /* assumes that all segments in the interp are close */
451 if (interp != NULL) {
488 if (0) VG_(printf)("reserve for interp: failed\n");
493 (void)mapelf(interp, (ESZ(Addr))advised - interp_addr)
    [all...]
  /frameworks/base/core/jni/android/graphics/
Interpolator.cpp 15 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle); local
16 delete interp;
21 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle); local
22 interp->reset(valueCount, frameCount);
27 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle); local
38 interp->setKeyFrame(index, msec, scalars, blend);
43 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle); local
47 interp->setRepeatCount(repeatCount);
48 interp->setMirror(mirror != 0);
53 SkInterpolator* interp = reinterpret_cast<SkInterpolator*>(interpHandle) local
    [all...]
  /frameworks/av/services/audioflinger/
AudioResamplerCubic.h 50 static inline int32_t interp(state* p, int32_t x) { function in class:android::AudioResamplerCubic
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_state_derived.c 91 enum interp_mode interp = INTERP_LINEAR; local
95 interp = INTERP_CONSTANT;
98 interp = INTERP_LINEAR;
101 interp = INTERP_PERSPECTIVE;
112 interp = INTERP_POS;
118 interp = INTERP_CONSTANT;
120 interp = INTERP_PERSPECTIVE;
134 draw_emit_vertex_attr(vinfo, EMIT_4F, interp, src);
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_print_visitor.cpp 151 const char *const interp[] = { "", "flat", "noperspective" }; local
154 cent, inv, mode[ir->mode], interp[ir->interpolation]);
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_state_derived.c 91 enum interp_mode interp = INTERP_LINEAR; local
95 interp = INTERP_CONSTANT;
98 interp = INTERP_LINEAR;
101 interp = INTERP_PERSPECTIVE;
112 interp = INTERP_POS;
118 interp = INTERP_CONSTANT;
120 interp = INTERP_PERSPECTIVE;
134 draw_emit_vertex_attr(vinfo, EMIT_4F, interp, src);
  /external/mesa3d/src/glsl/
ir_print_visitor.cpp 151 const char *const interp[] = { "", "flat", "noperspective" }; local
154 cent, inv, mode[ir->mode], interp[ir->interpolation]);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_bld_interp.h 70 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
lp_bld_interp.c 183 const unsigned interp = bld->interp[attrib]; local
191 switch (interp) {
274 const unsigned interp = bld->interp[attrib]; local
285 switch (interp) {
315 if (interp == LP_INTERP_PERSPECTIVE) {
388 const unsigned interp = bld->interp[attrib]; local
397 switch (interp) {
568 const unsigned interp = bld->interp[attrib]; local
    [all...]
lp_setup_point.c 219 enum lp_interp interp = key->inputs[slot].interp; local
220 boolean perspective = !!(interp == LP_INTERP_PERSPECTIVE);
227 switch (interp) {
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_cliptmp.h 55 interp( ctx, t, newvert, idx, idxPrev, GL_TRUE ); \
61 interp( ctx, t, newvert, idxPrev, idx, GL_FALSE ); \
122 tnl_interp_func interp = tnl->Driver.Render.Interp; local
153 interp( ctx, t0, newvert, v0, v1, GL_FALSE );
167 interp( ctx, t1, newvert, v1, v0_orig, GL_FALSE );
191 tnl_interp_func interp = tnl->Driver.Render.Interp; local
271 tnl_interp_func interp = tnl->Driver.Render.Interp; local
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
test_superlock.c 262 Tcl_Interp *interp; member in struct:InterpAndScript
273 Tcl_Interp *interp,
278 Tcl_WrongNumArgs(interp, 1, objv, "");
281 Tcl_DeleteCommand(interp, Tcl_GetString(objv[0]));
292 Tcl_ListObjAppendElement(p->interp, pEval, Tcl_NewIntObj(nBusy));
293 Tcl_EvalObjEx(p->interp, pEval, TCL_EVAL_GLOBAL);
294 Tcl_GetIntFromObj(p->interp, Tcl_GetObjResult(p->interp), &iVal);
305 Tcl_Interp *interp,
318 interp, 1, objv, "CMDNAME PATH ?VFS? ?BUSY-HANDLER-SCRIPT?")
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_resampler.c 82 float be, tnew, interp; local
109 interp = y[tn] + (tnew - tn) * (y[tn + 1] - y[tn]);
111 if (interp > 32767) {
112 interp = 32767;
113 } else if (interp < -32768) {
114 interp = -32768;
117 outspeech[mm] = (short)interp;
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_interp.h 70 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
  /external/mesa3d/src/mesa/tnl/
t_vb_cliptmp.h 55 interp( ctx, t, newvert, idx, idxPrev, GL_TRUE ); \
61 interp( ctx, t, newvert, idxPrev, idx, GL_FALSE ); \
122 tnl_interp_func interp = tnl->Driver.Render.Interp; local
153 interp( ctx, t0, newvert, v0, v1, GL_FALSE );
167 interp( ctx, t1, newvert, v1, v0_orig, GL_FALSE );
191 tnl_interp_func interp = tnl->Driver.Render.Interp; local
271 tnl_interp_func interp = tnl->Driver.Render.Interp; local
    [all...]
  /external/valgrind/main/coregrind/
launcher-linux.c 156 char *interp = (char *)header + 2; local
166 interp = &header[i];
175 platform = select_platform(interp);
  /external/webrtc/src/modules/audio_processing/aec/
aec_resampler.c 83 float be, tnew, interp; local
108 interp = y[tn] + (tnew - tn) * (y[tn+1] - y[tn]);
110 if (interp > 32767) {
111 interp = 32767;
113 else if (interp < -32768) {
114 interp = -32768;
117 outspeech[mm] = (short) interp;
  /packages/apps/Gallery2/jni/filters/
fx.c 19 __inline__ int interp(unsigned char *src, int p , int *off ,float dr,float dg, float db){ function
80 rgb[RED] = clamp(interp(lutrgb,p ,off,dr,dg,db));
81 rgb[GREEN] = clamp(interp(lutrgb,p+1,off,dr,dg,db));
82 rgb[BLUE] = clamp(interp(lutrgb,p+2,off,dr,dg,db));
  /external/chromium_org/content/browser/android/
edge_effect.cc 286 const float interp = static_cast<float>(Damp(t, 1.)); local
288 edge_alpha_ = Lerp(edge_alpha_start_, edge_alpha_finish_, interp);
289 edge_scale_y_ = Lerp(edge_scale_y_start_, edge_scale_y_finish_, interp);
290 glow_alpha_ = Lerp(glow_alpha_start_, glow_alpha_finish_, interp);
291 glow_scale_y_ = Lerp(glow_scale_y_start_, glow_scale_y_finish_, interp);
334 (edge_scale_y_finish_ - edge_scale_y_start_) * interp * factor;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv30/
nv30_draw.c 206 unsigned interp; member in struct:__anon17445
243 draw_emit_vertex_attr(vinfo, emit, vroute[sem].interp, attrib);

Completed in 1427 milliseconds

1 2 3 4