HomeSort by relevance Sort by last modified time
    Searched full:normalized (Results 26 - 50 of 2497) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/eigen/doc/
Pitfalls.dox 29 auto C = u + (A*v).normalized();
32 where the normalized() method has to evaluate the expensive product A*v to avoid evaluating it twice. On the other hand, the following example is perfectly fine:
34 auto C = (u + (A*v).normalized()).eval();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
AutoCorrectionUtils.java 44 // TODO: when the normalized score of the first suggestion is nearly equals to
45 // the normalized score of the second suggestion, behave less aggressive.
49 Log.d(TAG, "Normalized " + consideredWord + "," + suggestion + ","
  /external/eigen/unsupported/test/
alignedvector3.cpp 55 VERIFY_IS_APPROX(f2.normalized(),r2.normalized());
57 VERIFY_IS_APPROX((f2+f1).normalized(),(r2+r1).normalized());
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
StringPool.java 33 * Returns a normalized instance that is equal to the given {@link String} .
37 * @return normalized instance or <code>null</code>
52 * Returns a modified version of the array with all string slots normalized.
58 * @return normalized instance or <code>null</code>
  /external/icu/icu4c/source/common/unicode/
normlzr.h 42 * - static functions that normalize strings or test if strings are normalized
44 * provides iteration over its normalized form
54 * The input text is not normalized all at once, but incrementally where needed
58 * However, if the entire text is normalized, then the iterator will be
61 * original text that is close to where the normalized characters come from.
71 * At any time, next() returns the next normalized code point (UChar32),
73 * previous() returns the previous normalized code point (UChar32),
79 * needs to be normalized, then these functions will do that.
84 * getIndex() always refers to the position in the input text where the normalized
105 * The normalized results is stored in an internal string buffer, an
    [all...]
  /external/tensorflow/tensorflow/contrib/losses/
README.md 25 Any parameter named `logit` should be the raw model outputs, not a normalized
27 `logit` _should_ be a normalized probability distribution.
  /external/tensorflow/tensorflow/core/api_def/base_api/
api_def_BatchNormWithGlobalNormalization.pbtxt 29 An offset to be added to the normalized tensor.
37 with the normalized tensor.
  /external/toolchain-utils/android_bench_suite/
fix_skia_results.py 62 Returns the unit name, and `ms` normalized to that time unit.
73 normalized = [float(t) * ms_mul / mul for t in ms]
74 average = sum(normalized) / len(normalized)
75 if all(n > 0.1 for n in normalized) and average >= 1:
76 return name, normalized
78 normalized = [float(t) * ms_mul for t in ms]
79 return 'ns', normalized
  /frameworks/rs/driver/
rsdVertexArray.h 43 bool normalized; member in class:RsdVertexArray::Attrib
48 void set(uint32_t type, uint32_t size, uint32_t stride, bool normalized, size_t offset, const char *name);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/lld/ReaderWriter/
YamlContext.h 22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/lld/ReaderWriter/
YamlContext.h 22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/lld/ReaderWriter/
YamlContext.h 22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/lld/ReaderWriter/
YamlContext.h 22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/lld/ReaderWriter/
YamlContext.h 22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/lld/ReaderWriter/
YamlContext.h 22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/lld/ReaderWriter/
YamlContext.h 22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/lld/ReaderWriter/
YamlContext.h 22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/lld/ReaderWriter/
YamlContext.h 22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/lld/ReaderWriter/
YamlContext.h 22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/lld/ReaderWriter/
YamlContext.h 22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/lld/ReaderWriter/
YamlContext.h 22 namespace normalized { namespace in namespace:lld::mach_o
27 using lld::mach_o::normalized::NormalizedFile;
  /toolchain/benchmark/
fix_skia_results.py 63 Returns the unit name, and `ms` normalized to that time unit.
74 normalized = [float(t) * ms_mul / mul for t in ms]
75 average = sum(normalized) / len(normalized)
76 if all(n > 0.1 for n in normalized) and average >= 1:
77 return name, normalized
79 normalized = [float(t) * ms_mul for t in ms]
80 return 'ns', normalized
  /external/icu/icu4c/source/i18n/
uitercollationiterator.cpp 133 } else if(state >= IN_NORM_ITER_AT_LIMIT && pos != normalized.length()) {
134 c = normalized[pos++];
154 U_ASSERT(pos < normalized.length());
156 if(U16_IS_TRAIL(trail = normalized[pos])) { ++pos; }
194 } else if(state >= IN_NORM_ITER_AT_LIMIT && pos != normalized.length()) {
195 c = normalized.char32At(pos);
248 c = normalized.char32At(pos - 1);
279 (state >= IN_NORM_ITER_AT_LIMIT && pos == normalized.length()));
293 // The input text segment needed to be normalized.
310 // Collect the characters being checked, in case they need to be normalized
    [all...]
utf8collationiterator.h 31 * Handles normalized UTF-8 text inline, with length or NUL-terminated.
59 * Valid lead surrogates are returned from inside a normalized text segment,
156 * The input text [start..limit[ failed the FCD check and was normalized.
157 * pos tracks the current index in the normalized string.
168 UnicodeString normalized; member in class:FCDUTF8CollationIterator
  /packages/apps/Dialer/java/com/android/dialer/smartdial/map/
SmartDialMap.java 29 * <p>The provided character is expected to be a normalized character. See {@link
39 * <p>The provided character is expected to be a normalized character. See {@link
56 * <p>The provided character is expected to be a normalized character. See {@link
77 * <p>The provided character is expected to be a normalized character. See {@link
99 * Returns a map in which each key is a normalized character and the corresponding value is a

Completed in 1490 milliseconds

12 3 4 5 6 7 8 91011>>