HomeSort by relevance Sort by last modified time
    Searched full:precomputed (Results 1 - 25 of 406) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafPreCompInfo.java 10 * Array holding the precomputed <code>ECPoint</code>s used for a Window
16 * Array holding the negations of the precomputed <code>ECPoint</code>s used
23 * Window NAF multiplication to create or extend the precomputed values.
WTauNafPreCompInfo.java 10 * Array holding the precomputed <code>ECPoint.AbstractF2m</code>s used for the
FixedPointPreCompInfo.java 11 * Array holding the precomputed <code>ECPoint</code>s used for a fixed
  /external/icu/icu4c/source/tools/gencolusb/
README.md 5 precomputed data.
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Platform.java 26 // CharMatcher.precomputed() produces CharMatchers that are maybe a little
28 // choosing to turn .precomputed() into a no-op in GWT, because it doesn't
  /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...]
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewTest.java 252 PrecomputedText precomputed = local
264 mTextView.setText(precomputed);
268 mTextView.setText(precomputed);
277 PrecomputedText precomputed = local
290 mTextView.setText(precomputed, BufferType.SPANNABLE);
294 mTextView.setText(precomputed, BufferType.SPANNABLE);
303 PrecomputedText precomputed = local
315 mTextView.setText(precomputed, BufferType.EDITABLE);
319 mTextView.setText(precomputed, BufferType.EDITABLE);
  /prebuilts/go/darwin-x86/src/crypto/x509/
pkcs1.go 107 Dp: key.Precomputed.Dp,
108 Dq: key.Precomputed.Dq,
109 Qinv: key.Precomputed.Qinv,
112 priv.AdditionalPrimes = make([]pkcs1AdditionalRSAPrime, len(key.Precomputed.CRTValues))
113 for i, values := range key.Precomputed.CRTValues {
  /prebuilts/go/linux-x86/src/crypto/x509/
pkcs1.go 107 Dp: key.Precomputed.Dp,
108 Dq: key.Precomputed.Dq,
109 Qinv: key.Precomputed.Qinv,
112 priv.AdditionalPrimes = make([]pkcs1AdditionalRSAPrime, len(key.Precomputed.CRTValues))
113 for i, values := range key.Precomputed.CRTValues {
  /prebuilts/go/darwin-x86/src/crypto/rsa/
rsa.go 85 // Precomputed contains precomputed values that speed up private
87 Precomputed PrecomputedValues
152 // CRTValue contains the precomputed Chinese remainder theorem values.
450 if priv.Precomputed.Dp != nil {
454 priv.Precomputed.Dp = new(big.Int).Sub(priv.Primes[0], bigOne)
455 priv.Precomputed.Dp.Mod(priv.D, priv.Precomputed.Dp)
457 priv.Precomputed.Dq = new(big.Int).Sub(priv.Primes[1], bigOne)
458 priv.Precomputed.Dq.Mod(priv.D, priv.Precomputed.Dq
    [all...]
  /prebuilts/go/linux-x86/src/crypto/rsa/
rsa.go 85 // Precomputed contains precomputed values that speed up private
87 Precomputed PrecomputedValues
152 // CRTValue contains the precomputed Chinese remainder theorem values.
450 if priv.Precomputed.Dp != nil {
454 priv.Precomputed.Dp = new(big.Int).Sub(priv.Primes[0], bigOne)
455 priv.Precomputed.Dp.Mod(priv.D, priv.Precomputed.Dp)
457 priv.Precomputed.Dq = new(big.Int).Sub(priv.Primes[1], bigOne)
458 priv.Precomputed.Dq.Mod(priv.D, priv.Precomputed.Dq
    [all...]
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
FFT.java 29 private double[] cos; // precomputed cosine tables for FFT
30 private double[] sin; // precomputed sine tables for FFT
48 // precomputed tables
  /external/libchrome/crypto/
signature_creator.h 42 // Signs the precomputed |hash_alg| digest |data| using private |key| as
  /libcore/ojluni/src/main/java/java/security/interfaces/
DSAKeyPairGenerator.java 36 * precomputed p, q and g parameters and an instance of SecureRandom as
96 * p, q and g parameters. If it is false, the method uses precomputed
98 * precomputed parameters for that modulus length, an exception will be
113 * are no precomputed parameters for the requested modulus length.
  /external/skia/src/effects/
SkBlurMask.h 57 @param profile The precomputed 1D blur profile; initialized by ComputeBlurProfile below.
75 @param profile Precomputed blur profile computed by ComputeBlurProfile above.
  /external/skqp/src/effects/
SkBlurMask.h 57 @param profile The precomputed 1D blur profile; memory allocated by and managed by
76 @param profile Precomputed blur profile computed by ComputeBlurProfile above.
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
lca.go 12 // in O(n lg n) precomputed space and O(1) time per query.
113 // on the tour from p1 to p2. We've precomputed minimum
115 // Combine the right two precomputed values to get the answer.
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
lca.go 12 // in O(n lg n) precomputed space and O(1) time per query.
113 // on the tour from p1 to p2. We've precomputed minimum
115 // Combine the right two precomputed values to get the answer.
  /system/bt/stack/smp/
aes.h 35 #define AES_ENC_PREKEYED /* AES encryption with a precomputed key schedule */
38 #define AES_DEC_PREKEYED /* AES decryption with a precomputed key schedule */
73 /* The following calls are for a precomputed key schedule
  /external/python/cpython2/Doc/library/
bisect.rst 67 methods and support for a key-function. The keys are precomputed to save
137 Instead, it is better to search a list of precomputed keys to find the index
142 >>> keys = [r[1] for r in data] # precomputed list of keys
  /external/python/cpython3/Doc/library/
bisect.rst 65 methods and support for a key-function. The keys are precomputed to save
135 Instead, it is better to search a list of precomputed keys to find the index
140 >>> keys = [r[1] for r in data] # precomputed list of keys
  /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...]
  /prebuilts/go/darwin-x86/src/encoding/json/
example_test.go 222 // This example uses RawMessage to use a precomputed JSON during marshal.
224 h := json.RawMessage(`{"precomputed": true}`)
240 // "precomputed": true
  /prebuilts/go/linux-x86/src/encoding/json/
example_test.go 222 // This example uses RawMessage to use a precomputed JSON during marshal.
224 h := json.RawMessage(`{"precomputed": true}`)
240 // "precomputed": true

Completed in 2186 milliseconds

1 2 3 4 5 6 7 8 91011>>