HomeSort by relevance Sort by last modified time
    Searched refs:normalize (Results 201 - 225 of 1394) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/linux-x86/src/math/
ldexp.go 24 frac, e := normalize(frac)
logb.go 48 x, exp := normalize(x)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
ECDomainParameters.java 44 this.G = G.normalize();
  /external/eigen/bench/
quat_slerp.cpp 171 a.normalize();
173 b.normalize();
222 a.normalize();
224 b.normalize();
  /external/icu/icu4c/source/i18n/
uitercollationiterator.h 114 UBool normalize(const UnicodeString &s, UErrorCode &errorCode);
utf8collationiterator.h 135 UBool normalize(const UnicodeString &s, UErrorCode &errorCode);
  /external/replicaisland/src/com/replica/replicaisland/
BackgroundCollisionComponent.java 131 * 4. Add the normals of the surfaces that were hit up and normalize the result to produce
192 mHorizontalHitNormal.normalize();
196 mHorizontalHitNormal.normalize();
204 mVerticalHitNormal.normalize();
208 mVerticalHitNormal.normalize();
311 mMergedNormal.normalize();
Vector2.java 100 public final float normalize() { method in class:Vector2
  /external/tensorflow/tensorflow/contrib/image/kernels/
single_image_random_dot_stereograms_ops.cc 52 bool normalize; member in class:tensorflow::SingleImageRandomDotStereogramsOp
88 OP_REQUIRES_OK(context, context->GetAttr("normalize", &normalize));
179 if (normalize) {
202 if (normalize) {
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 84 public Point normalize() { method in class:Point
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
PageRangeUtils.java 84 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/
ObjectLinker.h 49 /// normalize - normalize the input files
50 void normalize();
  /frameworks/native/libs/math/include/math/
TQuatHelpers.h 190 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));
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 450 * be used. If the parameter "normalize-characters" of the
453 * will also fully normalize the characters of the <code>Text</code>
456 * <code>CDATASections</code>, the normalize operation alone may not be
461 public void normalize(); method in interface:Node
    [all...]
  /libcore/ojluni/src/main/java/java/io/
FileSystem.java 53 public abstract String normalize(String path); method in class:FileSystem
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameNormalizer.java 77 public static String normalize(String name) { method in class:NameNormalizer
  /packages/services/Telephony/src/com/android/phone/
DataUsagePreference.java 79 return NetworkTemplate.normalize(mobileAll,
  /system/libhidl/vintfdata/
Android.mk 80 -i $(call normalize-path-list,$(PRIVATE_FRAMEWORK_MANIFEST_INPUT_FILES)) \
  /tools/tradefederation/core/src/com/android/tradefed/config/gcs/
GCSConfigurationFactory.java 101 * Help method to get file's path from its parent and filename. This is mainly for normalize
109 return Paths.get(parent).getParent().resolve(filename).normalize().toString();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pep277.py 4 from unicodedata import normalize
90 return normalize(self.normal_form, s)
125 # Skip the test on darwin, because darwin does normalize the filename to
126 # NFD (a variant of Unicode NFD form). Normalize the filename to NFC, NFKC,
127 # NFKD in Python is useless, because darwin will normalize it later and so
134 others |= set(normalize(nf, file) for file in files)
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
XMLRecordWriter.java 131 public static String normalize(String str) { method in class:XMLRecordWriter
199 internalString(name, normalize(value));
207 String value = normalize(values[i]);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
XMLRecordWriter.java 127 public static String normalize(String str) { method in class:XMLRecordWriter
195 internalString(name, normalize(value));
203 String value = normalize(values[i]);
  /external/lisa/tools/analysis/
runnable.py 38 parser.add_argument('--normalize', dest='normalize', action='store_true', default=False,
39 help='normalize time')
42 help='normalize time')
72 normalize = False # Normalize with the base timestamp variable
88 # basetime = time if (normalize and not basetime) else basetime
89 # time = time - basetime if normalize else time
145 # basetime = time if (normalize and not basetime) else basetime
146 # time = time - basetime if normalize else tim
    [all...]
  /external/python/cpython2/Lib/ctypes/test/
test_pep3118.py 12 def normalize(format): function
27 self.assertEqual(normalize(v.format), normalize(fmt))
  /external/python/cpython2/Lib/test/
test_pep277.py 4 from unicodedata import normalize
90 return normalize(self.normal_form, s)
125 # Skip the test on darwin, because darwin does normalize the filename to
126 # NFD (a variant of Unicode NFD form). Normalize the filename to NFC, NFKC,
127 # NFKD in Python is useless, because darwin will normalize it later and so
134 others |= set(normalize(nf, file) for file in files)

Completed in 2038 milliseconds

1 2 3 4 5 6 7 891011>>