HomeSort by relevance Sort by last modified time
    Searched full:zeroes (Results 26 - 50 of 852) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/go/linux-x86/src/cmd/compile/internal/big/
intconv.go 105 var zeroes int // zero characters (actually cs[0]) as left-most digits ("%.8d")
113 zeroes = precision - len(digits) // count of zero padding
120 length := len(sign) + len(prefix) + zeroes + len(digits)
127 // pad with zeroes unless precision also specified
128 zeroes = d
139 writeMultiple(s, "0", zeroes)
  /prebuilts/go/linux-x86/src/math/big/
intconv.go 105 var zeroes int // zero characters (actually cs[0]) as left-most digits ("%.8d")
113 zeroes = precision - len(digits) // count of zero padding
120 length := len(sign) + len(prefix) + zeroes + len(digits)
127 // pad with zeroes unless precision also specified
128 zeroes = d
139 writeMultiple(s, "0", zeroes)
  /external/valgrind/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
  /prebuilts/misc/darwin-x86_64/sdl2/include/SDL2/
SDL_bits.h 45 * with 0. This operation can also be stated as "count leading zeroes" and
54 /* Count Leading Zeroes builtin in GCC.
  /prebuilts/misc/windows/sdl2/i686-w64-mingw32/include/SDL2/
SDL_bits.h 45 * with 0. This operation can also be stated as "count leading zeroes" and
54 /* Count Leading Zeroes builtin in GCC.
  /prebuilts/misc/windows/sdl2/include/
SDL_bits.h 45 * with 0. This operation can also be stated as "count leading zeroes" and
54 /* Count Leading Zeroes builtin in GCC.
  /prebuilts/misc/windows/sdl2/x86_64-w64-mingw32/include/SDL2/
SDL_bits.h 45 * with 0. This operation can also be stated as "count leading zeroes" and
54 /* Count Leading Zeroes builtin in GCC.
  /device/google/contexthub/lib/include/nanohub/
crc.h 36 * The CRC implementation will pad the buffer with zeroes to the nearest
  /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;
  /external/icu/icu4c/source/common/
ustrfmt.c 14 * uint32_t number padded with zeroes to minwidth. The result
  /external/libxml2/os400/iconv/
README.iconv 24 leading zeroes stripped.
26 where xxx is the integer MIBenum without leading 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/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))
  /toolchain/binutils/binutils-2.25/include/opcode/
mn10200.h 33 operands are zeroes. */
38 opcode field, and zeroes indicating those bits which need not
  /external/iproute2/man/man8/
tc-cgroup.8 50 (leading zeroes may be omitted). To continue the above example, the following
  /external/llvm/test/Transforms/ScalarRepl/
2008-09-22-vector-gep.ll 1 ; This test checks to see if scalarrepl also works when a gep with all zeroes is
  /external/blktrace/
strverscmp.c 49 If the common prefix contains only leading zeroes, the longest part is less
63 @result{} <0 // @r{idem, but with leading zeroes only.}
73 fractional parts, S_Z: idem but with leading Zeroes only */
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
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;
  /external/opencv3/3rdparty/include/ffmpeg_/libavcodec/
xvmc.h 134 - application - zeroes it on get_buffer().
144 - application - zeroes it on get_buffer() or after successful
155 - application - zeroes it on get_buffer().
  /toolchain/binutils/binutils-2.25/libiberty/
strverscmp.c 50 If the common prefix contains only leading zeroes, the longest part is less
64 @result{} <0 // @r{idem, but with leading zeroes only.}
74 fractional parts, S_Z: idem but with leading Zeroes only */
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmax.c 48 /* Handle comparisons of signed zeroes. */
s_fmaxf.c 48 /* Handle comparisons of signed zeroes. */
s_fmaxl.c 50 /* Handle comparisons of signed zeroes. */

Completed in 497 milliseconds

12 3 4 5 6 7 8 91011>>