/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
CharMatcherTest.java | 110 reallyTestEmpty(matcher.precomputed()); 158 reallyTestNoMatches(matcher.precomputed(), s); 159 reallyTestAllMatches(matcher.negate().precomputed(), s); 160 reallyTestAllMatches(matcher.precomputed().negate(), s); 185 reallyTestAllMatches(matcher.precomputed(), s); 186 reallyTestNoMatches(matcher.negate().precomputed(), s); 187 reallyTestNoMatches(matcher.precomputed().negate(), s); 260 reallyTestOneCharMatch(matcher.precomputed(), s); 261 reallyTestOneCharNoMatch(matcher.negate().precomputed(), s); 262 reallyTestOneCharNoMatch(matcher.precomputed().negate(), s) [all...] |
/external/guava/guava-tests/test/com/google/common/base/ |
CharMatcherTest.java | 173 reallyTestEmpty(matcher.precomputed()); 227 reallyTestNoMatches(matcher.precomputed(), s); 228 reallyTestAllMatches(matcher.negate().precomputed(), s); 229 reallyTestAllMatches(matcher.precomputed().negate(), s); 254 reallyTestAllMatches(matcher.precomputed(), s); 255 reallyTestNoMatches(matcher.negate().precomputed(), s); 256 reallyTestNoMatches(matcher.precomputed().negate(), s); 329 reallyTestOneCharMatch(matcher.precomputed(), s); 330 reallyTestOneCharNoMatch(matcher.negate().precomputed(), s); 331 reallyTestOneCharNoMatch(matcher.precomputed().negate(), s) [all...] |
/external/v8/test/cctest/ |
test-bignum-dtoa.cc | 263 Vector<const PrecomputedShortest> precomputed = local 265 for (int i = 0; i < precomputed.length(); ++i) { 266 const PrecomputedShortest current_test = precomputed[i]; 281 Vector<const PrecomputedFixed> precomputed = local 283 for (int i = 0; i < precomputed.length(); ++i) { 284 const PrecomputedFixed current_test = precomputed[i]; 302 Vector<const PrecomputedPrecision> precomputed = local 304 for (int i = 0; i < precomputed.length(); ++i) { 305 const PrecomputedPrecision current_test = precomputed[i];
|
test-dtoa.cc | 274 Vector<const PrecomputedShortest> precomputed = local 276 for (int i = 0; i < precomputed.length(); ++i) { 277 const PrecomputedShortest current_test = precomputed[i]; 280 CHECK_EQ(0, sign); // All precomputed numbers are positive. 294 Vector<const PrecomputedFixed> precomputed = local 296 for (int i = 0; i < precomputed.length(); ++i) { 297 const PrecomputedFixed current_test = precomputed[i]; 301 CHECK_EQ(0, sign); // All precomputed numbers are positive. 317 Vector<const PrecomputedPrecision> precomputed = local 319 for (int i = 0; i < precomputed.length(); ++i) [all...] |
test-fast-dtoa.cc | 237 Vector<const PrecomputedShortest> precomputed = local 239 for (int i = 0; i < precomputed.length(); ++i) { 240 const PrecomputedShortest current_test = precomputed[i]; 268 Vector<const PrecomputedPrecision> precomputed = local 270 for (int i = 0; i < precomputed.length(); ++i) { 271 const PrecomputedPrecision current_test = precomputed[i]; 286 // The precomputed numbers contain many entries with many requested
|
test-fixed-dtoa.cc | 499 Vector<const PrecomputedFixed> precomputed = local 501 for (int i = 0; i < precomputed.length(); ++i) { 502 const PrecomputedFixed current_test = precomputed[i];
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
CharMatcher.java | 238 anyOf(" \r\n\t\u3000\u00A0\u2007\u202F").precomputed(); 303 @Override public CharMatcher precomputed() { 369 @Override public CharMatcher precomputed() { 401 @Override public CharMatcher precomputed() { method in class:CharMatcher 452 @Override public CharMatcher precomputed() { 504 @Override public CharMatcher precomputed() { 635 * precomputed matcher is queried many thousands of times. 638 * it's unclear whether a precomputed matcher is faster, but it certainly 642 public CharMatcher precomputed() { 647 * This is the actual implementation of {@link #precomputed}, but we bounc [all...] |
/external/guava/guava-tests/benchmark/com/google/common/base/ |
CharMatcherBenchmark.java | 51 // Whether to use a precomputed CharMatcher 52 @Param("true") boolean precomputed; field in class:CharMatcherBenchmark 73 this.matcher = precomputed ? config.matcher.precomputed() : config.matcher; [all...] |
/external/jemalloc/include/jemalloc/internal/ |
smoothstep.sh | 65 * This header defines a precomputed table based on the smoothstep family of
|
/external/guava/guava/src/com/google/common/base/ |
CharMatcher.java | 493 // TODO(user): is it potentially worth just going ahead and building a precomputed matcher? 758 * worthwhile only if the precomputed matcher is queried many thousands of times. 761 * precomputed matcher is faster, but it certainly consumes more memory, which doesn't seem like a 764 public CharMatcher precomputed() { 781 * This is the actual implementation of {@link #precomputed}, but we bounce calls through a 823 public final CharMatcher precomputed() { 843 public final CharMatcher precomputed() { [all...] |
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
CharMatcher.java | 478 // TODO(user): is it potentially worth just going ahead and building a precomputed matcher? 697 * worthwhile only if the precomputed matcher is queried many thousands of times. 700 * precomputed matcher is faster, but it certainly consumes more memory, which doesn't seem like a 703 public CharMatcher precomputed() { 732 public final CharMatcher precomputed() { 752 public final CharMatcher precomputed() { [all...] |
/external/guava/guava/src/com/google/common/io/ |
BaseEncoding.java | 820 this.separatorChars = CharMatcher.anyOf(separator).precomputed();
|
/external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/ |
BaseEncoding.java | 763 this.separatorChars = CharMatcher.anyOf(separator).precomputed();
|
/prebuilts/go/darwin-x86/src/crypto/rsa/ |
rsa.go | 67 // Precomputed contains precomputed values that speed up private 69 Precomputed PrecomputedValues 132 // CRTValue contains the precomputed Chinese remainder theorem values. 403 if priv.Precomputed.Dp != nil { 407 priv.Precomputed.Dp = new(big.Int).Sub(priv.Primes[0], bigOne) 408 priv.Precomputed.Dp.Mod(priv.D, priv.Precomputed.Dp) 410 priv.Precomputed.Dq = new(big.Int).Sub(priv.Primes[1], bigOne) 411 priv.Precomputed.Dq.Mod(priv.D, priv.Precomputed.Dq [all...] |
/prebuilts/go/linux-x86/src/crypto/rsa/ |
rsa.go | 67 // Precomputed contains precomputed values that speed up private 69 Precomputed PrecomputedValues 132 // CRTValue contains the precomputed Chinese remainder theorem values. 403 if priv.Precomputed.Dp != nil { 407 priv.Precomputed.Dp = new(big.Int).Sub(priv.Primes[0], bigOne) 408 priv.Precomputed.Dp.Mod(priv.D, priv.Precomputed.Dp) 410 priv.Precomputed.Dq = new(big.Int).Sub(priv.Primes[1], bigOne) 411 priv.Precomputed.Dq.Mod(priv.D, priv.Precomputed.Dq [all...] |
/prebuilts/go/darwin-x86/src/crypto/cipher/ |
gcm.go | 219 // one of the precomputed multiples of H.
|
/prebuilts/go/linux-x86/src/crypto/cipher/ |
gcm.go | 219 // one of the precomputed multiples of H.
|
/prebuilts/go/darwin-x86/src/crypto/elliptic/ |
p256.go | 112 // p256Precomputed contains precomputed values to aid the calculation of scalar [all...] |
/prebuilts/go/linux-x86/src/crypto/elliptic/ |
p256.go | 112 // p256Precomputed contains precomputed values to aid the calculation of scalar [all...] |
/prebuilts/devtools/tools/lib/ |
guava-13.0.1.jar | |
/prebuilts/tools/common/guava-tools/ |
guava-13.0.1.jar | |
/prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/ |
guava-13.0.1.jar | |
/external/owasp/sanitizer/distrib/lib/ |
guava.jar | |
/external/owasp/sanitizer/lib/guava-libraries/ |
guava.jar | |
/external/testng/ant/3rdparty/ |
doclava-1.0.3.jar | |