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

1 2 3 4 5

  /external/webrtc/src/common_audio/signal_processing/include/
spl_inl.h 99 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))) zeros += 1
117 int zeros; local
135 int zeros; local
    [all...]
  /external/skia/tests/
MemoryTest.cpp 6 char* zeros = (char*)sk_calloc_throw(kNum*sizeof(char)); local
9 REPORTER_ASSERT(reporter, 0 == zeros[i]);
11 sk_free(zeros);
  /external/webrtc/src/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
318 WebRtc_Word16 zeros, zeros_fast, frac; local
674 WebRtc_Word16 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/third_party/skia/src/core/
SkFloatBits.cpp 173 int zeros = SkCLZ(value << 8); local
174 SkASSERT(zeros >= 0 && zeros <= 23);
175 value <<= zeros; local
176 shift -= zeros;
199 int zeros = SkCLZ(value << 8); local
200 value <<= zeros; local
201 shift -= zeros;
SkMath.cpp 21 #define sub_shift(zeros, x, n) \
22 zeros -= n; \
30 int zeros = 31; local
32 sub_shift(zeros, x, 16);
35 sub_shift(zeros, x, 8);
38 sub_shift(zeros, x, 4);
41 sub_shift(zeros, x, 2);
44 sub_shift(zeros, x, 1);
47 return zeros;
  /external/skia/src/core/
SkFloatBits.cpp 173 int zeros = SkCLZ(value << 8); local
174 SkASSERT(zeros >= 0 && zeros <= 23);
175 value <<= zeros; local
176 shift -= zeros;
199 int zeros = SkCLZ(value << 8); local
200 value <<= zeros; local
201 shift -= zeros;
SkMath.cpp 21 #define sub_shift(zeros, x, n) \
22 zeros -= n; \
30 int zeros = 31; local
32 sub_shift(zeros, x, 16);
35 sub_shift(zeros, x, 8);
38 sub_shift(zeros, x, 4);
41 sub_shift(zeros, x, 2);
44 sub_shift(zeros, x, 1);
47 return zeros;
  /external/chromium_org/crypto/
hkdf.cc 21 char zeros[kSHA256HashLength]; local
23 // If salt is not given, HashLength zeros are used.
24 memset(zeros, 0, sizeof(zeros));
25 actual_salt.set(zeros, sizeof(zeros));
  /external/chromium_org/third_party/openssl/openssl/crypto/chacha/
chachatest.c 155 unsigned char *expected, *out_bytes, *zero_bytes, *out, *zeros; local
173 zeros = misalign(zero_bytes);
174 memset(zeros, 0, len);
177 CRYPTO_chacha_20(out, zeros, len, key, nonce, 0);
195 CRYPTO_chacha_20(out, zeros, len - 64, key, nonce, 1);
  /bionic/libc/bionic/
md5.c 244 unsigned char zeros[72]; local
248 *zeros = 0x80;
249 memset (zeros + 1, 0, sizeof(zeros) - 1);
250 zeros[dstart+0] = (m->sz[0] >> 0) & 0xff;
251 zeros[dstart+1] = (m->sz[0] >> 8) & 0xff;
252 zeros[dstart+2] = (m->sz[0] >> 16) & 0xff;
253 zeros[dstart+3] = (m->sz[0] >> 24) & 0xff;
254 zeros[dstart+4] = (m->sz[1] >> 0) & 0xff;
255 zeros[dstart+5] = (m->sz[1] >> 8) & 0xff
    [all...]
  /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/zlib/src/contrib/puff/
Makefile 10 puff zeros.raw
18 @puft -w zeros.raw 2>&1 | cat > /dev/null
32 @puft -f zeros.raw 2>&1 | cat > /dev/null
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_util.c 65 Count leading zeros in a code word. Code word is assumed to be
76 number of leading zeros in the code word
85 u32 zeros = 0; local
94 zeros++;
97 return(zeros);
  /external/skia/bench/
MemoryBench.cpp 104 int* zeros = fUseCalloc ? calloc(fNum) : malloc_bzero(fNum); variable
108 x ^= zeros[j];
113 zeros[j] = 15;
116 sk_free(zeros); variable
  /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/qemu/slirp/
if.c 77 * 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/
if.c 77 * 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/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/WebKit/Source/wtf/
DecimalNumber.cpp 35 // [<sign>]0.[<zeros>]<significand>
49 // [<sign>]<significand>[<zeros>]
108 // [<sign>]0.[<zeros>]<significand>
110 unsigned zeros = -m_exponent - 1; local
116 for (unsigned i = 0; i < zeros; ++i)
128 // [<sign>]<significand>[<zeros>]
  /external/webrtc/src/common_audio/vad/
vad_filterbank.c 233 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);
vad_unittest.cc 83 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/
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.

Completed in 551 milliseconds

1 2 3 4 5