| /external/compiler-rt/lib/builtins/ |
| divdf3.c | 68 if (aAbs < implicitBit) scale += normalize(&aSignificand); 69 if (bAbs < implicitBit) scale -= normalize(&bSignificand); 73 // denormal path it was already set by normalize( ), but setting it twice
|
| divsf3.c | 68 if (aAbs < implicitBit) scale += normalize(&aSignificand); 69 if (bAbs < implicitBit) scale -= normalize(&bSignificand); 73 // denormal path it was already set by normalize( ), but setting it twice
|
| /frameworks/base/libs/hwui/ |
| Vector.h | 77 void normalize() { function in struct:android::uirenderer::Vector2 85 v.normalize();
|
| /libcore/luni/src/main/java/javax/xml/datatype/ |
| XMLGregorianCalendar.java | 645 * <p>Normalize this instance to UTC.</p> 652 public abstract XMLGregorianCalendar normalize(); method in class:XMLGregorianCalendar 690 gc = this.normalize(); [all...] |
| /prebuilts/go/darwin-x86/src/math/ |
| frexp.go | 26 f, exp = normalize(f)
|
| /prebuilts/go/linux-x86/src/math/ |
| frexp.go | 26 f, exp = normalize(f)
|
| /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/ |
| NormalizerPerformanceTest.java | 35 Normalizer.normalize(NFDFileLines[i], Normalizer.NFC); 53 Normalizer.normalize(NFCFileLines[i], Normalizer.NFC); 71 Normalizer.normalize(fileLines[i], Normalizer.NFC); 90 Normalizer.normalize(NFDFileLines[i], Normalizer.NFD); 108 Normalizer.normalize(NFCFileLines[i], Normalizer.NFD); 126 Normalizer.normalize(fileLines[i], Normalizer.NFD); 242 Normalizer.normalize(NFDFileLines[i], Normalizer.FCD); 260 Normalizer.normalize(NFCFileLines[i], Normalizer.FCD); 278 Normalizer.normalize(fileLines[i], Normalizer.FCD); 634 dest[i] = Normalizer.normalize(src[i], mode) [all...] |
| /build/make/target/board/ |
| Android.mk | 49 -i $(call normalize-path-list,$(PRIVATE_DEVICE_MANIFEST_FILE))
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
| test_unicode_file.py | 69 # Normalize the unicode strings, as round-tripping the name via the OS
71 base = unicodedata.normalize("NFD", base)
72 file_list = [unicodedata.normalize("NFD", f) for f in file_list]
131 cwd_result = unicodedata.normalize("NFD", cwd_result)
132 name_result = unicodedata.normalize("NFD", name_result)
|
| /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/agreement/ |
| ECDHBasicAgreement.java | 67 ECPoint P = pubPoint.multiply(key.getD()).normalize();
|
| /external/clang/unittests/CodeGen/ |
| BufferSourceTest.cpp | 49 compiler.getTargetOpts().Triple = llvm::Triple::normalize(
|
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/ |
| UnicodeNormalizerConformanceTest.java | 158 out = normalizer_C.normalize(field[i]); 161 out = normalizer_D.normalize(field[i]); 165 out = normalizer_KC.normalize(field[i]); 168 out = normalizer_KD.normalize(field[i]);
|
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
| UnicodeNormalizerConformanceTest.java | 155 out = normalizer_C.normalize(field[i]); 158 out = normalizer_D.normalize(field[i]); 162 out = normalizer_KC.normalize(field[i]); 165 out = normalizer_KD.normalize(field[i]);
|
| /external/llvm/unittests/ExecutionEngine/MCJIT/ |
| MCJITTestAPICommon.h | 52 HostTriple = Triple::normalize(HostTriple);
|
| /external/python/cpython2/Lib/test/ |
| test_unicode_file.py | 69 # Normalize the unicode strings, as round-tripping the name via the OS 71 base = unicodedata.normalize("NFD", base) 72 file_list = [unicodedata.normalize("NFD", f) for f in file_list] 129 cwd_result = unicodedata.normalize("NFD", cwd_result) 130 name_result = unicodedata.normalize("NFD", name_result)
|
| /external/python/cpython3/Lib/test/ |
| test_unicode_file.py | 47 # Normalize the unicode strings, as round-tripping the name via the OS 49 base = unicodedata.normalize("NFD", base) 50 file_list = [unicodedata.normalize("NFD", f) for f in file_list] 93 cwd_result = unicodedata.normalize("NFD", cwd_result) 94 name_result = unicodedata.normalize("NFD", name_result)
|
| /external/skia/src/core/ |
| SkPoint3.cpp | 46 bool SkPoint3::normalize() { function in class:SkPoint3
|
| /external/skia/src/gpu/glsl/ |
| GrGLSLPrimitiveProcessor.cpp | 21 if (coordTransform.normalize()) {
|
| /external/skia/tests/ |
| PathOpsLineParametetersTest.cpp | 67 lineParameters.normalize();
|
| /external/skqp/src/core/ |
| SkPoint3.cpp | 46 bool SkPoint3::normalize() { function in class:SkPoint3
|
| /external/skqp/src/gpu/glsl/ |
| GrGLSLPrimitiveProcessor.cpp | 21 if (coordTransform.normalize()) {
|
| /external/skqp/tests/ |
| PathOpsLineParametetersTest.cpp | 67 lineParameters.normalize();
|
| /external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/ |
| sample_stats_test.py | 50 # Setting normalize = True means we divide by zero. 52 x_ph, axis=1, center=False, normalize=False) 68 # Setting normalize = True means we divide by zero. 70 x_ph, axis=1, normalize=False, center=True) 79 self, x, axis, max_lags, center, normalize): 96 if normalize: 105 normalize=normalize) 117 x, axis=-1, max_lags=None, center=False, normalize=False) 124 x, axis=-2, max_lags=None, center=False, normalize=False [all...] |
| /external/tensorflow/tensorflow/python/keras/_impl/keras/utils/ |
| np_utils.py | 53 @tf_export('keras.utils.normalize') 54 def normalize(x, axis=-1, order=2): function 58 x: Numpy array to normalize. 59 axis: axis along which to normalize.
|
| /external/vulkan-validation-layers/libs/glm/detail/ |
| func_geometric.hpp | 102 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/normalize.xml">GLSL normalize man page</a> 105 GLM_FUNC_DECL genType normalize(
|