HomeSort by relevance Sort by last modified time
    Searched defs:zeros (Results 26 - 50 of 69) sorted by null

12 3

  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_logic.c 82 LLVMValueRef zeros = LLVMConstNull(int_vec_type); local
93 return zeros;
301 LLVMConstExtractElement(zeros, index),
360 LLVMConstExtractElement(zeros, index),
  /external/smack/src/org/xbill/DNS/
Generator.java 197 int zeros = (int)width - number.length(); local
198 while (zeros-- > 0)
  /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);
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_atifragshader.c 328 GLfloat zeros[4] = { 0.0, 0.0, 0.0, 0.0 }; local
366 SETUP_SRC_REG(optype, i, zeros);
  /external/chromium_org/third_party/skia/src/core/
SkFloat.cpp 78 int zeros = SkCLZ(value << 8); local
79 SkASSERT(zeros >= 0 && zeros <= 23);
80 value <<= zeros; local
81 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/third_party/skia/src/utils/
SkNinePatch.cpp 122 int zeros = 0; local
124 zeros += 1;
126 numYDivs -= zeros;
127 yDivs += zeros;
  /external/mesa3d/src/mesa/swrast/
s_atifragshader.c 328 GLfloat zeros[4] = { 0.0, 0.0, 0.0, 0.0 }; local
366 SETUP_SRC_REG(optype, i, zeros);
  /external/skia/src/core/
SkFloat.cpp 78 int zeros = SkCLZ(value << 8); local
79 SkASSERT(zeros >= 0 && zeros <= 23);
80 value <<= zeros; local
81 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/utils/
SkNinePatch.cpp 122 int zeros = 0; local
124 zeros += 1;
126 numYDivs -= zeros;
127 yDivs += zeros;
  /external/wpa_supplicant_8/src/eap_common/
eap_eke_common.c 336 u8 zeros[EAP_EKE_MAX_HASH_LEN]; local
342 os_memset(zeros, 0, sess->prf_len);
343 if (eap_eke_prf(sess->prf, zeros, sess->prf_len,
408 u8 zeros[EAP_EKE_MAX_HASH_LEN]; local
441 os_memset(zeros, 0, sess->auth_len);
442 if (eap_eke_prf(sess->prf, zeros, sess->auth_len, modexp, dh->prime_len,
  /external/chromium/net/disk_cache/
entry_unittest.cc 794 const char zeros[kSize] = {}; local
799 EXPECT_TRUE(!memcmp(buffer->data(), zeros, kSize));
803 EXPECT_TRUE(!memcmp(buffer->data(), zeros, kSize));
807 EXPECT_TRUE(!memcmp(buffer->data(), zeros, kSize));
927 const char zeros[kSize] = {}; local
944 EXPECT_TRUE(!memcmp(buffer2->data(), zeros, kSize));
953 EXPECT_TRUE(!memcmp(buffer2->data(), zeros, 100));
    [all...]
  /external/chromium_org/crypto/
p224.cc 681 // If this is the point at infinity we return a string of all zeros.
683 static const char zeros[56] = {0}; local
684 return std::string(zeros, sizeof(zeros));
  /external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
decode_plc.c 96 WebRtc_Word32 zeros, lg2; local
99 zeros=WebRtcSpl_NormU32(x);
100 frac=(WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(((WebRtc_UWord32)WEBRTC_SPL_LSHIFT_W32(x, zeros)&0x7FFFFFFF), 23);
103 lg2= (WEBRTC_SPL_LSHIFT_W16((31-zeros), 8)+frac);
pitch_estimator.c 40 WebRtc_Word32 zeros, lg2; local
43 zeros=WebRtcSpl_NormU32(x);
44 frac=(WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(((WebRtc_UWord32)(WEBRTC_SPL_LSHIFT_W32(x, zeros))&0x7FFFFFFF), 23);
47 lg2= (WEBRTC_SPL_LSHIFT_W32((31-zeros), 8)+frac);
lpc_masking_model.c 349 WebRtc_Word32 zeros, lg2; local
352 zeros=WebRtcSpl_NormU32(x);
353 frac=(WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(((WebRtc_UWord32)WEBRTC_SPL_LSHIFT_W32(x, zeros)&0x7FFFFFFF), 23);
357 lg2= (WEBRTC_SPL_LSHIFT_W16((31-zeros), 8)+frac);
    [all...]
  /external/webrtc/src/modules/audio_processing/agc/
analog_agc.c 543 int zeros; local
548 zeros = WebRtcSpl_NormW32(stt->Rxx160_LPw32);
549 stt->targetIdxOffset = WEBRTC_SPL_RSHIFT_W16((3 * zeros) - stt->targetIdx - 2, 2);
    [all...]
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/webrtc/src/modules/audio_processing/ns/
nsx_core_neon.c 100 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/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_driver.c 511 Gamma zeros = { 0.0, 0.0, 0.0 }; local
513 if (!xf86SetGamma(pScrn, zeros)) {
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_driver.c 511 Gamma zeros = { 0.0, 0.0, 0.0 }; local
513 if (!xf86SetGamma(pScrn, zeros)) {
    [all...]
  /external/skia/tests/
MatrixTest.cpp 615 SkScalar zeros[3] = {0.f, 0.f, 0.f}; local
617 REPORTER_ASSERT(reporter, scalar_array_nearly_equal_relative(&dst[i*3], zeros, 3));
623 SkScalar zeros[3] = {0.f, 0.f, 0.f}; local
626 mats[i].mapHomogeneousPoints(dst, zeros, 1);
627 REPORTER_ASSERT(reporter, scalar_array_nearly_equal_relative(dst, zeros, 3));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/
r300_render.c 1189 static const union pipe_color_union zeros; local
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/
r300_render.c 1189 static const union pipe_color_union zeros; local
    [all...]

Completed in 8437 milliseconds

12 3