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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/opengl/tools/glgen/specs/gles11/
GLES10Ext.spec 1 GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
  /frameworks/base/opengl/tools/glgen/specs/jsr239/
glspec-1.0ext 1 GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/params/
RSAKeyParameters.java 9 private BigInteger exponent; field in class:RSAKeyParameters
14 BigInteger exponent)
19 this.exponent = exponent;
29 return exponent;
RSAKeyGenerationParameters.java 28 // public exponent cannot be even
32 throw new IllegalArgumentException("public exponent cannot be even");
  /libcore/luni/src/main/java/java/security/spec/
RSAPrivateCrtKeySpec.java 31 // Public Exponent
37 // Prime Exponent P
39 // Prime Exponent Q
46 * modulus, public exponent, private exponent, prime factors, prime
52 * the public exponent {@code e}.
54 * the private exponent {@code d}.
60 * the exponent of the prime {@code p}.
62 * the exponent of the prime {@code q}.
95 * Returns the exponent of the prime {@code p}
    [all...]
RSAKeyGenParameterSpec.java 28 * The value of the public exponent {@code F0} = 3.
33 * The value of the public exponent {@code F4} = 65537.
39 // Public Exponent
44 * and public exponent.
49 * the value of the public exponent.
66 * Returns the value of the public exponent.
68 * @return the value of the public exponent.
RSAPrivateKeySpec.java 32 // Private Exponent
37 * private exponent.
42 * the private exponent {@code e}
59 * Returns the private exponent {@code e}.
61 * @return the private exponent {@code e}.
RSAPublicKeySpec.java 32 // Public Exponent
37 * public exponent.
42 * the public exponent {@code d}.
59 * Returns the public exponent {@code d}.
61 * @return the public exponent {@code d}.
RSAMultiPrimePrivateCrtKeySpec.java 31 // Public Exponent
37 // Prime Exponent P
39 // Prime Exponent Q
48 * modulus, public exponent, private exponent, prime factors, prime
54 * the public exponent {@code e}.
56 * the private exponent {@code d}.
62 * the exponent of the prime {@code p}.
64 * the exponent of the prime {@code q}.
159 * Returns the exponent of the prime {@code p}
    [all...]
RSAOtherPrimeInfo.java 24 * exponent, and a Chinese Remainder Theorem (CRT) coefficient.
33 // Prime Exponent
40 * exponent, and CRT coefficient.
45 * the prime exponent.
84 * Returns the exponent.
86 * @return the exponent.
  /libcore/luni/src/main/java/java/security/interfaces/
