Home
last modified time | relevance | path

Searched refs:zeros (Results 1 – 25 of 47) sorted by relevance

12

/external/skia/src/core/
DSkFloatBits.cpp168 int zeros = SkCLZ(value << 8); in SkIntToFloatCast() local
169 SkASSERT(zeros >= 0 && zeros <= 23); in SkIntToFloatCast()
170 value <<= zeros; in SkIntToFloatCast()
171 shift -= zeros; in SkIntToFloatCast()
194 int zeros = SkCLZ(value << 8); in SkIntToFloatCast_NoOverflowCheck() local
195 value <<= zeros; in SkIntToFloatCast_NoOverflowCheck()
196 shift -= zeros; in SkIntToFloatCast_NoOverflowCheck()
DSkMath.cpp29 #define sub_shift(zeros, x, n) \ argument
30 zeros -= n; \
39 int zeros = 31; in SkCLZ_portable() local
41 sub_shift(zeros, x, 16); in SkCLZ_portable()
44 sub_shift(zeros, x, 8); in SkCLZ_portable()
47 sub_shift(zeros, x, 4); in SkCLZ_portable()
50 sub_shift(zeros, x, 2); in SkCLZ_portable()
53 sub_shift(zeros, x, 1); in SkCLZ_portable()
56 int zeros = ((x >> 16) - 1) >> 31 << 4; in SkCLZ_portable() local
57 x <<= zeros; in SkCLZ_portable()
[all …]
DSkPoint.cpp208 int zeros = SkCLZ(x | y); in setLength() local
211 if (zeros > 17) { in setLength()
212 x <<= zeros - 17; in setLength()
213 y <<= zeros - 17; in setLength()
215 x >>= 17 - zeros; in setLength()
216 y >>= 17 - zeros; in setLength()
DSkFloat.cpp85 int zeros = SkCLZ(value << 8); in SetShift() local
86 SkASSERT(zeros >= 0 && zeros <= 23); in SetShift()
87 value <<= zeros; in SetShift()
88 shift -= zeros; in SetShift()
/external/chromium/net/disk_cache/
Dbitmap_unittest.cc121 char zeros[kMapSize]; in TEST() local
123 memset(zeros, 0, kMapSize); in TEST()
126 EXPECT_EQ(0, memcmp(zeros, map.GetMap(), kMapSize)); in TEST()
130 EXPECT_EQ(0, memcmp(zeros, map.GetMap(), kMapSize)); in TEST()
133 EXPECT_EQ(0, memcmp(zeros, map.GetMap(), kMapSize)); in TEST()
/external/qemu/slirp/
Dif.c105 if (++ttyp->zeros >= 5)
110 ttyp->zeros = 0;
116 ttyp->ones = ttyp->zeros = 0;
Ddebug.c111 if (ttyp->zeros)
112 lprint(" %d zeros have been typed\r\n", ttyp->zeros);
/external/qemu/slirp-android/
Dif.c105 if (++ttyp->zeros >= 5)
110 ttyp->zeros = 0;
116 ttyp->ones = ttyp->zeros = 0;
Ddebug.c110 if (ttyp->zeros)
111 lprint(" %d zeros have been typed\r\n", ttyp->zeros);
/external/skia/src/utils/
DSkNinePatch.cpp103 int zeros = 0; in DrawMesh() local
105 zeros += 1; in DrawMesh()
107 numYDivs -= zeros; in DrawMesh()
108 yDivs += zeros; in DrawMesh()
/external/qemu/
Dtrace.c585 uint32_t zeros = 0; in trace_cleanup() local
586 fwrite(&zeros, 3, 1, trace_bb.fstream); in trace_cleanup()
660 uint32_t zeros = 0; in trace_cleanup() local
661 fwrite(&zeros, 2, 1, trace_load.fstream); in trace_cleanup()
696 uint32_t zeros = 0; in trace_cleanup() local
697 fwrite(&zeros, 2, 1, trace_store.fstream); in trace_cleanup()
710 uint64_t zeros = 0; in trace_cleanup() local
711 fwrite(&zeros, 7, 1, trace_exc.fstream); in trace_cleanup()
723 uint64_t zeros = 0; in trace_cleanup() local
724 fwrite(&zeros, 2, 1, trace_pid.fstream); in trace_cleanup()
[all …]
/external/zlib/contrib/puff/
DMakefile5 puff zeros.raw
/external/dbus/test/data/valid-messages/
Dno-padding.message8 ## this byte array is filled with zeros to the natural length
/external/webkit/JavaScriptCore/assembler/
DARMv7Assembler.h202 ALWAYS_INLINE static void countLeadingZerosPartial(uint32_t& value, int32_t& zeros, const int N) in countLeadingZerosPartial() argument
207 zeros += N; /* then we have identified N leading zeros */ in countLeadingZerosPartial()
215 int32_t zeros = 0; in countLeadingZeros() local
216 countLeadingZerosPartial(value, zeros, 16); in countLeadingZeros()
217 countLeadingZerosPartial(value, zeros, 8); in countLeadingZeros()
218 countLeadingZerosPartial(value, zeros, 4); in countLeadingZeros()
219 countLeadingZerosPartial(value, zeros, 2); in countLeadingZeros()
220 countLeadingZerosPartial(value, zeros, 1); in countLeadingZeros()
221 return zeros; in countLeadingZeros()
/external/libvpx/vp8/encoder/arm/armv5te/
Dboolhuff_armv5te.asm64 ; Counting the leading zeros is used to normalize range.
137 ; Counting the leading zeros is used to normalize range.
228 ; Counting the leading zeros is used to normalize range.
Dvp8_packtokens_partitions_armv5.asm137 ; Counting the leading zeros is used to normalize range.
356 ; Counting the leading zeros is used to normalize range.
Dvp8_packtokens_armv5.asm88 ; Counting the leading zeros is used to normalize range.
Dvp8_packtokens_mbrow_armv5.asm109 ; Counting the leading zeros is used to normalize range.
/external/libvpx/vp8/encoder/x86/
Dquantize_ssse3.asm98 sub edi, edx ;check for all zeros in bit mask
/external/chromium/net/data/filter_unittests/
Dgoogle.txt.bz2
Dgoogle.txt19 "Googol" is the mathematical term for a 1 followed by 100 zeros. The term was coined by Milton Siro…
/external/libvpx/vp8/decoder/arm/
Ddetokenize.asm173 clz r3, r2 ; shift - leading zeros in split
/external/webkit/autotools/
Dacinclude.m4153 # Pad zeros at end of numbers to make same length.
/external/v8/src/arm/
Dcodegen-arm.cc4637 Register zeros) { in CountLeadingZeros() argument
4639 __ clz(zeros, source); // This instruction is only supported after ARM5. in CountLeadingZeros()
4641 __ mov(zeros, Operand(0)); in CountLeadingZeros()
4645 __ add(zeros, zeros, Operand(16), LeaveCC, eq); in CountLeadingZeros()
4649 __ add(zeros, zeros, Operand(8), LeaveCC, eq); in CountLeadingZeros()
4653 __ add(zeros, zeros, Operand(4), LeaveCC, eq); in CountLeadingZeros()
4657 __ add(zeros, zeros, Operand(2), LeaveCC, eq); in CountLeadingZeros()
4661 __ add(zeros, zeros, Operand(1), LeaveCC, eq); in CountLeadingZeros()
/external/protobuf/
DCHANGES.txt379 contain extra zeros.

12