Home
last modified time | relevance | path

Searched refs:zeroes (Results 1 – 25 of 38) sorted by relevance

12

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DWNafL2RMultiplier.java40 int digit = wi >> 16, zeroes = wi & 0xFFFF; in multiplyPositive() local
58 zeroes -= scale; in multiplyPositive()
67 R = R.timesPow2(zeroes); in multiplyPositive()
73 int digit = wi >> 16, zeroes = wi & 0xFFFF; in multiplyPositive() local
80 R = R.timesPow2(zeroes); in multiplyPositive()
DECAlgorithms.java315 int zeroes = 0;
324 ++zeroes;
342 if (zeroes > 0)
344 R = R.timesPow2(zeroes);
345 zeroes = 0;
351 if (zeroes > 0)
353 R = R.timesPow2(zeroes);
449 int zeroes = 0;
470 ++zeroes;
474 if (zeroes > 0)
[all …]
DWNafUtil.java33 int highBit = bits - 1, length = 0, zeroes = 0; in generateCompactNaf() local
38 ++zeroes; in generateCompactNaf()
43 naf[length++] = (digit << 16) | zeroes; in generateCompactNaf()
44 zeroes = 1; in generateCompactNaf()
48 naf[length++] = (1 << 16) | zeroes; in generateCompactNaf()
110 int zeroes = length > 0 ? pos - 1 : pos; in generateCompactWindowNaf() local
111 wnaf[length++] = (digit << 16) | zeroes; in generateCompactWindowNaf()
DSimpleBigDecimal.java208 int zeroes = scale - fractLen; in toString() local
209 for (int i = 0; i < zeroes; i++) in toString()
215 fractCharArr[zeroes + j] = fractStr.charAt(j); in toString()
/external/webrtc/webrtc/base/
Dipaddress.cc414 unsigned int zeroes = 32; in CountIPMaskBits() local
416 if (word_to_count) zeroes--; in CountIPMaskBits()
417 if (word_to_count & 0x0000FFFF) zeroes -= 16; in CountIPMaskBits()
418 if (word_to_count & 0x00FF00FF) zeroes -= 8; in CountIPMaskBits()
419 if (word_to_count & 0x0F0F0F0F) zeroes -= 4; in CountIPMaskBits()
420 if (word_to_count & 0x33333333) zeroes -= 2; in CountIPMaskBits()
421 if (word_to_count & 0x55555555) zeroes -= 1; in CountIPMaskBits()
423 return bits + (32 - zeroes); in CountIPMaskBits()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
DMod.java158 int zeroes = getTrailingZeroes(u[0]); in inversionStep() local
159 if (zeroes > 0) in inversionStep()
161 Nat.shiftDownBits(uLen, u, zeroes, 0); in inversionStep()
162 count += zeroes; in inversionStep()
/external/boringssl/src/crypto/rsa/
Dpadding.c491 static const unsigned char zeroes[] = {0,0,0,0,0,0,0,0}; variable
572 !EVP_DigestUpdate(&ctx, zeroes, sizeof zeroes) || in RSA_verify_PKCS1_PSS_mgf1()
664 !EVP_DigestUpdate(&ctx, zeroes, sizeof zeroes) || in RSA_padding_add_PKCS1_PSS_mgf1()
/external/libxml2/os400/iconv/
DREADME.iconv24 leading zeroes stripped.
26 where xxx is the integer MIBenum without leading zeroes.
/external/curl/tests/data/
Dtest26243 HTTP GET with binary zeroes in header
/external/llvm/test/Transforms/ScalarRepl/
D2008-09-22-vector-gep.ll1 ; This test checks to see if scalarrepl also works when a gep with all zeroes is
/external/valgrind/docs/internals/
Dperformance.txt29 - Nick changed ExeContext gathering to not record/save extra zeroes at the
/external/e2fsprogs/lib/ext2fs/
Dunix_io.c553 int zeroes = 0; in unix_open() local
554 if (ioctl(data->dev, BLKDISCARDZEROES, &zeroes) == 0 && in unix_open()
555 zeroes) in unix_open()
/external/valgrind/
DREADME.aarch64179 the semantics of INS Vd.D[0] to see if it zeroes out the top.)
198 writing zeroes into the CC thunk fields.
/external/webrtc/webrtc/p2p/base/
Dstun.cc430 char zeroes[4] = {0}; in WritePadding() local
431 buf->WriteBytes(zeroes, 4 - remainder); in WritePadding()
/external/libvpx/libvpx/vp9/encoder/x86/
Dvp9_quantize_ssse3_x86_64.asm177 ; skip-block, i.e. just write all zeroes
/external/bison/m4/
Disnanl.m4115 dnl - for pseudo-zeroes, unnormalized numbers, and pseudo-denormals on ia64.
/external/crcalc/src/com/hp/creals/
DCR.java416 private static String zeroes(int n) { in zeroes() method in CR
587 String z = zeroes(n + 1 - len); in toString()
/external/iptables/extensions/
Dlibxt_time.man18 23:59:59. Leading zeroes are allowed (e.g. "06:03") and correctly interpreted
/external/llvm/test/Transforms/InstCombine/
Dx86-pshufb.ll41 ; with a shuffle mask of all zeroes.
65 ; vector %InVec and a vector of all zeroes.
/external/libvorbis/doc/
D06-floor0.tex78 …s channel is unused in this frame (the output of the channel will be all-zeroes in synthesis). Se…
D02-bitpacking.tex220 return binary zeroes.
/external/libvpx/libvpx/vpx_dsp/x86/
Dquantize_ssse3_x86_64.asm306 ; skip-block, i.e. just write all zeroes
/external/llvm/docs/
DCoverageMappingFormat.rst297 If necessary, the encoded data is padded with zeroes so that the size
369 * The two trailing bytes are zeroes and are used to pad the coverage mapping
/external/libxml2/
Dtrio.c2656 int zeroes = 0; variable
2780 zeroes = (int)floorl(workNumber);
2820 fractionDigits = ((flags & FLAGS_FLOAT_G) && (zeroes == 0))
2822 : zeroes + precision;
/external/opencv3/3rdparty/openexr/
DChangeLog.openexr147 * float-to-half conversion now preserves the sign of float zeroes
148 and of floats that are so small that they become half zeroes.

12