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

1 2 3 4 5 6 7 8 910

  /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...]
  /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 */
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/machine/
setjmp.h 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/machine/
setjmp.h 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/machine/
setjmp.h 8 #define _JBLEN 10 /* size, in longs, of a jmp_buf */
  /development/samples/GlobalTime/src/com/android/globaltime/
LatLongSphere.java 22 float radius, int lats, int longs,
30 int tris = 2 * (lats - 1) * (longs - 1);
31 int[] vertices = new int[3 * lats * longs];
32 int[] texcoords = new int[2 * lats * longs];
33 int[] colors = new int[4 * lats * longs];
34 int[] normals = new int[3 * lats * longs];
46 for (int i = 0; i < longs; i++) {
47 float fi = (float) i / (longs - 1);
99 for (int i = 0; i < longs - 1; i++) {
  /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...]
  /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.
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atmapi.h 22 * code that still assumes that we're passing unsigned longs.
  /dalvik/dx/src/com/android/dx/gen/
BinaryOp.java 27 * {@link #DIVIDE}, and {@link #REMAINDER}) support ints, longs, floats and
32 * ints and longs.
  /development/ndk/platforms/android-3/arch-arm/include/machine/
setjmp.h 9 #define _JBLEN 64 /* size, in longs, of a jmp_buf */
11 #define _JBLEN 29 /* size, in longs, of a jmp_buf */
  /external/guava/javadoc/com/google/common/primitives/class-use/
Longs.html 7 Uses of Class com.google.common.primitives.Longs (Guava Libraries 2010.01.04)
18 parent.document.title="Uses of Class com.google.common.primitives.Longs (Guava Libraries 2010.01.04)";
42 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/google/common/primitives/Longs.html" title="class in com.google.common.primitives"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
62 &nbsp;<A HREF="Longs.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
84 <B>Uses of Class<br>com.google.common.primitives.Longs</B></H2>
86 No usage of com.google.common.primitives.Longs
102 <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../com/google/common/primitives/Longs.html" title="class in com.google.common.primitives"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD>
122 &nbsp;<A HREF="Longs.html" target="_top"><B>NO FRAMES</B></A> &nbsp;
  /external/guava/javadoc/com/google/common/primitives/
package-frame.html 38 <A HREF="Longs.html" title="class in com.google.common.primitives" target="classFrame">Longs</A>
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
RealSystemFacade.java 84 * TODO: The system notification manager takes ints, not longs, as IDs, but the download
85 * manager uses IDs take straight from the database, which are longs. This will have to be
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/machine/
setjmp.h 9 #define _JBLEN 64 /* size, in longs, of a jmp_buf */
11 #define _JBLEN 29 /* size, in longs, of a jmp_buf */
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/machine/
setjmp.h 9 #define _JBLEN 64 /* size, in longs, of a jmp_buf */
11 #define _JBLEN 29 /* size, in longs, of a jmp_buf */
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/machine/
setjmp.h 9 #define _JBLEN 64 /* size, in longs, of a jmp_buf */
11 #define _JBLEN 29 /* size, in longs, of a jmp_buf */
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/machine/
setjmp.h 9 #define _JBLEN 64 /* size, in longs, of a jmp_buf */
11 #define _JBLEN 29 /* size, in longs, of a jmp_buf */
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/machine/
setjmp.h 9 #define _JBLEN 64 /* size, in longs, of a jmp_buf */
11 #define _JBLEN 29 /* size, in longs, of a jmp_buf */
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/machine/
setjmp.h 9 #define _JBLEN 64 /* size, in longs, of a jmp_buf */
11 #define _JBLEN 29 /* size, in longs, of a jmp_buf */
  /external/llvm/include/llvm/ADT/
DenseMapInfo.h 70 // Provide DenseMapInfo for unsigned longs.
82 // Provide DenseMapInfo for unsigned long longs.
105 // Provide DenseMapInfo for longs.
119 // Provide DenseMapInfo for long longs.
  /external/valgrind/main/memcheck/tests/
error_counts.c 16 /* we require these longs to have same size as a machine word */

Completed in 482 milliseconds

1 2 3 4 5 6 7 8 910