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

  /src/sys/compat/sys/
mount.h 101 statvfs_to_statfs12(const struct statvfs *fs, struct statfs12 *s12)
105 memset(s12, 0, sizeof(*s12));
107 s12->f_type = 0;
108 s12->f_oflags = (short)fs->f_flag;
112 s12->f_type = __nv[i].value;
117 s12->f_bsize = __STATFSCLAMP(fs->f_frsize);
118 s12->f_iosize = __STATFSCLAMP(fs->f_iosize);
119 s12->f_blocks = __STATFSCLAMP(fs->f_blocks);
120 s12->f_bfree = __STATFSCLAMP(fs->f_bfree)
142 struct statfs12 *s12 = kmem_zalloc(sizeof(*s12), KM_SLEEP); local in function:statvfs_to_statfs12_copy
    [all...]
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_core/ed25519/ref10/
ed25519_ref10.c 1138 int64_t s12; local in function:sc25519_muladd
1193 s12 = a1 * b11 + a2 * b10 + a3 * b9 + a4 * b8 + a5 * b7 + a6 * b6 +
1229 carry12 = (s12 + (int64_t) (1L << 20)) >> 21;
1231 s12 -= carry12 * ((uint64_t) 1L << 21);
1264 s12 += carry11;
1283 s12 += s23 * 470296;
1291 s12 += s22 * 654183;
1299 s12 -= s21 * 997805;
1307 s12 += s20 * 136657;
1315 s12 -= s19 * 683901
1585 int64_t s12 = 2097151 & (load_4(s + 31) >> 4); local in function:sc25519_reduce
    [all...]

Completed in 15 milliseconds