Home
last modified time | relevance | path

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

1234

/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/gemmlowp/internal/
Dpack_msa.h142 const v16i8 zeroes = __builtin_msa_ldi_b(0); in Pack() local
148 zeroes, src_lines_intertwined_4x[2 * cell + outer][inner])); in Pack()
150 zeroes, src_lines_intertwined_4x[2 * cell + outer][inner])); in Pack()
159 reinterpret_cast<v8i16>(zeroes), sums_of_2_cells[cell][i])); in Pack()
161 reinterpret_cast<v8i16>(zeroes), sums_of_2_cells[cell][i])); in Pack()
331 const v8i16 zeroes = __builtin_msa_ldi_h(0); in Pack() local
334 __builtin_msa_ilvr_h(zeroes, sums_of_8[cell])); in Pack()
335 v8i16 tmp = __builtin_msa_ilvl_h(zeroes, sums_of_8[cell]); in Pack()
/external/gemmlowp/standalone/
Dneon-gemm-kernel-benchmark.cc3888 const v16i8 zeroes = __builtin_msa_ldi_b(0); in Run() local
3905 lhs[0] = reinterpret_cast<v8i16>(__builtin_msa_ilvr_b(zeroes, in Run()
3907 lhs[2] = reinterpret_cast<v8i16>(__builtin_msa_ilvl_b(zeroes, in Run()
3909 lhs[1] = reinterpret_cast<v8i16>(__builtin_msa_ilvr_b(zeroes, in Run()
3913 lhs[3] = __builtin_msa_ilvl_h(reinterpret_cast<v8i16>(zeroes), lhs[0]); in Run()
3914 lhs[4] = __builtin_msa_ilvl_h(reinterpret_cast<v8i16>(zeroes), lhs[1]); in Run()
3915 lhs[5] = __builtin_msa_ilvl_h(reinterpret_cast<v8i16>(zeroes), lhs[2]); in Run()
3916 lhs[0] = __builtin_msa_ilvr_h(reinterpret_cast<v8i16>(zeroes), lhs[0]); in Run()
3917 lhs[1] = __builtin_msa_ilvr_h(reinterpret_cast<v8i16>(zeroes), lhs[1]); in Run()
3918 lhs[2] = __builtin_msa_ilvr_h(reinterpret_cast<v8i16>(zeroes), lhs[2]); in Run()
[all …]
/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/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dfake_quantize_ops.cc175 xla::ComputationDataHandle zeroes = b->Broadcast( in Compile() local
178 b->Select(between_nudged_min_max, gradient, zeroes); in Compile()
261 xla::ComputationDataHandle zeroes = in Compile() local
264 b->Select(between_nudged_min_max, gradient, zeroes); in Compile()
269 b->ReduceAll(b->Select(below_min, gradient, zeroes), zero, in Compile()
275 b->ReduceAll(b->Select(above_max, gradient, zeroes), zero, in Compile()
/external/ltp/testcases/kernel/syscalls/keyctl/
Dkeyctl05.c201 static char zeroes[2]; in do_test() local
210 zeroes, sizeof(zeroes)); in do_test()
/external/gemmlowp/fixedpoint/
Dfixedpoint_msa.h107 v4i32 zeroes = __builtin_msa_ldi_w(0);
108 return __builtin_msa_subv_w(zeroes, a);
113 v8i16 zeroes = __builtin_msa_ldi_h(0);
114 return __builtin_msa_subv_h(zeroes, a);
/external/libxml2/os400/iconv/
DREADME.iconv24 leading zeroes stripped.
26 where xxx is the integer MIBenum without leading zeroes.
/external/python/cpython3/Tools/clinic/
Dclinic.py2675 def str_converter_key(types, encoding, zeroes): argument
2676 return (frozenset(types), bool(encoding), bool(zeroes))
2685 def converter_init(self, *, accept={str}, encoding=None, zeroes=False): argument
2687 key = str_converter_key(accept, encoding, zeroes)
2693 self.length = bool(zeroes)
2719 def r(format_unit, *, accept, encoding=False, zeroes=False): argument
2732 if zeroes:
2738 key = str_converter_key(accept, encoding, zeroes)
2744 r('es#', encoding=True, zeroes=True, accept={str})
2746 r('et#', encoding=True, zeroes=True, accept={bytes, bytearray, str})
[all …]
/external/curl/tests/data/
Dtest26243 HTTP GET with binary zeroes in header
/external/swiftshader/third_party/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/syslinux/gpxe/src/arch/i386/include/gpxe/
Dibft.h68 uint16_t zeroes[5]; member
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_DecodeWav.pbtxt42 If desired_samples is set, then the audio will be cropped or padded with zeroes
/external/python/cpython3/Doc/library/
Dipaddress.rst103 integer represents an octet (byte) in the address. Leading zeroes are
133 The string representation in dotted decimal notation. Leading zeroes
225 The short form of the address representation, with leading zeroes in
227 zeroes collapsed to a single empty group.
233 The long form of the address representation, with all leading zeroes and
234 groups consisting entirely of zeroes included.
/external/valgrind/docs/internals/
Dperformance.txt29 - Nick changed ExeContext gathering to not record/save extra zeroes at the
/external/e2fsprogs/lib/ext2fs/
Dunix_io.c549 int zeroes = 0; in unix_open_channel() local
550 if (ioctl(data->dev, BLKDISCARDZEROES, &zeroes) == 0 && in unix_open_channel()
551 zeroes) in unix_open_channel()
/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/swiftshader/third_party/subzero/src/
DIceInst.def19 // 2) signed zeroes are handled by:
/external/llvm/test/Transforms/InstCombine/
Dx86-avx2.ll24 ; with a shuffle mask of all zeroes.
/external/webrtc/webrtc/p2p/base/
Dstun.cc430 char zeroes[4] = {0}; in WritePadding() local
431 buf->WriteBytes(zeroes, 4 - remainder); in WritePadding()
/external/deqp/external/openglcts/docs/specs/
DCTS_ARB_sparse_texture2.txt43 memory were filled with zeroes; previously, the values returned by

1234