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

  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha256/cp/
hash_sha256_cp.c 147 static const uint8_t PAD[64] = { 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
162 state->buf[r + i] = PAD[i];
166 state->buf[r + i] = PAD[i];
  /src/sys/external/isc/libsodium/dist/src/libsodium/crypto_hash/sha512/cp/
hash_sha512_cp.c 163 static const uint8_t PAD[128] = {
181 state->buf[r + i] = PAD[i];
185 state->buf[r + i] = PAD[i];
  /src/sys/ufs/chfs/
chfs_wbuf.c 41 #define PAD(x) (((x)+3)&~3)
59 chfs_flush_wbuf(struct chfs_mount *chmp, int pad)
69 KASSERT(pad == WBUF_SETPAD || pad == WBUF_NOPAD);
72 if (pad == WBUF_SETPAD) {
73 chmp->chm_wbuf_len = PAD(chmp->chm_wbuf_len);
174 if (to != PAD(chmp->chm_wbuf_ofs + chmp->chm_wbuf_len)) {
176 PAD(chmp->chm_wbuf_ofs + chmp->chm_wbuf_len));
245 * If wbuf has free space, pad it to the size of wbuf and write out.
  /src/sys/arch/amiga/dev/
sbicreg.h 305 #define PAD(n) char n;
  /src/sys/arch/mvme68k/dev/
sbicreg.h 305 #define PAD(n) char n;
  /src/sys/dev/ic/
wd33c93reg.h 367 #define PAD(n) char n;
  /src/lib/libc/stdio/
vfwprintf.c 607 #define ZEROPAD 0x080 /* zero (as opposed to blank) pad */
696 #define PADSIZE 16 /* pad chunk size */
707 * PAD uses `n'.
738 #define PAD(howmany, with) do { \
755 PAD((len) - (n2 > 0 ? n2 : 0), (with)); \
1410 * floating precision; finally, if LADJUST, pad with blanks.
1412 * Compute actual size, so we know how much to pad.
1429 PAD(width - realsz, blanks);
1442 PAD(width - realsz, zeroes);
1445 PAD(dprec - size, zeroes)
    [all...]

Completed in 15 milliseconds