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

1 2 3 4 5

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafL2RMultiplier.java 40 int digit = wi >> 16, zeroes = wi & 0xFFFF; local
58 zeroes -= scale;
67 R = R.timesPow2(zeroes);
73 int digit = wi >> 16, zeroes = wi & 0xFFFF; local
80 R = R.timesPow2(zeroes);
ECAlgorithms.java 315 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...]
SimpleBigDecimal.java 208 int zeroes = scale - fractLen; local
209 for (int i = 0; i < zeroes; i++)
215 fractCharArr[zeroes + j] = fractStr.charAt(j);
WNafUtil.java 33 int highBit = bits - 1, length = 0, zeroes = 0; local
38 ++zeroes;
43 naf[length++] = (digit << 16) | zeroes;
44 zeroes = 1;
48 naf[length++] = (1 << 16) | zeroes;
110 int zeroes = length > 0 ? pos - 1 : pos; local
111 wnaf[length++] = (digit << 16) | zeroes;
  /system/core/libziparchive/
entry_name_utils_test.cc 23 const uint8_t zeroes[] = {0x41, 0x52, 0x00, 0x53, 0x45}; local
24 ASSERT_FALSE(IsValidEntryName(zeroes, sizeof(zeroes)));
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
noreorder.d 1 #objdump: -dr --disassemble-zeroes
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
Mod.java 158 int zeroes = getTrailingZeroes(u[0]); local
159 if (zeroes > 0)
161 Nat.shiftDownBits(uLen, u, zeroes, 0);
162 count += zeroes;
  /prebuilts/go/darwin-x86/src/crypto/rand/
example_test.go 23 // The slice should now contain random bytes instead of only zeroes.
  /prebuilts/go/linux-x86/src/crypto/rand/
example_test.go 23 // The slice should now contain random bytes instead of only zeroes.
  /external/webrtc/webrtc/base/
ipaddress.cc 414 unsigned int zeroes = 32; local
416 if (word_to_count) zeroes--;
417 if (word_to_count & 0x0000FFFF) zeroes -= 16;
418 if (word_to_count & 0x00FF00FF) zeroes -= 8;
419 if (word_to_count & 0x0F0F0F0F) zeroes -= 4;
420 if (word_to_count & 0x33333333) zeroes -= 2;
421 if (word_to_count & 0x55555555) zeroes -= 1;
423 return bits + (32 - zeroes);
  /prebuilts/go/darwin-x86/src/runtime/internal/sys/
intrinsics.go 33 // Ctz64 counts trailing (low-order) zeroes,
43 // Ctz32 counts trailing (low-order) zeroes,
  /prebuilts/go/linux-x86/src/runtime/internal/sys/
intrinsics.go 33 // Ctz64 counts trailing (low-order) zeroes,
43 // Ctz32 counts trailing (low-order) zeroes,
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/
operand-or.d 2 # objdump: -d --disassemble-zeroes
  /toolchain/binutils/binutils-2.25/libiberty/
simple-object-coff.c 653 unsigned char zeroes[16]; local
656 memset (zeroes, 0, sizeof zeroes);
658 if (write > sizeof zeroes)
659 write = sizeof zeroes;
660 if (!simple_object_internal_write (descriptor, offset, zeroes, write,
simple-object-elf.c 884 unsigned char zeroes[16]; local
887 memset (zeroes, 0, sizeof zeroes);
889 if (write > sizeof zeroes)
890 write = sizeof zeroes;
891 if (!simple_object_internal_write (descriptor, sh_offset, zeroes,
simple-object-xcoff.c 746 unsigned char zeroes[16]; local
749 memset (zeroes, 0, sizeof zeroes);
751 if (write > sizeof zeroes)
752 write = sizeof zeroes;
753 if (!simple_object_internal_write (descriptor, offset, zeroes, write,
simple-object-mach-o.c 1133 unsigned char zeroes[16]; local
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfwprintf.c 695 static CHAR_T zeroes[PADSIZE] = local
    [all...]
  /external/syslinux/gpxe/src/arch/i386/include/gpxe/
ibft.h 68 uint16_t zeroes[5]; member in struct:ibft_ipaddr
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfprintf.c 342 static char zeroes[PADSIZE] = local
788 * trim trailing zeroes if no # flag.
986 * After any left-hand padding and prefixing, emit zeroes
988 * string proper, then emit zeroes required by any leftover
1014 PAD(width - realsz, zeroes);
1016 /* leading zeroes from decimal precision */
1017 PAD(dprec - size, zeroes);
1028 PRINT(zeroes, 1);
1031 PAD(-expt, zeroes);
1035 PRINTANDPAD(cp, dtoaend, lead, zeroes);
    [all...]
vfwprintf.c 344 static wchar_t zeroes[PADSIZE] = local
750 * trim trailing zeroes if no # flag.
946 * After any left-hand padding and prefixing, emit zeroes
948 * string proper, then emit zeroes required by any leftover
974 PAD(width - realsz, zeroes);
976 /* leading zeroes from decimal precision */
977 PAD(dprec - size, zeroes);
988 PRINT(zeroes, 1);
991 PAD(-expt, zeroes);
996 lead, zeroes);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
EncoderTest.java 215 byte[] zeroes = new byte[size];
216 buffer.put(zeroes);
255 // test with all zeroes/silence
264 // test with random data, with and without a few leading zeroes
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharMatcher.java 99 String zeroes = external variable declarations
103 for (char base : zeroes.toCharArray()) {
    [all...]
  /external/e2fsprogs/lib/ext2fs/
unix_io.c 549 int zeroes = 0; local
550 if (ioctl(data->dev, BLKDISCARDZEROES, &zeroes) == 0 &&
551 zeroes)
  /bootable/recovery/
recovery.cpp 824 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
825 unsigned int zeroes; local
826 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
    [all...]

Completed in 712 milliseconds

1 2 3 4 5