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

  /external/chromium/net/disk_cache/
bitmap_unittest.cc 120 char ones[kMapSize]; local
122 memset(ones, 0xff, kMapSize);
128 EXPECT_EQ(0, memcmp(ones, map.GetMap(), kMapSize));
221 // Almost the same test as FindNextSetBit, but find zeros instead of ones.
  /external/libvpx/vp8/common/x86/
loopfilter_sse2.asm 230 paddsw xmm5, [ones GLOBAL]
231 paddsw xmm1, [ones GLOBAL]
2084 ones: label
    [all...]
loopfilter_mmx.asm 188 paddsw mm5, [ones GLOBAL]
189 paddsw mm1, [ones GLOBAL]
506 paddsw mm5, [ones GLOBAL]
508 paddsw mm1, [ones GLOBAL]
1764 ones: label
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldFormatterTest.java 32 Formattable ones = new Formattable() { local
51 assertEquals("aaa 111?", new Formatter().format("aaa %s?", ones).toString());
52 assertEquals("aaa 111 bbb 222?", new Formatter().format("aaa %s bbb %s?", ones, twos).toString());
  /libcore/luni/src/test/java/tests/SQLite/
AbstractSqlTest.java 66 private final String[] ones = {"hello!", "goodbye"}; field in class:AbstractSqlTest
81 ones_updated = new String[ones.length];
82 for (int i = 0; i < ones.length; i++) {
83 ones_updated[i] = ones[i] + twos[i];
133 for (int i = 0; i < ones.length; i++) {
134 firstStmt.execute("insert into tbl1 values('" + ones[i] + "',"
137 assertAllFromTbl1(firstStmt, ones, twos);
144 * @param ones the expected values of the column 'one'
148 private void assertAllFromTbl1(Statement stmt, String[] ones, short[] twos)
153 assertTrue(i < ones.length)
    [all...]
  /external/bison/lib/
bbitset.h 123 void (*ones) (bitset); member in struct:bitset_vtable
204 #define BITSET_ONES_(DST) (DST)->b.vtable->ones (DST)
  /external/qemu/
trace.c 186 uint32_t ones = year; local
187 year = (thousands << 12) | (hundreds << 8) | (tens << 4) | ones;
191 ones = (mon - tens * 10);
192 mon = (tens << 4) | ones;
196 ones = (day - tens * 10);
197 day = (tens << 4) | ones;
203 ones = (hour - tens * 10);
204 hour = (tens << 4) | ones;
208 ones = (min - tens * 10);
209 min = (tens << 4) | ones;
    [all...]

Completed in 842 milliseconds