RSAPrivateCrtKey.java 54 * Returns the CRT exponent of the primet {@code p}.
56 * @return the CRT exponent of the prime {@code p}.
61 * Returns the CRT exponent of the prime {@code q}.
63 * @return the CRT exponent of the prime {@code q}.
68 * Returns the public exponent {@code e}.
70 * @return the public exponent {@code e}.
RSAMultiPrimePrivateCrtKey.java 65 * Returns the CRT exponent of the prime {@code p}.
67 * @return the CRT exponent of the prime {@code p}.
72 * Returns the CRT exponent of the prime {@code q}.
74 * @return the CRT exponent of the prime {@code q}.
79 * Returns the public exponent {@code e}.
81 * @return the public exponent {@code e}.
RSAPrivateKey.java 34 * Returns the private exponent {@code d}.
36 * @return the private exponent {@code d}.
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
ieee754.h 37 unsigned int exponent:8; member in struct:ieee754_float::__anon14246
42 unsigned int exponent:8; member in struct:ieee754_float::__anon14246
52 unsigned int exponent:8; member in struct:ieee754_float::__anon14247
59 unsigned int exponent:8; member in struct:ieee754_float::__anon14247
65 #define IEEE754_FLOAT_BIAS 0x7f /* Added to exponent. */
77 unsigned int exponent:11; member in struct:ieee754_double::__anon14248
85 unsigned int exponent:11; member in struct:ieee754_double::__anon14248
92 unsigned int exponent:11; member in struct:ieee754_double::__anon14248
103 unsigned int exponent:11; member in struct:ieee754_double::__anon14249
112 unsigned int exponent:11
139 unsigned int exponent:15; member in struct:ieee854_long_double::__anon14250
146 unsigned int exponent:15; member in struct:ieee854_long_double::__anon14250
154 unsigned int exponent:15; member in struct:ieee854_long_double::__anon14250
166 unsigned int exponent:15; member in struct:ieee854_long_double::__anon14251
175 unsigned int exponent:15; member in struct:ieee854_long_double::__anon14251
187 unsigned int exponent:15; member in struct:ieee854_long_double::__anon14251
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLES10Ext.java 28 // C function GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
33 int[] exponent,
37 // C function GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
41 java.nio.IntBuffer exponent
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
HexStringParser.java 65 private long exponent; field in class:HexStringParser
112 exponent <<= MANTISSA_WIDTH;
113 return sign | exponent | mantissa;
141 * Parses the exponent field.
151 exponent = expSign * Long.parseLong(exponentStr);
154 exponent = expSign * Long.MAX_VALUE;
175 if (exponent >= MAX_EXPONENT) {
180 if (exponent <= MIN_EXPONENT) {
192 if (exponent >= 1) {
201 exponent = MAX_EXPONENT
    [all...]
  /frameworks/base/opengl/java/javax/microedition/khronos/opengles/
GL10Ext.java 27 int[] exponent,
33 java.nio.IntBuffer exponent
  /libcore/luni/src/main/native/
cbigint.h 27 /* IEEE floats consist of: sign bit, exponent field, significand field
28 single: 31 = sign bit, 30..23 = exponent (8 bits), 22..0 = significand (23 bits)
29 double: 63 = sign bit, 62..52 = exponent (11 bits), 51..0 = significand (52 bits)
30 inf == (all exponent bits set) and (all mantissa bits clear)
31 nan == (all exponent bits set) and (at least one mantissa bit set)
32 finite == (at least one exponent bit clear)
33 zero == (all exponent bits clear) and (all mantissa bits clear)
34 denormal == (all exponent bits clear) and (at least one mantissa bit set)
  /frameworks/base/voip/jni/rtp/
G711Codec.cpp 60 int exponent = gExponents[sample >> 8]; local
61 int mantissa = (sample >> (exponent + 3)) & 0x0F;
62 ulaws[i] = ~(sign | (exponent << 4) | mantissa);
72 int exponent = (ulaw >> 4) & 0x07; local
74 int sample = (((mantissa << 3) + 132) << exponent) - 132;
107 int exponent = gExponents[sample >> 8]; local
108 int mantissa = (sample >> (exponent == 0 ? 4 : exponent + 3)) & 0x0F;
109 alaws[i] = (sign | (exponent << 4) | mantissa) ^ 0xD5;
119 int exponent = (alaw >> 4) & 0x07 local
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
log2.c 41 * normalized, and exp is the normalisation exponent
48 * 1- exponent = 30-norm_exponent
59 Word16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
67 *exponent = 0;
71 *exponent = (30 - exp);
100 Word16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
107 Log2_norm ((L_x << exp), exp, exponent, fraction);
  /frameworks/base/core/jni/
android_opengl_GLES10Ext.cpp 127 /* GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent ) */
138 GLint *exponent = (GLint *) 0; local
162 _env->ThrowNew(IAEClass, "exponent == null");
178 exponent = exponent_base + exponentOffset;
182 (GLint *)exponent
197 /* GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent ) */
208 GLint *exponent = (GLint *) 0; local
216 exponent = (GLint *)getPointer(_env, exponent_buf, &_exponentArray, &_exponentRemaining);
224 (GLint *)exponent
229 releasePointer(_env, _mantissaArray, exponent, _exception ? JNI_FALSE : JNI_TRUE)
    [all...]
  /libcore/luni/src/main/java/javax/crypto/spec/
DHGenParameterSpec.java 38 * the size of the <i>random exponent</i> in bits.
55 * Returns the size of the <i>random exponent</i> in bits.
57 * @return the size of the random exponent in bits.
DHParameterSpec.java 50 * <i>random exponent</i>.
57 * the size of the random exponent (in bits).
84 * Returns the size (in bits) of the <i>random exponent</i>.
86 * @return the size (in bits) of the random exponent.
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCERSAPrivateCrtKey.java 136 * return the public exponent.
138 * @return the public exponent.
166 * return the prime exponent for P.
168 * @return the prime exponent for P.
176 * return the prime exponent for Q.
178 * @return the prime exponent for Q.
233 buf.append(" public exponent: ").append(this.getPublicExponent().toString(16)).append(nl);
234 buf.append(" private exponent: ").append(this.getPrivateExponent().toString(16)).append(nl);
  /frameworks/base/media/libstagefright/codecs/amrwbenc/inc/
log2.h 49 Word16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */
56 Word16 *exponent, /* (o) : Integer part of Log2. (range: 0<=val<=30) */

Completed in 563 milliseconds

1 2 3 4 5 6 7 8 91011>>