/dalvik/vm/mterp/c/ |
OP_UNUSED_FF.cpp | 3 * In portable interp, most unused opcodes will fall through to here.
|
/frameworks/base/core/jni/android/graphics/ |
Interpolator.cpp | 13 static void Interpolator_destructor(JNIEnv* env, jobject clazz, SkInterpolator* interp) 15 delete interp; 18 static void Interpolator_reset(JNIEnv* env, jobject clazz, SkInterpolator* interp, int valueCount, int frameCount) 20 interp->reset(valueCount, frameCount); 23 static void Interpolator_setKeyFrame(JNIEnv* env, jobject clazz, SkInterpolator* interp, int index, int msec, jfloatArray valueArray, jfloatArray blendArray) 46 interp->setKeyFrame(index, msec, scalars, blend); 49 static void Interpolator_setRepeatMirror(JNIEnv* env, jobject clazz, SkInterpolator* interp, float repeatCount, jboolean mirror) 54 interp->setRepeatCount(SkFloatToScalar(repeatCount)); 55 interp->setMirror(mirror != 0); 58 static int Interpolator_timeToValues(JNIEnv* env, jobject clazz, SkInterpolator* interp, int msec, jfloatArray valueArray [all...] |
/external/valgrind/main/coregrind/m_ume/ |
script.c | 48 Char* interp = hdr + 2; local 57 while (interp < end && VG_(isspace)(*interp)) interp++; 60 if (interp >= end) return False; // can't find start of interp name 62 // interp should now point at the / 63 if (*interp != '/') return False; // absolute path only for interpreter 66 interp++; 67 if (interp >= end) return False 84 Char* interp; local [all...] |
/dalvik/tests/etc/ |
push-and-run-test-jar | 23 INTERP="" 36 INTERP="fast" 40 INTERP="jit" 44 INTERP="portable" 73 if [ "x$INTERP" = "x" ]; then 74 INTERP="jit" 119 $GC_OPTS -cp test.jar -Xint:${INTERP} -ea Main"
|
host-run-test-jar | 22 INTERP="" 37 INTERP="jit" 41 INTERP="fast" 45 INTERP="portable" 80 if [ "x$INTERP" = "x" ]; then 81 INTERP="jit" 158 $DEX_VERIFY $DEX_OPTIMIZE $DEX_DEBUG $GC_OPTS "-Xint:${INTERP}" -ea \
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/ |
libBrokenLocale-2.7.so | |
libBrokenLocale.so | |
libBrokenLocale.so.1 | |
libpcprofile.so | |
libutil-2.7.so | |
libutil.so | |
libutil.so.1 | |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/ |
libBrokenLocale-2.7.so | |
libBrokenLocale.so | |
libBrokenLocale.so.1 | |
libpcprofile.so | |
libutil-2.7.so | |
/dalvik/vm/mterp/ |
Mterp.h | 24 #include "interp/InterpDefs.h" 26 #include "interp/Jit.h"
|
/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;
|
/dalvik/vm/ |
Dalvik.h | 52 #include "interp/Stack.h" 83 #include "interp/Interp.h"
|
/external/speex/libspeex/ |
resample.c | 244 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[0]*func->table[ind] + interp[1]*func->table[ind+1] + interp[2]*func->table[ind+2] + interp[3]*func (…) 456 spx_word16_t interp[4]; local 519 spx_word16_t interp[4]; local [all...] |
/dalvik/vm/compiler/ |
CompilerInternals.h | 23 #include "interp/Jit.h"
|
/external/webkit/Source/WebCore/bridge/ |
testqtbindings.cpp | 100 RefPtr<Interpreter> interp = new Interpreter(global); local 101 ExecState* exec = interp->globalExec(); 110 Completion comp(interp->evaluate("", 0, code)); 129 char* msg = comp.value()->toString(interp->globalExec()).ascii();
|
/frameworks/rs/ |
rsAnimation.cpp | 49 uint32_t valueCount, RsAnimationInterpolation interp, 74 a->mInterpolation = interp; 126 RsAnimationInterpolation interp, 130 Animation *a = NULL;//Animation::create(rsc, inValues, outValues, valueCount, interp, pre, post);
|
/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));
|