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

1234567891011>>

/external/llvm/lib/Support/Windows/
H A DHost.inc21 return Triple::normalize(LLVM_DEFAULT_TARGET_TRIPLE);
/external/chromium_org/v8/test/intl/string/
H A Dnormalization.js28 // Tests the new String.prototype.normalize method.
36 assertEquals('ti\u00ea\u0301ng Vi\u00ea\u0323t'.normalize('NFKD'),
37 'ti\u1ebfng Vi\u1ec7t'.normalize('NFKD')); // all precomposed
40 assertEquals('Google\u0020Maps'.normalize('NFKD'), // normal space
41 'Google\u00a0Maps'.normalize('NFKD')); // non-breaking space
42 assertEquals('Google\u0020Maps'.normalize('NFKD'), // normal space
43 'Google\u2002Maps'.normalize('NFKD')); // en-space
44 assertEquals('Google\u0020Maps'.normalize('NFKD'), // normal space
45 'Google\u2003Maps'.normalize('NFKD')); // em-space
46 assertEquals('Google\u0020Maps'.normalize('NFK
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatPoint3D.cpp30 void FloatPoint3D::normalize() function in class:blink::FloatPoint3D
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DConvolverNode.idl30 attribute boolean normalize;
H A DConvolverNode.h59 bool normalize() const { return m_normalize; } function in class:blink::FINAL
60 void setNormalize(bool normalize) { m_normalize = normalize; } argument
/external/llvm/unittests/ADT/
H A DTripleTest.cpp148 EXPECT_EQ("", Triple::normalize(""));
149 EXPECT_EQ("-", Triple::normalize("-"));
150 EXPECT_EQ("--", Triple::normalize("--"));
151 EXPECT_EQ("---", Triple::normalize("---"));
152 EXPECT_EQ("----", Triple::normalize("----"));
154 EXPECT_EQ("a", Triple::normalize("a"));
155 EXPECT_EQ("a-b", Triple::normalize("a-b"));
156 EXPECT_EQ("a-b-c", Triple::normalize("a-b-c"));
157 EXPECT_EQ("a-b-c-d", Triple::normalize("a-b-c-d"));
159 EXPECT_EQ("i386-b-c", Triple::normalize("i38
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.hlsl66 float3 nlight = normalize(input.light);
67 float3 nnormal = normalize(input.normal);
70 float specular_c = pow(saturate(dot(nnormal, normalize(normalize(input.eye) + nlight))), specular_power);
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
H A Dd3d11gears.hlsl66 float3 nlight = normalize(input.light);
67 float3 nnormal = normalize(input.normal);
70 float specular_c = pow(saturate(dot(nnormal, normalize(normalize(input.eye) + nlight))), specular_power);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DECPublicKeyParameters.java15 this.Q = Q.normalize();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
H A DECPublicKeySpec.java27 this.q = q.normalize();
H A DECParameterSpec.java27 this.G = G.normalize();
40 this.G = G.normalize();
54 this.G = G.normalize();
/external/llvm/include/llvm/Support/
H A DTimeValue.h91 : seconds_( seconds ), nanos_( nanos ) { this->normalize(); }
102 this->normalize();
120 this->normalize();
130 this->normalize();
277 this->normalize();
288 this->normalize();
295 this->normalize();
302 this->normalize();
310 this->normalize();
318 this->normalize();
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DCone.cpp52 sourceToListener.normalize();
55 normalizedSourceOrientation.normalize();
H A DReverb.h48 Reverb(AudioBus* impulseResponseBuffer, size_t renderSliceSize, size_t maxFFTSize, size_t numberOfChannels, bool useBackgroundThreads, bool normalize);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringUTF8Adaptor.h50 explicit StringUTF8Adaptor(const String& string, ShouldNormalize normalize = DoNotNormalize, UnencodableHandling handling = EntitiesForUnencodables)
64 if (normalize == Normalize)
/external/llvm/include/llvm/CodeGen/
H A DCalcSpillWeights.h55 NormalizingFn normalize; member in class:llvm::VirtRegAuxInfo
62 : MF(mf), LIS(lis), Loops(loops), MBFI(mbfi), normalize(norm) {}
/external/chromium_org/third_party/angle/samples/angle/sample_util/
H A DVector.h27 static Vector2 normalize(const Vector2 &vec);
47 static Vector3 normalize(const Vector3 &vec);
77 static Vector4 normalize(const Vector4 &vec);
/external/deqp/framework/delibs/decpp/
H A DdeFilePath.cpp84 FilePath& FilePath::normalize (void) function in class:de::FilePath
135 FilePath FilePath::normalize (const FilePath& path) function in class:de::FilePath
137 return FilePath(path).normalize();
174 FilePath normPath = FilePath::normalize(*this);
182 FilePath normPath = FilePath::normalize(*this);
227 DE_TEST_ASSERT(string(".") == FilePath(".//.").normalize().getPath());
228 DE_TEST_ASSERT(string(".") == FilePath(".").normalize().getPath());
229 DE_TEST_ASSERT((string("..") + FilePath::separator + "test") == FilePath("foo/../bar/../../test").normalize().getPath());
230 DE_TEST_ASSERT((FilePath::separator + "foo" + FilePath::separator + "foo.txt") == FilePath("/foo\\bar/..\\dir\\..\\foo.txt").normalize().getPath());
231 DE_TEST_ASSERT((string("c:") + FilePath::separator + "foo" + FilePath::separator + "foo.txt") == FilePath("c:/foo\\bar/..\\dir\\..\\foo.txt").normalize()
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DOrbitalMagnetComponent.java78 mRim.normalize();
92 mDelta.normalize();
100 mDelta.normalize();
105 mVelocity.normalize();
120 targetVelocity.normalize();
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/
H A Dd3d11spikysphere.hlsl107 return normalize(p * k.x + q * k.y + r * k.z);
170 float3 _u = normalize((abs(s.x) > abs(s.y)) ? float3(-s.z, 0, s.x) : float3(0, -s.z, s.y));
171 float3 _v = normalize(cross(s, _u));
175 result.objnormal = normalize(cross(dc_dU, dc_dV));
184 float3 light = normalize(float3(0, 1, -1));
187 // r.xyz = normalize(input.objpos + 2 * input.objnormal);
188 r.xyz = pseudoambient * saturate(dot(normalize(input.objnormal), normalize(input.objpos)));
189 r.xyz += saturate(dot(light, normalize(input.worldnormal))) * diffuse;
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/
H A Dd3d11spikysphere.hlsl107 return normalize(p * k.x + q * k.y + r * k.z);
170 float3 _u = normalize((abs(s.x) > abs(s.y)) ? float3(-s.z, 0, s.x) : float3(0, -s.z, s.y));
171 float3 _v = normalize(cross(s, _u));
175 result.objnormal = normalize(cross(dc_dU, dc_dV));
184 float3 light = normalize(float3(0, 1, -1));
187 // r.xyz = normalize(input.objpos + 2 * input.objnormal);
188 r.xyz = pseudoambient * saturate(dot(normalize(input.objnormal), normalize(input.objpos)));
189 r.xyz += saturate(dot(light, normalize(input.worldnormal))) * diffuse;
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dnormalizer2.h194 normalize(const UnicodeString &src, UErrorCode &errorCode) const { function in class:Normalizer2
196 normalize(src, result, errorCode);
213 normalize(const UnicodeString &src,
478 normalize(const UnicodeString &src,
640 normalize(const UnicodeString &src,
/external/icu/icu4c/source/common/unicode/
H A Dnormalizer2.h194 normalize(const UnicodeString &src, UErrorCode &errorCode) const { function in class:Normalizer2
196 normalize(src, result, errorCode);
213 normalize(const UnicodeString &src,
478 normalize(const UnicodeString &src,
640 normalize(const UnicodeString &src,
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x9/
H A DX9ECPoint.java21 this.p = p.normalize();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/agreement/
H A DECDHBasicAgreement.java45 ECPoint P = pub.getQ().multiply(key.getD()).normalize();

Completed in 495 milliseconds

1234567891011>>