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

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava-tests/test/com/google/common/primitives/
LongsTest.java 35 * Unit test for {@link Longs}.
57 ((Long) value).hashCode(), Longs.hashCode(value));
67 Longs.compare(x, y));
73 assertFalse(Longs.contains(EMPTY, (long) 1));
74 assertFalse(Longs.contains(ARRAY1, (long) 2));
75 assertFalse(Longs.contains(ARRAY234, (long) 1));
76 assertTrue(Longs.contains(new long[] {(long) -1}, (long) -1));
77 assertTrue(Longs.contains(ARRAY234, (long) 2));
78 assertTrue(Longs.contains(ARRAY234, (long) 3));
79 assertTrue(Longs.contains(ARRAY234, (long) 4))
    [all...]
LongArrayAsListTest.java 37 * Test suite covering {@link Longs#asList(long[])}.
49 return Longs.asList(temp);
56 .named("Longs.asList"),
59 .named("Longs.asList, head subList"),
62 .named("Longs.asList, tail subList"),
65 .named("Longs.asList, middle subList")
  /bionic/libc/arch-mips/include/machine/
setjmp.h 8 #define _JBLEN 157 /* size, in longs, of a jmp_buf */
  /development/ndk/platforms/android-9/arch-mips/include/machine/
setjmp.h 8 #define _JBLEN 157 /* size, in longs, of a jmp_buf */
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/machine/
setjmp.h 8 #define _JBLEN 157 /* size, in longs, of a jmp_buf */
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/machine/
setjmp.h 8 #define _JBLEN 157 /* size, in longs, of a jmp_buf */
  /libcore/luni/src/test/java/libcore/java/util/
BitSetTest.java 36 private static void assertBitSet(BitSet bs, long[] longs, String s) {
37 for (int i = 0; i < 64 * longs.length; ++i) {
38 assertEquals(bs.toString(), ((longs[i / 64] & (1L << (i % 64))) != 0), bs.get(i));
41 for (int i = 0; i < longs.length; ++i) {
42 cardinality += Long.bitCount(longs[i]);
50 assertEquals(64 * longs.length, bs.size());
54 private static void assertBitSet(long[] longs, String s) {
56 assertBitSet(BitSet.valueOf(longs), longs, s); local
58 assertBitSet(BitSet.valueOf(LongBuffer.wrap(longs)), longs, s) local
63 assertBitSet(BitSet.valueOf(LongBuffer.wrap(paddedLongs, 1, longs.length)), longs, s); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
ArrayTest.java 29 private static long[] longs; field in class:ArrayTest
40 longs = new long[] { 0xffffffffffffffffL };
51 try { Array.getBoolean(longs, 0); fail(); } catch (IllegalArgumentException expected) {}
63 try { Array.getByte(longs, 0); fail(); } catch (IllegalArgumentException expected) {}
75 try { Array.getChar(longs, 0); fail(); } catch (IllegalArgumentException expected) {}
87 assertEquals((double) longs[0], Array.getDouble(longs, 0));
99 assertEquals((float) longs[0], Array.getFloat(longs, 0));
111 try { Array.getInt(longs, 0); fail(); } catch (IllegalArgumentException expected) {
    [all...]
  /bionic/libc/arch-x86/include/machine/
setjmp.h 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
  /development/ndk/platforms/android-9/arch-x86/include/machine/
setjmp.h 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/machine/
setjmp.h 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/machine/
setjmp.h 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/machine/
setjmp.h 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/machine/
setjmp.h 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/machine/
setjmp.h 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/machine/
setjmp.h 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/machine/
setjmp.h 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
  /dalvik/tests/003-omnibus-opcodes/src/
Array.java 54 static void checkLongs(long[] longs) {
55 assert(longs[0] == 0x1122334455667788L);
56 assert(longs[1] == 0x8877665544332211L);
57 assert(longs[2] == 0L);
58 assert(longs[3] == 1L);
59 assert(longs[4] == -1L);
127 static void checkRange64(long[] longs, int negVal1, int negVal2) {
131 assert(longs.length == 5);
134 l = longs[5]; // exact bound
140 longs[5] = l; // exact boun
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
AtomicDoubleArray.java 49 private transient AtomicLongArray longs; field in class:AtomicDoubleArray
58 this.longs = new AtomicLongArray(length);
74 this.longs = new AtomicLongArray(longArray);
83 return longs.length();
93 return longBitsToDouble(longs.get(i));
104 longs.set(i, next);
117 // longs.lazySet(i, next);
130 return longBitsToDouble(longs.getAndSet(i, next));
146 return longs.compareAndSet(i,
169 return longs.weakCompareAndSet(i
    [all...]
  /libcore/luni/src/main/java/java/nio/
LongBuffer.java 23 * A buffer of longs.
124 * The remaining longs will be moved to the head of the buffer, staring from
135 * Compare the remaining longs of this buffer to another long buffer's
136 * remaining longs.
184 * long buffers are equal if and only if their remaining longs are exactly
223 * Reads longs from the current position into the specified long array and
224 * increases the position by the number of longs read.
240 * Reads longs from the current position into the specified long array,
242 * number of longs read.
250 * the number of longs to read, must be no less than zero and no
    [all...]
  /external/iproute2/include/linux/
atmapi.h 22 * code that still assumes that we're passing unsigned longs.
  /external/kernel-headers/original/linux/
atmapi.h 22 * code that still assumes that we're passing unsigned longs.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atmapi.h 22 * code that still assumes that we're passing unsigned longs.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmapi.h 22 * code that still assumes that we're passing unsigned longs.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmapi.h 22 * code that still assumes that we're passing unsigned longs.

Completed in 1382 milliseconds

1 2 3 4 5 6 7 8 91011>>