HomeSort by relevance Sort by last modified time
    Searched refs:zeros (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /external/chromium_org/third_party/webrtc/common_audio/signal_processing/include/
spl_inl.h 104 int16_t zeros; local
114 zeros = 16;
116 zeros = 0;
118 if (!(0xFF800000 & (a << zeros))) zeros += 8;
119 if (!(0xF8000000 & (a << zeros))) zeros += 4;
120 if (!(0xE0000000 & (a << zeros))) zeros += 2;
121 if (!(0xC0000000 & (a << zeros))) zeros += 1
127 int16_t zeros; local
145 int16_t zeros; local
    [all...]
spl_inl_mips.h 144 int zeros = 0; local
150 " sra %[zeros], %[a], 31 \n\t"
152 " move %[zeros], $zero \n\t"
154 "xor %[zeros], %[a], %[zeros] \n\t"
155 "clz %[zeros], %[zeros] \n\t"
156 "addiu %[zeros], %[zeros], -1 \n\t"
159 : [zeros]"=&r"(zeros
167 int zeros = 0; local
179 int zeros = 0; local
    [all...]
  /external/chromium_org/third_party/skia/tests/
MemoryTest.cpp 5 char* zeros = (char*)sk_calloc_throw(kNum*sizeof(char)); local
8 REPORTER_ASSERT(reporter, 0 == zeros[i]);
10 sk_free(zeros);
  /external/chromium_org/third_party/webrtc/modules/audio_processing/agc/
digital_agc.c 27 // 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); // Q(zeros+13
313 int16_t zeros = 0, zeros_fast, frac = 0; local
679 int16_t zeros, dB; local
    [all...]
  /external/llvm/test/MC/MachO/
x86_32-optimal_nop.s 4 .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/chromium_org/crypto/
hkdf.cc 23 char zeros[kSHA256HashLength]; local
25 // If salt is not given, HashLength zeros are used.
26 memset(zeros, 0, sizeof(zeros));
27 actual_salt.set(zeros, sizeof(zeros));
  /external/chromium_org/third_party/skia/src/core/
SkFloatBits.cpp 192 int zeros = SkCLZ(value << 8); local
193 SkASSERT(zeros >= 0 && zeros <= 23);
194 value <<= zeros; local
195 shift -= zeros;
SkMath.cpp 17 #define sub_shift(zeros, x, n) \
18 zeros -= n; \
26 int zeros = 31; local
28 sub_shift(zeros, x, 16);
31 sub_shift(zeros, x, 8);
34 sub_shift(zeros, x, 4);
37 sub_shift(zeros, x, 2);
40 sub_shift(zeros, x, 1);
43 return zeros;
SkFloat.cpp 78 int zeros = SkCLZ(value << 8); local
79 SkASSERT(zeros >= 0 && zeros <= 23);
80 value <<= zeros; local
81 shift -= zeros;
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
readYUV420file.m 23 Y=uint8(zeros(height,width,numFrames));
24 U=uint8(zeros(height/2,width/2,numFrames));
25 V=uint8(zeros(height/2,width/2,numFrames));
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/x86/
quantize_ssse3.c 54 __m128i sz0, sz1, x, x0, x1, y0, y1, zeros, abs0, abs1; local
100 zeros = _mm_setzero_si128();
102 x0 = _mm_cmpgt_epi16(abs0, zeros);
103 x1 = _mm_cmpgt_epi16(abs1, zeros);
quantize_sse2.c 158 __m128i sz0, sz1, x0, x1, y0, y1, xdq0, xdq1, zeros, ones; local
197 zeros = _mm_setzero_si128();
199 x0 = _mm_cmpeq_epi16(x0, zeros);
200 x1 = _mm_cmpeq_epi16(x1, zeros);
202 ones = _mm_cmpeq_epi16(zeros, zeros);
  /external/chromium_org/third_party/webrtc/common_audio/vad/
vad_sp_unittest.cc 27 int16_t zeros[kMaxFrameLenSp] = { 0 }; local
46 // Input values all zeros, expect all zeros out.
47 WebRtcVad_Downsampling(zeros, data_out, state, kMaxFrameLenSp);
vad_unittest.cc 61 int16_t zeros[kMaxFrameLength] = { 0 }; local
100 // All zeros as input should work
101 EXPECT_EQ(0, WebRtcVad_Process(handle, kRates[0], zeros, kFrameLengths[0]));
  /external/apache-xml/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/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/delay_tool/
parse_delay_file.m 30 rtpts = zeros(Npackets, 1);
31 seqno = zeros(Npackets, 1);
32 pt = zeros(Npackets, 1);
33 plen = zeros(Npackets, 1);
36 playout_delay = zeros(Npackets, 1);
37 optbuf = zeros(Npackets, 1);
  /external/llvm/tools/yaml2obj/
yaml2coff.cpp 221 zeros_impl<sizeof(T)> zeros(const T &) { function
290 << zeros(i->FunctionDefinition->unused);
292 OS << zeros(i->bfAndefSymbol->unused1)
294 << zeros(i->bfAndefSymbol->unused2)
296 << zeros(i->bfAndefSymbol->unused3);
300 << zeros(i->WeakExternal->unused);
317 << zeros(i->SectionDefinition->unused);
320 << zeros(i->CLRToken->unused1)
322 << zeros(i->CLRToken->unused2);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-tofte.js 71 // Day of the month, 2 digits with leading zeros
84 // 12-hour format of an hour without leading zeros
88 // 24-hour format of an hour without leading zeros
92 // 12-hour format of an hour with leading zeros
104 // 24-hour format of an hour with leading zeros
109 // Minutes with leading zeros
114 // Day of the month without leading zeros
135 // Numeric representation of a month, with leading zeros
145 // Numeric representation of a month, without leading zeros
171 // Seconds, with leading zeros
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
date-format-tofte.js 71 // Day of the month, 2 digits with leading zeros
84 // 12-hour format of an hour without leading zeros
88 // 24-hour format of an hour without leading zeros
92 // 12-hour format of an hour with leading zeros
104 // 24-hour format of an hour with leading zeros
109 // Minutes with leading zeros
114 // Day of the month without leading zeros
135 // Numeric representation of a month, with leading zeros
145 // Numeric representation of a month, without leading zeros
171 // Seconds, with leading zeros
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
date-format-tofte.js 71 // Day of the month, 2 digits with leading zeros
84 // 12-hour format of an hour without leading zeros
88 // 24-hour format of an hour without leading zeros
92 // 12-hour format of an hour with leading zeros
104 // 24-hour format of an hour with leading zeros
109 // Minutes with leading zeros
114 // Day of the month without leading zeros
135 // Numeric representation of a month, with leading zeros
145 // Numeric representation of a month, without leading zeros
171 // Seconds, with leading zeros
    [all...]
  /external/libvpx/libvpx/vp8/encoder/x86/
quantize_sse2.c 159 __m128i sz0, sz1, x0, x1, y0, y1, xdq0, xdq1, zeros, ones; local
198 zeros = _mm_setzero_si128();
200 x0 = _mm_cmpeq_epi16(x0, zeros);
201 x1 = _mm_cmpeq_epi16(x1, zeros);
203 ones = _mm_cmpeq_epi16(zeros, zeros);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/
complexityMeasures.m 22 new=zeros(frames,functionOrder);
30 result=zeros(functionOrder,3);
  /external/chromium_org/third_party/webrtc/modules/audio_processing/ns/
nsx_core_c.c 30 uint32_t zeros, num, den, tmpU32no1, tmpU32no2, tmpU32no3; local
59 zeros = WebRtcSpl_NormU32(priorLocSnr[i]);
60 frac32 = (int32_t)(((priorLocSnr[i] << zeros) & 0x7FFFFFFF) >> 19);
66 tmp32 = (int32_t)(((31 - zeros) << 12) + frac32) - (11 << 12); // Q12
  /external/chromium_org/net/disk_cache/blockfile/
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/chromium_org/third_party/webrtc/modules/audio_processing/aecm/
aecm_core.c 708 // ExtractFractionPart(a, zeros)
710 // returns the fraction part of |a|, with |zeros| number of leading zeros, as an
712 // number of zeros match.
713 static int16_t ExtractFractionPart(uint32_t a, int zeros) {
714 return (int16_t)(((a << zeros) & 0x7FFFFFFF) >> 23);
743 int16_t zeros, frac; local
761 zeros = WebRtcSpl_NormU32(nearEner);
762 frac = ExtractFractionPart(nearEner, zeros);
764 tmp16 += WEBRTC_SPL_LSHIFT_W16((31 - zeros), 8) + frac
    [all...]

Completed in 514 milliseconds

1 2 3 4