Home
last modified time | relevance | path

Searched refs:z (Results 1 – 25 of 40) sorted by relevance

12

/dalvik/dx/tests/056-dex-call-interface/
DBlort.java19 public static int test(Zorch z, double d) { in test() argument
20 z.zorch1(); in test()
21 z.zorch2(d); in test()
22 int x = z.zorch3(z); in test()
23 int y = (int) z.zorch4(); in test()
/dalvik/dx/tests/047-dex-wide-args/
DBlort.java19 public static long test1(int w, long x, int y, long z) { in test1() argument
20 return w + x + y + z; in test1()
23 public static long test2(long w, int x, long y, int z) { in test2() argument
24 return w + x + y + z; in test2()
/dalvik/dx/tests/057-dex-call-virtual/
DBlort.java19 public static int test(Zorch z) { in test() argument
20 z.zorch1(); in test()
21 return z.zorch2(5); in test()
/dalvik/libcore/luni/src/main/java/java/util/
DTimer.java102 void insert(TimerNode z) { in insert() argument
106 if (z.task.getWhen() < x.task.getWhen()) { in insert()
112 z.parent = y; in insert()
114 root = z; in insert()
115 } else if (z.task.getWhen() < y.task.getWhen()) { in insert()
116 y.left = z; in insert()
118 y.right = z; in insert()
122 void delete(TimerNode z) { in delete() argument
124 if (z.left == null || z.right == null) { in delete()
125 y = z; in delete()
[all …]
DArrays.java1644 byte x = array[a], y = array[b], z = array[c]; in med3()
1645 return x < y ? (y < z ? b : (x < z ? c : a)) : (y > z ? b : (x > z ? c in med3()
1650 char x = array[a], y = array[b], z = array[c]; in med3() local
1651 return x < y ? (y < z ? b : (x < z ? c : a)) : (y > z ? b : (x > z ? c in med3()
1656 double x = array[a], y = array[b], z = array[c]; in med3() local
1657 return lessThan(x, y) ? (lessThan(y, z) ? b : (lessThan(x, z) ? c : a)) in med3()
1658 : (lessThan(z, y) ? b : (lessThan(z, x) ? c : a)); in med3()
1662 float x = array[a], y = array[b], z = array[c]; in med3() local
1663 return lessThan(x, y) ? (lessThan(y, z) ? b : (lessThan(x, z) ? c : a)) in med3()
1664 : (lessThan(z, y) ? b : (lessThan(z, x) ? c : a)); in med3()
[all …]
DTreeMap.java1258 void rbDelete(Entry<K, V> z) {
1259 Entry<K, V> y = z.left == null || z.right == null ? z : successor(z);
1272 if (y != z) {
1273 z.key = y.key;
1274 z.value = y.value;
1308 Entry<K, V> z = new Entry<K, V>(object);
1310 return root = z;
1312 z.parent = y;
1314 y.left = z;
1316 y.right = z;
[all …]
/dalvik/dx/tests/110-dex-preserve-this/
DBlort.java19 Object z = ""; in test() local
21 if (z instanceof Integer) { in test()
/dalvik/dx/tests/062-dex-synch-method/
DBlort.java27 public synchronized int testInstance3(int x, int y, int z) { in testInstance3() argument
51 public static synchronized int testStatic3(int x, int y, int z) { in testStatic3() argument
/dalvik/libcore/luni/src/main/native/
DcommonDblParce.c142 jdouble z);
426 doubleAlgorithm (JNIEnv * env, U_64 * f, IDATA length, jint e, jdouble z) in doubleAlgorithm() argument
439 m = doubleMantissa (z); in doubleAlgorithm()
440 k = doubleExponent (z); in doubleAlgorithm()
539 DECREMENT_DOUBLE (z, decApproxCount, incApproxCount); in doubleAlgorithm()
557 DECREMENT_DOUBLE (z, decApproxCount, incApproxCount); in doubleAlgorithm()
566 DECREMENT_DOUBLE (z, decApproxCount, incApproxCount); in doubleAlgorithm()
571 INCREMENT_DOUBLE (z, decApproxCount, incApproxCount); in doubleAlgorithm()
577 DECREMENT_DOUBLE (z, decApproxCount, incApproxCount); in doubleAlgorithm()
581 if (DOUBLE_TO_LONGBITS (z) == INFINITE_LONGBITS) in doubleAlgorithm()
[all …]
Dcbigint.h36 U_64 doubleMantissa (jdouble z);
42 IDATA doubleExponent (jdouble z);
55 UDATA floatMantissa (jfloat z);
58 IDATA floatExponent (jfloat z);
Dorg_apache_harmony_luni_util_fltparse.c53 jfloat z);
355 floatAlgorithm (JNIEnv * env, U_64 * f, IDATA length, jint e, jfloat z) in floatAlgorithm() argument
369 m = floatMantissa (z); in floatAlgorithm()
370 k = floatExponent (z); in floatAlgorithm()
469 DECREMENT_FLOAT (z, decApproxCount, incApproxCount); in floatAlgorithm()
487 DECREMENT_FLOAT (z, decApproxCount, incApproxCount); in floatAlgorithm()
496 DECREMENT_FLOAT (z, decApproxCount, incApproxCount); in floatAlgorithm()
501 INCREMENT_FLOAT (z, decApproxCount, incApproxCount); in floatAlgorithm()
507 DECREMENT_FLOAT (z, decApproxCount, incApproxCount); in floatAlgorithm()
511 if (FLOAT_TO_INTBITS (z) == EXPONENT_MASK) in floatAlgorithm()
[all …]
Dcbigint.c772 doubleMantissa (jdouble z) in doubleMantissa() argument
774 U_64 m = DOUBLE_TO_LONGBITS (z); in doubleMantissa()
785 doubleExponent (jdouble z) in doubleExponent() argument
788 IDATA k = HIGH_U32_FROM_VAR (z) >> 20; in doubleExponent()
799 floatMantissa (jfloat z) in floatMantissa() argument
801 UDATA m = (UDATA) FLOAT_TO_INTBITS (z); in floatMantissa()
812 floatExponent (jfloat z) in floatExponent() argument
815 IDATA k = FLOAT_TO_INTBITS (z) >> 23; in floatExponent()
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/encodings/
DISO9796d1Encoding.java147 int z = inLen; in encodeBlock() local
150 for (int i = 0; i < t; i += z) in encodeBlock()
152 if (i > t - z) in encodeBlock()
159 System.arraycopy(in, inOff, block, block.length - (i + z), z); in encodeBlock()
172 block[block.length - 2 * z] ^= r; in encodeBlock()
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/engines/
DIESEngine.java98 byte[] z) in decryptBlock() argument
103 KDFParameters kParam = new KDFParameters(z, param.getDerivationV()); in decryptBlock()
169 byte[] z) in encryptBlock() argument
174 KDFParameters kParam = new KDFParameters(z, param.getDerivationV()); in encryptBlock()
234 BigInteger z = agree.calculateAgreement(pubParam); in processBlock() local
238 return encryptBlock(in, inOff, inLen, z.toByteArray()); in processBlock()
242 return decryptBlock(in, inOff, inLen, z.toByteArray()); in processBlock()
/dalvik/libcore/security/src/main/java/org/bouncycastle/crypto/digests/
DSHA224Digest.java238 int z) in Ch() argument
240 return ((x & y) ^ ((~x) & z)); in Ch()
246 int z) in Maj() argument
248 return ((x & y) ^ (x & z) ^ (y & z)); in Maj()
DSHA256Digest.java240 int z) in Ch() argument
242 return (x & y) ^ ((~x) & z); in Ch()
248 int z) in Maj() argument
250 return (x & y) ^ (x & z) ^ (y & z); in Maj()
DLongDigest.java312 long z) in Ch() argument
314 return ((x & y) ^ ((~x) & z)); in Ch()
320 long z) in Maj() argument
322 return ((x & y) ^ (x & z) ^ (y & z)); in Maj()
/dalvik/libdex/
Dsha1.c126 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
127 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
128 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); argument
129 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); argument
130 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30); argument
/dalvik/tests/003-omnibus-opcodes/src/
DIntMath.java370 static void divideByZero(int z) { in divideByZero() argument
374 int x = 100 / z; in divideByZero()
380 int x = 100 % z; in divideByZero()
386 long x = 100L / z; in divideByZero()
392 long x = 100L % z; in divideByZero()
/dalvik/libcore/annotation/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
DTestAnnotation3b.java16 boolean z() default false; in z() method
DTestAnnotation3.java16 boolean z() default false; in z() method
DAnnotationTest.java187 @TestAnnotation3(z = false)
189 @TestAnnotation3(z = false)
194 @TestAnnotation3(z = true)
196 @TestAnnotation3(z = true)
199 @TestAnnotation3(z = false)
201 @TestAnnotation3(z = true)
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
DSerializationTestClass.java167 boolean z; field in SerializationTestClass.TestFieldSignatures
230 public TestConstructorSignature(boolean z, byte b, char c, short s, in TestConstructorSignature() argument
292 public void method(boolean z, byte b, char c, short s, int i, float f, in method() argument
/dalvik/vm/mterp/x86/
DOP_CMPG_DOUBLE.S18 fucompp # z if equal, p set if NaN, c set if st0 < st1
/dalvik/vm/
DCommon.h87 u1 z; member

12