Searched refs:zeros (Results 1 - 25 of 48) sorted by relevance

12

/external/webrtc/src/common_audio/signal_processing/include/
H A Dspl_inl.h99 int zeros; local
104 zeros = 16;
106 zeros = 0;
108 if (!(0xFF800000 & (a << zeros))) zeros += 8;
109 if (!(0xF8000000 & (a << zeros))) zeros += 4;
110 if (!(0xE0000000 & (a << zeros))) zeros += 2;
111 if (!(0xC0000000 & (a << zeros))) zero
117 int zeros; local
135 int zeros; local
[all...]
/external/webrtc/src/modules/audio_processing/agc/
H A Ddigital_agc.c27 // zeros = 0:31; lvl = 2.^(1-zeros);
82 int zeros, zerosScale; local
163 zeros = WebRtcSpl_NormU32(absInLevel);
165 if (zeros < 15)
168 tmpU32no2 = WEBRTC_SPL_RSHIFT_U32(absInLevel, 15 - zeros); // Q(zeros-1)
169 tmpU32no2 = WEBRTC_SPL_UMUL_32_16(tmpU32no2, kLogE_1); // Q(zeros+13)
170 if (zeros < 9)
172 tmpU32no1 = WEBRTC_SPL_RSHIFT_U32(tmpU32no1, 9 - zeros); //
318 WebRtc_Word16 zeros, zeros_fast, frac; local
674 WebRtc_Word16 zeros, dB; local
[all...]
/external/llvm/test/MC/MachO/
H A Dx86_32-optimal_nop.s4 .align 4, 0 # start with 16 byte alignment filled with zeros
11 .align 4, 0 # start with 16 byte alignment filled with zeros
19 .align 4, 0 # start with 16 byte alignment filled with zeros
26 .align 4, 0 # start with 16 byte alignment filled with zeros
36 .align 4, 0 # start with 16 byte alignment filled with zeros
45 .align 4, 0 # start with 16 byte alignment filled with zeros
53 .align 4, 0 # start with 16 byte alignment filled with zeros
60 .align 4, 0 # start with 16 byte alignment filled with zeros
74 .align 4, 0 # start with 16 byte alignment filled with zeros
87 .align 4, 0 # start with 16 byte alignment filled with zeros
[all...]
/external/skia/src/core/
H A DSkFloatBits.cpp175 int zeros = SkCLZ(value << 8); local
176 SkASSERT(zeros >= 0 && zeros <= 23);
177 value <<= zeros; local
178 shift -= zeros;
201 int zeros = SkCLZ(value << 8); local
202 value <<= zeros; local
203 shift -= zeros;
H A DSkMath.cpp22 #define sub_shift(zeros, x, n) \
23 zeros -= n; \
32 int zeros = 31; local
34 sub_shift(zeros, x, 16);
37 sub_shift(zeros, x, 8);
40 sub_shift(zeros, x, 4);
43 sub_shift(zeros, x, 2);
46 sub_shift(zeros, x, 1);
49 int zeros = ((x >> 16) - 1) >> 31 << 4; local
50 x <<= zeros; local
[all...]
H A DSkFloat.cpp78 int zeros = SkCLZ(value << 8); local
79 SkASSERT(zeros >= 0 && zeros <= 23);
80 value <<= zeros; local
81 shift -= zeros;
H A DSkPoint.cpp244 int zeros = SkCLZ(x | y); local
247 if (zeros > 17) {
248 x <<= zeros - 17;
249 y <<= zeros - 17;
251 x >>= 17 - zeros;
252 y >>= 17 - zeros;
/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXNumber.java239 // // 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/zlib/src/contrib/puff/
H A DMakefile10 puff zeros.raw
18 @puft -w zeros.raw 2>&1 | cat > /dev/null
32 @puft -f zeros.raw 2>&1 | cat > /dev/null
/external/qemu/slirp/
H A Dif.c77 * XXXXX Any zeros arriving by themselves are NOT placed into the arriving packet.
105 if (++ttyp->zeros >= 5)
110 ttyp->zeros = 0;
116 ttyp->ones = ttyp->zeros = 0;
/external/qemu/slirp-android/
H A Dif.c77 * XXXXX Any zeros arriving by themselves are NOT placed into the arriving packet.
105 if (++ttyp->zeros >= 5)
110 ttyp->zeros = 0;
116 ttyp->ones = ttyp->zeros = 0;
/external/webkit/Source/JavaScriptCore/wtf/
H A DDecimalNumber.cpp38 // [<sign>]0.[<zeros>]<significand>
52 // [<sign>]<significand>[<zeros>]
111 // [<sign>]0.[<zeros>]<significand>
113 unsigned zeros = -m_exponent - 1; local
119 for (unsigned i = 0; i < zeros; ++i)
131 // [<sign>]<significand>[<zeros>]
/external/webrtc/src/common_audio/vad/
H A Dvad_filterbank.c233 int16_t zeros = 0, frac = 0, log2 = 0; local
249 zeros = WebRtcSpl_NormU32(energy_s16);
250 frac = (int16_t) (((uint32_t) ((int32_t) (energy_s16) << zeros)
252 log2 = (int16_t) (((31 - zeros) << 10) + frac);
H A Dvad_unittest.cc83 int16_t zeros[kMaxFrameLength] = { 0 }; local
137 // All zeros as input should work
138 EXPECT_EQ(0, WebRtcVad_Process(handle, kRates[0], zeros, kFrameLengths[0]));
188 int16_t zeros[kMaxFrameLength] = { 0 }; local
205 // Input values all zeros, expect all zeros out.
206 WebRtcVad_Downsampling(zeros, data_out, state, (int) kMaxFrameLength);
/external/chromium/net/disk_cache/
H A Dbitmap_unittest.cc121 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/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/sampleentry/
H A DVisualSampleEntry.java160 byte[] zeros = new byte[31 - compressornameDisplayAbleData];
161 content.get(zeros);
162 //assert Arrays.equals(zeros, new byte[zeros.length]) : "The compressor name length was not filled up with zeros";
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptconverter_p.h103 const char* zeros = "0000000000000000000000000"; local
105 buf.append(zeros, decpt - length);
/external/aac/libFDK/include/
H A Dfixpoint_math.h120 INT zeros=fixnormz_D(y) & 0x1e; local
121 y<<=zeros; local
126 t=t>>(zeros>>1);
/external/webrtc/src/modules/audio_processing/ns/
H A Dnsx_core.c476 WebRtc_Word16 countProd, delta, zeros, frac; local
498 zeros = WebRtcSpl_NormU32((WebRtc_UWord32)magn[i]);
499 frac = (WebRtc_Word16)((((WebRtc_UWord32)magn[i] << zeros)
503 log2 = (WebRtc_Word16)(((31 - zeros) << 8)
684 // zeros, and normalize it.
691 out[j + 1] = 0; // Insert zeros in imaginary part
1134 WebRtc_Word16 zeros, frac, intPart; local
1149 zeros = WebRtcSpl_NormU32((WebRtc_UWord32)magn[i]);
1150 frac = (WebRtc_Word16)(((WebRtc_UWord32)((WebRtc_UWord32)(magn[i]) << zeros)
1154 tmpU32 = (WebRtc_UWord32)(((31 - zeros) <<
1294 WebRtc_UWord32 zeros, num, den, tmpU32no1, tmpU32no2, tmpU32no3; local
1543 int zeros; local
[all...]
H A Dnsx_core_neon.c100 int16_t countProd, delta, zeros, frac; local
124 zeros = WebRtcSpl_NormU32((uint32_t)magn[i]);
125 frac = (int16_t)((((uint32_t)magn[i] << zeros)
129 log2 = (int16_t)(((31 - zeros) << 8)
684 // zeros, and normalize it.
703 // out[j + 1] = 0; // Insert zeros in imaginary part
713 // out[j + 1] = 0; // Insert zeros in imaginary part
/external/skia/src/utils/
H A DSkNinePatch.cpp122 int zeros = 0; local
124 zeros += 1;
126 numYDivs -= zeros;
127 yDivs += zeros;
/external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
H A Dcss_checker.py127 zeros = (r'^.*(?:^|\D)'
132 for z in re.finditer(re.compile(zeros, re.MULTILINE), contents):
/external/llvm/lib/Analysis/
H A DPathProfileVerifier.cpp186 int zeros = 0; local
192 fwrite(&zeros, 1, 4-(num&3), edgeFile);
/external/webrtc/src/modules/audio_processing/aecm/
H A Daecm_core.c382 // Inserting zeros in imaginary parts not necessary since we
383 // initialized the array with all zeros
867 WebRtc_Word16 zeros, frac; local
885 zeros = WebRtcSpl_NormU32(nearEner);
887 (WEBRTC_SPL_LSHIFT_U32(nearEner, zeros) & 0x7FFFFFFF),
890 tmp16 += WEBRTC_SPL_LSHIFT_W16((31 - zeros), 8) + frac;
908 zeros = WebRtcSpl_NormU32(tmpFar);
909 frac = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_U32((WEBRTC_SPL_LSHIFT_U32(tmpFar, zeros)
912 tmp16 += WEBRTC_SPL_LSHIFT_W16((31 - zeros), 8) + frac;
921 zeros
[all...]
/external/qemu/
H A Dtrace.c680 // Terminate the file with three zeros so that we can detect
682 uint32_t zeros = 0; local
683 fwrite(&zeros, 3, 1, trace_bb.fstream);
755 // Terminate the file with two zeros so that we can detect
757 uint32_t zeros = 0; local
758 fwrite(&zeros, 2, 1, trace_load.fstream);
791 // Terminate the file with two zeros so that we can detect
793 uint32_t zeros = 0; local
794 fwrite(&zeros, 2, 1, trace_store.fstream);
805 // Terminate the file with 7 zeros s
807 uint64_t zeros = 0; local
820 uint64_t zeros = 0; local
833 uint64_t zeros = 0; local
[all...]

Completed in 535 milliseconds

12