HomeSort by relevance Sort by last modified time
    Searched defs:aLong (Results 1 - 4 of 4) sorted by null

  /external/oprofile/libpopt/
popthelp.c 169 { long aLong = *((int *)opt->arg);
170 le += sprintf(le, "%ld", aLong);
173 { long aLong = *((long *)opt->arg);
174 le += sprintf(le, "%ld", aLong);
290 { long aLong = opt->val;
295 if (!ops && (aLong == 0L || aLong == 1L || aLong == -1L))
314 le += sprintf(le, (ops ? "0x%lx" : "%ld"), aLong);
popt.c 648 int poptSaveLong(long * arg, int argInfo, long aLong)
655 aLong = ~aLong;
658 *arg = aLong;
661 *arg |= aLong;
664 *arg &= aLong;
667 *arg ^= aLong;
676 int poptSaveInt(/*@null@*/ int * arg, int argInfo, long aLong)
683 aLong = ~aLong;
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
RandomTest.java 222 long aLong, anotherLong, yetAnotherLong;
229 aLong = aRandom.nextLong();
233 aLong == anotherLong);
235 randomArray[counter] = aLong;
236 if (aLong != yetAnotherLong)
  /external/littlemock/tests/com/google/testing/littlemock/
LittleMockTest.java 111 public long aLong();
162 assertEquals(0L, mFoo.aLong());
468 doReturn((long) Long.valueOf(10L)).when(mFoo).aLong();
469 assertEquals(10L, mFoo.aLong());
    [all...]

Completed in 157 milliseconds