Searched refs:norm (Results 26 - 37 of 37) sorted by relevance

12

/frameworks/base/core/java/android/util/
H A DMathUtils.java179 public static float norm(float start, float stop, float value) { method in class:MathUtils
/frameworks/native/libs/input/
H A DVelocityTracker.cpp476 float norm = vectorNorm(&q[j][0], m); local
477 if (norm < 0.000001f) {
480 ALOGD(" - no solution, norm=%f", norm);
485 float invNorm = 1.0f / norm;
/frameworks/rs/support/java/src/android/support/v8/renderscript/
H A DRenderScript.java341 native long rsnElementCreate(long con, long type, int kind, boolean norm, int vecSize); argument
342 synchronized long nElementCreate(long type, int kind, boolean norm, int vecSize) { argument
344 return rsnElementCreate(mContext, type, kind, norm, vecSize);
1017 native long rsnIncElementCreate(long con, long type, int kind, boolean norm, int vecSize); argument
1018 synchronized long nIncElementCreate(long type, int kind, boolean norm, int vecSize) { argument
1020 return rsnIncElementCreate(mIncCon, type, kind, norm, vecSize);
/frameworks/rs/cpp/
H A DElement.cpp274 RsDataType dt, RsDataKind dk, bool norm, uint32_t size) :
291 mNormalized = norm;
273 Element(void *id, android::RSC::sp<RS> rs, RsDataType dt, RsDataKind dk, bool norm, uint32_t size) argument
H A DrsCppStructs.h1429 Element(void *id, sp<RS> rs, RsDataType dt, RsDataKind dk, bool norm, uint32_t size);
/frameworks/rs/
H A DrsElement.cpp415 bool norm,
417 return (RsElement)Element::create(rsc, dt, dk, norm, vecSize);
412 rsi_ElementCreate(Context *rsc, RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize) argument
H A DrsRuntime.h163 bool norm, uint32_t vecSize);
H A DrsHidlAdaptation.cpp512 bool norm,
517 norm,
509 ElementCreate(RsContext context, RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize) argument
/frameworks/native/libs/math/include/math/
H A DTVecHelpers.h412 friend inline constexpr T PURE norm(const VECTOR<T>& lv) {
417 return norm(lv);
/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java408 native long rsnElementCreate(long con, long type, int kind, boolean norm, int vecSize); argument
409 synchronized long nElementCreate(long type, int kind, boolean norm, int vecSize) { argument
411 return rsnElementCreate(mContext, type, kind, norm, vecSize);
/frameworks/rs/support/jni/
H A Dandroid_renderscript_RenderScript.cpp933 jboolean norm, jint size)
935 LOG_API("nElementCreate, con(%p), type(%i), kind(%i), norm(%i), size(%i)", (RsContext)con,
936 type, kind, norm, size);
940 norm, size);
2180 nIncElementCreate(JNIEnv *_env, jobject _this, jlong con, jlong type, jint kind, jboolean norm, jint size) argument
2182 LOG_API("nElementCreate, con(%p), type(%i), kind(%i), norm(%i), size(%i)", (RsContext)con,
2183 type, kind, norm, size);
2185 (RsDataKind)kind, norm, size);
932 nElementCreate(JNIEnv *_env, jobject _this, jlong con, jlong type, jint kind, jboolean norm, jint size) argument
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp1068 nElementCreate(JNIEnv *_env, jobject _this, jlong con, jlong type, jint kind, jboolean norm, argument
1072 ALOGD("nElementCreate, con(%p), type(%" PRId64 "), kind(%i), norm(%i), size(%i)", (RsContext)con,
1073 type, kind, norm, size);
1076 norm, size);

Completed in 320 milliseconds

12