Searched refs:normalize (Results 1 - 25 of 58) sorted by relevance

123

/frameworks/compile/mclinker/include/mcld/
H A DLinker.h38 /// normalize - To normalize the command line language into mcld::Module.
39 bool normalize(Module& pModule, IRBuilder& pBuilder);
/frameworks/base/core/java/android/gesture/
H A DInstance.java50 private void normalize() { method in class:Instance
78 instance.normalize();
/frameworks/base/libs/hwui/
H A DVector.h89 void normalize() { function in struct:android::uirenderer::Vector2
97 v.normalize();
H A DAmbientShadow.cpp85 secondSpike.normalize();
178 currentSpike.normalize();
231 averageNormal.normalize();
H A DPathTessellator.cpp87 * Note that we can't add and normalize the two vectors, that would result in a rectangle having an
216 lastNormal.normalize();
220 nextNormal.normalize();
311 lastNormal.normalize();
318 nextNormal.normalize();
357 lastNormal.normalize();
361 nextNormal.normalize();
594 lastNormal.normalize();
602 nextNormal.normalize();
662 lastNormal.normalize();
[all...]
H A DShadowTessellator.cpp155 result.normalize();
/frameworks/rs/script_api/include/
H A Drs_vector_math.rsh209 * See also normalize(), native_normalize().
365 * native_normalize: Approximately normalize a vector
369 * See also normalize(), fast_normalize().
412 * normalize: Normalize a vector
422 normalize(float v);
425 normalize(float2 v);
428 normalize(float3 v);
431 normalize(float4 v);
435 normalize(half v);
440 normalize(half
[all...]
/frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
H A DVectorUtil.java52 public static void normalize(double[] a) { method in class:VectorUtil
H A DMatrix.java36 VectorUtil.normalize(v);
43 VectorUtil.normalize(v);
50 VectorUtil.normalize(v);
/frameworks/base/core/tests/coretests/src/android/text/format/
H A DTimeTest.java40 t.normalize(false /* use isDst */);
106 // Use normalize(true) with these tests to change the date by 1 day.
138 // Use normalize(false) with these tests.
193 // call normalize() to make sure that isDst is set
194 local.normalize(false /* use isDst */);
196 local.normalize(true /* ignore isDst */);
205 "day test index " + index + ", normalize(): expected local " + expectedTime
210 // call normalize() to make sure that isDst is set
211 local.normalize(false /* use isDst */);
233 // call normalize() t
[all...]
/frameworks/rs/script_api/
H A Drs_vector_math.spec168 See also @normalize(), @native_normalize().
256 summary: Approximately normalize a vector
260 See also @normalize(), @fast_normalize().
274 function: normalize
292 function: normalize
/frameworks/native/libs/math/include/math/
H A Dmat3.h257 ret[0] = normalize(m[0]);
258 ret[2] = normalize(cross(ret[0], m[1]));
259 ret[1] = normalize(cross(ret[2], ret[0]));
412 ret[0] = normalize(m[0]);
413 ret[2] = normalize(cross(ret[0], m[1]));
414 ret[1] = normalize(cross(ret[2], ret[0]));
H A DTQuatHelpers.h190 constexpr QUATERNION<T> PURE normalize(const QUATERNION<T>& q) { function in class:android::details::TQuatFunctions
241 return std::pow(nq, a) * QUATERNION<T>(normalize(q.xyz) * std::sin(theta), std::cos(theta));
256 return normalize(s0 * p + ((d < 0) ? (-s1) : (s1)) * q);
266 return normalize(lerp(p, q, t));
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
H A DPoint.java84 public Point normalize() { method in class:Point
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
H A DPageRangeUtils.java84 ourRanges = normalize(ourRanges);
85 otherRanges = normalize(otherRanges);
114 * @param pageRanges The page ranges to normalize.
117 public static PageRange[] normalize(PageRange[] pageRanges) { method in class:PageRangeUtils
317 return PageRangeUtils.normalize(ranges.toArray(new PageRange[ranges.size()]));
/frameworks/compile/mclinker/include/mcld/Object/
H A DObjectLinker.h49 /// normalize - normalize the input files
50 void normalize();
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DShaderProgram.java157 boolean normalize) {
164 normalize)) {
299 boolean normalize);
151 setAttributeValues(String attributeName, VertexFrame vertexData, int type, int componentCount, int strideInBytes, int offsetInBytes, boolean normalize) argument
293 setShaderAttributeVertexFrame(String attributeName, VertexFrame vertexData, int type, int componentCount, int strideInBytes, int offsetInBytes, boolean normalize) argument
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp67 if (!normalize(pModule, pBuilder))
76 /// normalize - to convert the command line language to the input tree.
77 bool Linker::normalize(Module& pModule, IRBuilder& pBuilder) { function in class:mcld::Linker
100 // 4.b - normalize the input tree
104 m_pObjLinker->normalize();
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/net/
H A DDataUsageController.java113 rt.normalize(false);
123 template = NetworkTemplate.normalize(template, mTelephonyManager.getMergedSubscriberIds());
151 policyTime.normalize(false);
/frameworks/native/services/sensorservice/
H A Dquat.h88 return normalize(r);
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.h250 // shader variables. See the normalize flag on how values are
255 // normalize: True, if not float values should be normalized to the range
264 bool normalize);
279 bool normalize);
/frameworks/native/libs/math/tests/
H A Dquat_test.cpp229 quatd qn(normalize(q));
282 double3 axis_a = normalize(double3(rand_gen(), rand_gen(), rand_gen()));
286 double3 axis_b = normalize(double3(rand_gen(), rand_gen(), rand_gen()));
/frameworks/base/core/java/android/text/format/
H A DTime.java213 * current value of this calendar is March 32, normalize() will convert it
229 public long normalize(boolean ignoreDst) { method in class:Time
239 * normalize() in some cases.
392 * fields, call {@link #normalize(boolean)} after parsing.
401 * long millis = time.normalize(false);
665 normalize(false);
700 * to normalize the fields in this Time object and also get the milliseconds
701 * then use {@link #normalize(boolean)}.
725 * time.normalize(false); // this sets isDst = 1
801 * Call {@link #normalize(boolea
[all...]
/frameworks/base/media/mca/filterfw/jni/
H A Djni_shader_program.h144 jboolean normalize);
H A Djni_shader_program.cpp296 jboolean normalize) {
314 ToCppBool(normalize));
287 Java_android_filterfw_core_ShaderProgram_setShaderAttributeVertexFrame( JNIEnv* env, jobject thiz, jstring attr_name, jobject vertex_frame, jint type, jint component_count, jint stride, jint offset, jboolean normalize) argument

Completed in 1033 milliseconds

123