HomeSort by: relevance | last modified time | path
    Searched defs:zeros (Results 1 - 8 of 8) sorted by relevancy

  /src/lib/libc/gen/
floatunditf_ieee754.c 49 int exponent, zeros; local in function:__floatunditf
56 zeros = __builtin_clzll(x);
58 exponent = 64 - zeros;
59 x <<= zeros + 1;
61 exponent = 63 - zeros;
62 x <<= zeros;
  /src/sys/rump/librump/rumpvfs/
devnull.c 93 char zeros[512]; local in function:rump_devnullrw
106 memset(zeros, 0, sizeof(zeros));
108 error = uiomove(zeros,
109 uimin(sizeof(zeros), uio->uio_resid), uio);
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_sign/ed25519/ref10/
sign.c 48 static const unsigned char zeros[128] = { 0x00 }; local in function:_crypto_sign_ed25519_synthetic_r_hv
55 crypto_hash_sha512_update(hs, zeros, 128 - (32 + 3 + 32) % 128);
57 crypto_hash_sha512_update(hs, zeros, 128 - 32 % 128);
  /src/sbin/blkdiscard/
blkdiscard.c 52 static char *zeros = NULL; variable in typeref:typename:char *
89 if (pwrite(fd, zeros, discard_size, first_byte) != discard_size)
160 zeros = calloc(1, max_per_call);
161 if (!zeros)
162 errx(1, "Unable to allocate %lld bytes for zeros",
  /src/sys/coda/
coda_namecache.c 628 int i, xmax = 0, sum = 0, temp, zeros = 0, ave, n; local in function:coda_nc_gather_stats
634 zeros++;
646 coda_nc_stat.Num_zero_len = zeros;
649 if ((n = coda_nc_hashsize - zeros) > 0)
  /src/sys/external/bsd/ipf/netinet/
radix_ipf.h 70 u_char *zeros; member in struct:radix_softc
  /src/sys/arch/alpha/eisa/
eisa_machdep.c 337 u_int zeros = 0; local in function:eisa_uncompress
340 if (zeros) {
341 zeros--;
345 zeros = *cbuf++ - 1;
  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeARM_64.c 428 sljit_s32 i, zeros, ones, first; local in function:load_immediate
465 zeros = 0;
469 zeros++;
477 if (ones > zeros) {

Completed in 20 milliseconds