HomeSort by relevance Sort by last modified time
    Searched defs:Long (Results 26 - 50 of 75) sorted by null

12 3

  /external/valgrind/main/none/tests/amd64/
amd64locked.c 10 typedef unsigned long long int ULong;
11 typedef signed long long int Long;
14 typedef unsigned long UWord;
223 volatile Long e_val, g_val, e_val_before; \
224 Long o, s, z, a, c, p, v1, v2, flags_in; \
225 Long block[4]; \
250 block[2] = (long)&e_val;
    [all...]
  /external/valgrind/main/none/tests/x86/
x86locked.c 10 typedef unsigned long long int ULong;
11 typedef signed long long int Long;
14 typedef unsigned long UWord;
235 block[2] = (int)(long)&e_val; \
320 block[1] = (int)(long)&e_val; \
422 block[1] = (int)(long)&e_val; \
585 carrydep = c ? (rol1(carrydep) ^ (Long)(Int)bitoff) : carrydep
    [all...]
  /frameworks/base/core/java/android/util/
JsonWriter.java 351 public JsonWriter value(long value) throws IOException {
353 out.write(Long.toString(value));
  /frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
ObjectViewer.java 125 view.setText(Long.toString(info.getCompressedSize()));
127 view.setText(Long.toString(info.getThumbPixWidth()));
129 view.setText(Long.toString(info.getThumbPixHeight()));
131 view.setText(Long.toString(info.getThumbCompressedSize()));
133 view.setText(Long.toString(info.getImagePixWidth()));
135 view.setText(Long.toString(info.getImagePixHeight()));
137 view.setText(Long.toString(info.getImagePixDepth()));
139 view.setText(Long.toString(info.getSequenceNumber()));
  /hardware/ti/omap3/dspbridge/inc/
std.h 171 typedef long LgInt; /* LGSIZE-bit signed integer */
179 typedef unsigned long LgUns; /* LGSIZE-bit unsigned integer */
187 typedef unsigned long LgBits; /* LGSIZE-bit bit string */
194 typedef long int Long;
206 typedef unsigned long Uns;
212 typedef long Bool; /* boolean to match Windows boolean def */
252 #define ArgToInt(A) ((Int)((long)(A) & 0xffff))
  /hardware/ti/omap3/dspbridge/libbridge/inc/
std.h 171 typedef long LgInt; /* LGSIZE-bit signed integer */
179 typedef unsigned long LgUns; /* LGSIZE-bit unsigned integer */
187 typedef unsigned long LgBits; /* LGSIZE-bit bit string */
194 typedef long int Long;
206 typedef unsigned long Uns;
213 typedef long Bool; /* boolean to match Windows boolean def */
256 #define ArgToInt(A) ((Int)((long)(A) & 0xffff))
  /libcore/luni/src/main/java/java/lang/
Long.java 21 * The wrapper for the primitive type {@code long}.
33 public final class Long extends Number implements Comparable<Long> {
35 private static final long serialVersionUID = 4290774380558885855L;
40 private final long value;
43 * Constant for the maximum {@code long} value, 2<sup>63</sup>-1.
45 public static final long MAX_VALUE = 0x7FFFFFFFFFFFFFFFL;
48 * Constant for the minimum {@code long} value, -2<sup>63</sup>.
50 public static final long MIN_VALUE = 0x8000000000000000L;
53 * The {@link Class} object that represents the primitive type {@code long}
    [all...]
  /libcore/luni/src/main/java/java/math/
Conversion.java 64 long v = highDigit & 0xFFFFFFFFL;
68 return Long.toString(v, radix);
187 long v = highDigit & 0xFFFFFFFFL;
189 long prev = v;
209 long result11 = 0;
211 long temp1 = (result11 << 32)
213 long res = divideLongByBillion(temp1);
297 static String toDecimalScaledString(long value, int scale) {
335 long v = value;
337 long prev = v
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldStringBufferTest.java 143 testBuffer.insert(-1, Long.MAX_VALUE);
150 testBuffer.insert(testBuffer.length() + 1, Long.MAX_VALUE);
  /external/clang/test/SemaCXX/
overloaded-builtin-operators.cpp 10 struct Long {
11 operator long();
34 yes& islong(long);
35 yes& islong(unsigned long); // FIXME: shouldn't be needed
38 void f(Short s, Long l, Enum1 e1, Enum2 e2, Xpmf pmf) {
68 operator volatile long&();
84 long l1 = lr--;
88 volatile long& lr1 = (lr *= sr);
100 volatile long& lr2 = (lr <<= sr);
128 long p1 = vip - cip
    [all...]
  /external/guava/guava-tests/test/com/google/common/primitives/
UnsignedIntegerTest.java 58 long expected = value & 0xffffffffL;
207 long value = a & 0xffffffffL;
209 UnsignedInteger.valueOf(Long.toString(value)),
210 UnsignedInteger.valueOf(Long.toString(value, 16), 16));
  /external/valgrind/main/exp-sgcheck/tests/
bad_percentify.c 10 typedef unsigned long long int ULong;
11 typedef signed long long int Long;
16 typedef unsigned long UWord;
17 typedef signed long Word;
283 if ((flags & VG_MSG_SIGNED) && (Long)p < 0) {
284 p = - (Long)p;
417 else if (1 == n_ls) { is_long = ( sizeof(void*) == sizeof(Long) ); }
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
Utility.java 90 public static final Long[] EMPTY_LONGS = new Long[0];
295 public static Account findExistingAccount(Context context, long allowAccountId,
304 long hostAuthId = c.getLong(HostAuth.ID_PROJECTION_COLUMN);
307 ACCOUNT_WHERE_HOSTAUTH, new String[] { Long.toString(hostAuthId) }, null);
310 long accountId = c2.getLong(Account.ID_PROJECTION_COLUMN);
339 sb.append(Long.toString(System.currentTimeMillis()));
349 public static long parseDateTimeToMillis(String date) {
372 public static long parseEmailDateTimeToMillis(String date) {
610 private static final CursorGetter<Long> LONG_GETTER = new CursorGetter<Long>()
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
CursorWindowTest.java 179 final long NUMBER_LONG_INTEGER = (long) 0xaabbccddffL;
180 final long NUMBER_INTEGER = (int) NUMBER_LONG_INTEGER;
181 final long NUMBER_SHORT = (short) NUMBER_INTEGER;
198 assertTrue(cursorWindow.putString(Long.toString(NUMBER_LONG_INTEGER), 0, 0));
199 assertEquals(Long.toString(NUMBER_LONG_INTEGER), cursorWindow.getString(0, 0));
240 assertEquals(Long.toString(NUMBER_LONG_INTEGER), cursorWindow.getString(0, 2));
AbstractCursorTest.java 458 mRows[i].add(Long.valueOf(i));
516 public long getLong(int columnIndex) {
  /cts/tests/tests/database/src/android/database/sqlite/cts/
DatabaseStatementTest.java 103 long value = statement1.simpleQueryForLong();
143 for (long i = 0; i < 10; i++) {
144 long num = c.getLong(numCol);
156 for (long i = 0; i < 10; i++) {
157 statement.bindString(1, Long.toHexString(i));
165 for (long i = 0; i < 10; i++) {
167 assertEquals(Long.toHexString(i), num);
178 for (long i = 0; i < 10; i++) {
188 for (long i = 0; i < 10; i++) {
225 for (long i = 0; i < 10; i++)
    [all...]
  /external/dropbear/libtommath/
bn.tex 347 ISO C ``unsigned long'' data type and each digit is $28-$bits long. The mp\_digit type can be configured to suit other
643 an ISO C style ``unsigned long'' constant. The reason for both functions is efficiency. Setting a single digit is quick but the
681 \subsection{Long Constants}
683 To set a constant that is the size of an ISO C ``unsigned long'' and larger than a single digit the following function
688 int mp_set_int (mp_int * a, unsigned long b);
695 To get the ``unsigned long'' copy of an mp\_int the following function can be used.
699 unsigned long mp_get_int (mp_int * a);
743 int mp_init_set_int (mp_int * a, unsigned long b);
761 /* initialize and set a long */
    [all...]
  /external/icu4c/i18n/
decNumberLocal.h 67 /* not use int or long directly. */
77 #define Long int64_t
82 typedef long int LI; /* for printf arguments only */
88 #define long ?? /* .. or 'long' types are not used */ macro
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
ParcelTest.java 104 final long[] longs = {1, 2};
106 final long[] longs2 = new long[longs.length];
208 long val = 5;
215 for (long i = 0; i < 10; ++i) {
218 for (long i = 0; i < 10; ++i) {
227 for (long i = 0; i < 10; ++i) {
228 parcel.writeString(Long.toString(i));
231 for (long i = 0; i < 10; ++i) {
232 assertThat(parcel.readString(), equalTo(Long.toString(i)))
    [all...]
  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseStatementTest.java 102 long value = statement1.simpleQueryForLong();
142 for (long i = 0; i < 10; i++) {
143 long num = c.getLong(numCol);
155 for (long i = 0; i < 10; i++) {
156 statement.bindString(1, Long.toHexString(i));
164 for (long i = 0; i < 10; i++) {
166 assertEquals(Long.toHexString(i), num);
177 for (long i = 0; i < 10; i++) {
187 for (long i = 0; i < 10; i++) {
224 for (long i = 0; i < 10; i++)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
MimeMessage.java 94 * @return a long, locally-generated message-ID value
106 sb.append(Long.toString(System.currentTimeMillis()));
  /libcore/luni/src/main/java/java/util/
Formatter.java 182 * Byte, Short, Integer, Long, and BigInteger (and primitives that box to those types) are all
319 * Calendar, Date, and Long (representing milliseconds past the epoch) are all acceptable
    [all...]
  /development/apps/Development/src/com/android/development/
Connectivity.java 88 private static final long SCAN_CYCLES = 15;
96 private long mDCOnDuration = 120000;
97 private long mDCOffDuration = 120000;
103 private long mSCOnDuration = 120000;
104 private long mSCOffDuration = 12000;
113 private long mScanCycles = SCAN_CYCLES;
114 private long mScanCur = -1;
115 private long mStartTime = -1;
116 private long mStopTime;
117 private long mTotalScanTime = 0
    [all...]
  /libcore/dalvik/src/test/java/dalvik/system/profiler/
SamplingProfilerTest.java 73 long start = System.currentTimeMillis();
80 long end = System.currentTimeMillis();
100 long now = System.currentTimeMillis();
298 assertEquals(Long.toHexString(hprofData.getStartMillis()),
299 Long.toHexString(parsed.getStartMillis()));
300 assertEquals(Long.toHexString(hprofData.getFlags()),
301 Long.toHexString(parsed.getFlags()));
302 assertEquals(Long.toHexString(hprofData.getDepth()),
303 Long.toHexString(parsed.getDepth()));
  /bionic/libc/stdlib/
strtod.c 66 * #define Long int on machines with 32-bit ints and 64-bit longs.
81 * #define Just_16 to store 16 bits per 32-bit Long when doing high-precision
139 #define Long int32_t
344 /* When Pack_32 is not defined, we store 16 bits per 32-bit Long.
347 * slower. Hence the default is now to store 32 bits per Long.
417 rv = (Bigint *)MALLOC(sizeof(Bigint) + (x-1)*sizeof(Long));
451 (y)->wds*sizeof(Long) + 2*sizeof(int))
530 Long x, y;
933 Long borrow, y; /* We need signed shifts here. */
936 Long z
    [all...]

Completed in 952 milliseconds

12 3