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

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
WNafL2RMultiplier.java 40 int digit = wi >> 16, zeroes = wi & 0xFFFF; local
63 zeroes -= scale;
72 R = R.timesPow2(zeroes);
78 int digit = wi >> 16, zeroes = wi & 0xFFFF; local
85 R = R.timesPow2(zeroes);
WNafUtil.java 21 int length = 0, zeroes = 0; local
29 ++zeroes;
34 naf[length++] = (digit << 16) | zeroes;
35 zeroes = 0;
95 int zeroes = length > 0 ? pos - 1 : pos; local
96 wnaf[length++] = (digit << 16) | zeroes;
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
Zeroes.java 22 * Utility for turning types into zeroes.
24 public final class Zeroes {
28 private Zeroes() {
  /dalvik/dx/src/com/android/dx/rop/cst/
Zeroes.java 22 * Utility for turning types into zeroes.
24 public final class Zeroes {
28 private Zeroes() {
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
Zeroes.java 22 * Utility for turning types into zeroes.
24 public final class Zeroes {
28 private Zeroes() {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
Tables8kGCMMultiplier.java 24 // M[0][0] is ZEROES;
25 // M[1][0] is ZEROES;
58 // M[i][0] is ZEROES;
  /external/compiler-rt/lib/profile/
InstrProfilingBuffer.c 42 /* Enough zeroes for padding. */
43 const char Zeroes[sizeof(uint64_t)] = {0};
65 UPDATE_memcpy(Zeroes, Padding * sizeof(char));
  /external/chromium_org/third_party/skia/experimental/Intersection/
ConvexHull_Test.cpp 146 int zeroes; local
147 zeroes = -1;
157 zeroes = index;
163 if (sides[1] == 3 && zeroes >= 0) {
166 if (rotPath[zeroes].approximatelyEqual(rotPath[inner])
167 && zeroes < inner) {
168 if (debug_rotate_to_hull) SkDebugf("%s [%d,%d] [o=%d,i=%d] zeroes < inner\n",
172 if (rotPath[zeroes].approximatelyEqual(rotPath[outer])
173 && zeroes < outer) {
174 if (debug_rotate_to_hull) SkDebugf("%s [%d,%d] [o=%d,i=%d] zeroes < outer\n"
    [all...]
  /external/iproute2/include/linux/
atmapi.h 24 * Convention: NULL pointers are passed as a field of all zeroes.
  /external/kernel-headers/original/uapi/linux/
atmapi.h 24 * Convention: NULL pointers are passed as a field of all zeroes.
  /external/skia/experimental/Intersection/
ConvexHull_Test.cpp 146 int zeroes; local
147 zeroes = -1;
157 zeroes = index;
163 if (sides[1] == 3 && zeroes >= 0) {
166 if (rotPath[zeroes].approximatelyEqual(rotPath[inner])
167 && zeroes < inner) {
168 if (debug_rotate_to_hull) SkDebugf("%s [%d,%d] [o=%d,i=%d] zeroes < inner\n",
172 if (rotPath[zeroes].approximatelyEqual(rotPath[outer])
173 && zeroes < outer) {
174 if (debug_rotate_to_hull) SkDebugf("%s [%d,%d] [o=%d,i=%d] zeroes < outer\n"
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
atmapi.h 24 * Convention: NULL pointers are passed as a field of all zeroes.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
atmapi.h 24 * Convention: NULL pointers are passed as a field of all zeroes.
  /external/iptables/extensions/
libxt_MARK.man 8 Zeroes out the bits given by \fImask\fP and XORs \fIvalue\fP into the packet
12 Zeroes out the bits given by \fImask\fP and ORs \fIvalue\fP into the packet
  /system/core/libion/tests/
allocate_test.cpp 93 void *zeroes = calloc(4096, 1); local
128 ASSERT_EQ(0, memcmp(ptr, zeroes, 4096));
134 free(zeroes);
  /external/valgrind/main/memcheck/tests/
overlap.c 30 x[i] = i+1; // don't put any zeroes in there
34 // zeroes in the second half to stop them eventually
  /external/chromium_org/ppapi/api/dev/
ppb_buffer_dev.idl 18 * handle was invalid. The buffer will be initialized to contain zeroes.
  /external/chromium_org/third_party/icu/source/common/
ustrfmt.c 14 * uint32_t number padded with zeroes to minwidth. The result
  /external/icu/icu4c/source/common/
ustrfmt.c 14 * uint32_t number padded with zeroes to minwidth. The result
  /external/openssl/crypto/rsa/
rsa_pss.c 67 static const unsigned char zeroes[] = {0,0,0,0,0,0,0,0}; variable
160 || !EVP_DigestUpdate(&ctx, zeroes, sizeof zeroes)
255 || !EVP_DigestUpdate(&ctx, zeroes, sizeof zeroes)
270 /* Initial PS XORs with all zeroes which is a NOP so just update
  /external/chromium_org/third_party/webrtc/base/
ipaddress.cc 408 unsigned int zeroes = 32; local
410 if (word_to_count) zeroes--;
411 if (word_to_count & 0x0000FFFF) zeroes -= 16;
412 if (word_to_count & 0x00FF00FF) zeroes -= 8;
413 if (word_to_count & 0x0F0F0F0F) zeroes -= 4;
414 if (word_to_count & 0x33333333) zeroes -= 2;
415 if (word_to_count & 0x55555555) zeroes -= 1;
417 return bits + (32 - zeroes);
  /external/chromium_org/tools/relocation_packer/src/
packer.cc 43 // LEB128 zeroes. Run-length decoding ignores it because encoding
96 // signed LEB128 zeroes. Delta decoding ignores it because encoding
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/tests/
test_scanstring.py 66 scanstring('{"Numbers cannot have leading zeroes": 013}', 2, None, True),
67 (u'Numbers cannot have leading zeroes', 37))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/tests/
test_scanstring.py 66 scanstring('{"Numbers cannot have leading zeroes": 013}', 2, None, True),
67 (u'Numbers cannot have leading zeroes', 37))
  /external/chromium_org/build/mac/
verify_no_objc.sh 22 # of that 4kB is just filled with zeroes.

Completed in 1386 milliseconds

1 2 3 4 5 6 7 8 91011>>