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

  /external/chromium/net/disk_cache/
bitmap_unittest.cc 121 char zeros[kMapSize]; local
123 memset(zeros, 0, kMapSize);
126 EXPECT_EQ(0, memcmp(zeros, map.GetMap(), kMapSize));
130 EXPECT_EQ(0, memcmp(zeros, map.GetMap(), kMapSize));
133 EXPECT_EQ(0, memcmp(zeros, map.GetMap(), kMapSize));
221 // Almost the same test as FindNextSetBit, but find zeros instead of ones.
  /external/skia/src/core/
SkFloatBits.cpp 168 int zeros = SkCLZ(value << 8); local
169 SkASSERT(zeros >= 0 && zeros <= 23);
170 value <<= zeros; local
171 shift -= zeros;
194 int zeros = SkCLZ(value << 8); local
195 value <<= zeros; local
196 shift -= zeros;
SkFloat.cpp 85 int zeros = SkCLZ(value << 8); local
86 SkASSERT(zeros >= 0 && zeros <= 23);
87 value <<= zeros; local
88 shift -= zeros;
SkPoint.cpp 208 int zeros = SkCLZ(x | y); local
211 if (zeros > 17) {
212 x <<= zeros - 17;
213 y <<= zeros - 17;
215 x >>= 17 - zeros;
216 y >>= 17 - zeros;
SkMath.cpp 29 #define sub_shift(zeros, x, n) \
30 zeros -= n; \
39 int zeros = 31; local
41 sub_shift(zeros, x, 16);
44 sub_shift(zeros, x, 8);
47 sub_shift(zeros, x, 4);
50 sub_shift(zeros, x, 2);
53 sub_shift(zeros, x, 1);
56 int zeros = ((x >> 16) - 1) >> 31 << 4; local
57 x <<= zeros; local
    [all...]
  /sdk/emulator/qtools/
gtrace.cpp 6 // A buffer of zeros
7 static char zeros[Gtrace::kGtraceEntriesPerBlock * sizeof(Gtrace::trace_entry)]; variable
120 // with zeros.
122 fwrite(zeros, num_zeros, 1, ftrace_);
  /bionic/libc/bionic/
md5.c 240 static unsigned char zeros[72]; local
244 *zeros = 0x80;
245 memset (zeros + 1, 0, sizeof(zeros) - 1);
246 zeros[dstart+0] = (m->sz[0] >> 0) & 0xff;
247 zeros[dstart+1] = (m->sz[0] >> 8) & 0xff;
248 zeros[dstart+2] = (m->sz[0] >> 16) & 0xff;
249 zeros[dstart+3] = (m->sz[0] >> 24) & 0xff;
250 zeros[dstart+4] = (m->sz[1] >> 0) & 0xff;
251 zeros[dstart+5] = (m->sz[1] >> 8) & 0xff
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/objects/
XNumber.java 239 // // Account for exponent by adding zeros as needed
262 // return sign + wholePart + decimalPart + zeros(exp - decimalLen);
268 // return sign + "0." + zeros(-1 - exp) + wholePart + decimalPart;
333 + zeros(exp - nDigits);
343 return sign + "0." + zeros(-1 - exp) + s.substring(0, 1)
356 static private String zeros(int n) method in class:XNumber
  /external/skia/src/utils/
SkNinePatch.cpp 103 int zeros = 0; local
105 zeros += 1;
107 numYDivs -= zeros;
108 yDivs += zeros;
  /external/qemu/
trace.c 583 // Terminate the file with three zeros so that we can detect
585 uint32_t zeros = 0; local
586 fwrite(&zeros, 3, 1, trace_bb.fstream);
658 // Terminate the file with two zeros so that we can detect
660 uint32_t zeros = 0; local
661 fwrite(&zeros, 2, 1, trace_load.fstream);
694 // Terminate the file with two zeros so that we can detect
696 uint32_t zeros = 0; local
697 fwrite(&zeros, 2, 1, trace_store.fstream);
708 // Terminate the file with 7 zeros so that we can detec
710 uint64_t zeros = 0; local
723 uint64_t zeros = 0; local
736 uint64_t zeros = 0; local
    [all...]
  /libcore/luni/src/main/java/java/util/
Formatter.java 106 * <td width="25%">Pad the number with leading zeros. (Requires width.)</td>
528 private static final char[] ZEROS = new char[] { '0', '0', '0', '0', '0', '0', '0', '0', '0' };
2142 char[] zeros = new char[precision]; local
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_sdio.c 2543 uint32 zeros = 0; local
    [all...]

Completed in 328 milliseconds