Searched refs:pad (Results 26 - 50 of 399) sorted by relevance

1234567891011>>

/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dx_bignum.c126 int pad; local
132 pad = 0;
134 pad = 1;
136 if (pad)
140 return pad + BN_num_bytes(bn);
/freebsd-11-stable/crypto/openssl/apps/
H A Drsautl.c100 unsigned char *rsa_in = NULL, *rsa_out = NULL, pad; local
117 pad = RSA_PKCS1_PADDING;
161 pad = RSA_NO_PADDING;
163 pad = RSA_PKCS1_OAEP_PADDING;
165 pad = RSA_SSLV23_PADDING;
167 pad = RSA_PKCS1_PADDING;
169 pad = RSA_X931_PADDING;
291 rsa_outlen = RSA_public_decrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
296 RSA_private_encrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
300 rsa_outlen = RSA_public_encrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
[all...]
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Daes-siv.c20 static void dbl(u8 *pad) argument
24 carry = pad[0] & 0x80;
26 pad[i] = (pad[i] << 1) | (pad[i + 1] >> 7);
27 pad[AES_BLOCK_SIZE - 1] <<= 1;
29 pad[AES_BLOCK_SIZE - 1] ^= 0x87;
54 static void pad_block(u8 *pad, const u8 *addr, size_t len) argument
56 os_memset(pad, 0, AES_BLOCK_SIZE);
57 os_memcpy(pad, add
[all...]
H A Dcrypto_internal-modexp.c19 size_t pubkey_len, pad; local
33 pad = prime_len - pubkey_len;
34 os_memmove(pubkey + pad, pubkey, pubkey_len);
35 os_memset(pubkey, 0, pad);
/freebsd-11-stable/stand/ficl/
H A Dtools.c199 cp = pVM->pad;
288 vmTextOut(pVM, pVM->pad, 1);
313 sprintf(pVM->pad, ": %.*s", pFW->nName, pFW->name);
314 vmTextOut(pVM, pVM->pad, 1);
328 sprintf(pVM->pad, "variable = %ld (%#lx)",
330 vmTextOut(pVM, pVM->pad, 1);
335 sprintf(pVM->pad, "user variable %ld (%#lx)",
337 vmTextOut(pVM, pVM->pad, 1);
342 sprintf(pVM->pad, "constant = %ld (%#lx)",
344 vmTextOut(pVM, pVM->pad,
[all...]
/freebsd-11-stable/contrib/ncurses/ncurses/base/
H A Dlib_pad.c38 * newpad -- create a new pad
39 * pnoutrefresh -- refresh a pad, no update
40 * pechochar -- add a char to a pad and refresh
189 T(("pad being refreshed"));
195 T(("pad being shifted by %d line(s)", displaced));
202 * from the pad to newscr whenever the window is wide enough that
207 * really ugly. So. What we do is consider the pad "wide" if it
269 * Clean up debris from scrolling or resizing the pad, so we do not
291 * Use the pad's current position, if it will be visible.
308 * Update our cache of the line-numbers that we displayed from the pad
323 pechochar(WINDOW *pad, const chtype ch) argument
[all...]
/freebsd-11-stable/sys/net/
H A Dparavirt.h127 uint32_t pad[9]; member in struct:paravirt_csb
/freebsd-11-stable/sys/x86/include/
H A Dpvclock.h40 uint8_t pad[2]; member in struct:pvclock_vcpu_time_info
/freebsd-11-stable/sys/xen/interface/io/
H A Dtpmif.h126 uint8_t pad; /* should be zero */ member in struct:tpmif_shared_page
H A Dfbif.h76 char pad[XENFB_OUT_EVENT_SIZE]; member in union:xenfb_out_event
110 char pad[XENFB_IN_EVENT_SIZE]; member in union:xenfb_in_event
H A Dkbdif.h79 char pad[XENKBD_IN_EVENT_SIZE]; member in union:xenkbd_in_event
95 char pad[XENKBD_OUT_EVENT_SIZE]; member in union:xenkbd_out_event
/freebsd-11-stable/contrib/ncurses/form/
H A Dfld_dup.c76 New_Field->pad = field->pad;
H A Dfld_link.c81 New_Field->pad = field->pad;
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dsnprintf.c123 pad(struct snprintf_state *state, int width, char c) function
199 pad | sign | alt | zero | digits
200 sign | alt | zero | digits | pad minus_flag
204 compute the length of the rest of the string, and then pad with
218 /* pad to width */
219 len += pad(state, width, ' ');
231 /* pad to width with zeros */
233 len += pad(state, prec - nlen, '0');
235 len += pad(state, width - len - nlen, '0');
237 /* pad t
[all...]
/freebsd-11-stable/sys/dev/fatm/
H A Dif_fatmreg.h301 uint32_t pad[1]; member in struct:tpd
432 uint32_t pad[2]; member in struct:fatm_stats::__anon10051
443 uint32_t pad[1]; member in struct:fatm_stats::__anon10052
453 uint32_t pad[2]; member in struct:fatm_stats::__anon10053
460 uint32_t pad[1]; member in struct:fatm_stats::__anon10054
473 uint32_t pad[3]; member in struct:fatm_stats::__anon10055
486 uint32_t pad[3]; member in struct:fatm_stats::__anon10056
496 uint32_t pad[2]; member in struct:fatm_stats::__anon10057
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_fcntl.h122 long pad[4]; member in struct:svr4_flock
132 long pad[4]; member in struct:svr4_flock64
/freebsd-11-stable/sys/cddl/boot/zfs/
H A Dsha256.c200 uint8_t pad[128]; local
210 pad[k] = ((uint8_t *)buf)[k+i];
212 for (pad[padsize++] = 0x80; (padsize & 63) != 56; padsize++)
213 pad[padsize] = 0;
216 pad[padsize++] = (size << 3) >> (56 - 8 * i);
219 SHA256Transform(H, pad + i);
256 uint8_t pad[256]; local
266 pad[k] = ((uint8_t *)buf)[k+i];
269 for (pad[padsize++] = 0x80; padsize < 112; padsize++)
270 pad[padsiz
[all...]
/freebsd-11-stable/crypto/heimdal/lib/gssapi/krb5/
H A Ddecapsulate.c189 u_char *pad; local
193 pad = (u_char *)wrapped_token->value + wrapped_token->length - 1;
194 padlength = *pad;
199 for (i = padlength; i > 0 && *pad == padlength; i--, pad--)
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dbase64.c92 int pad = 0; local
128 pad++;
136 if (pad) {
137 if (pad == 1)
139 else if (pad == 2)
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Dtest_crypto.in67 cert:FILE:$srcdir/data/yutaka-pad-ok-cert.pem \
68 anchor:FILE:$srcdir/data/yutaka-pad-ok-ca.pem > /dev/null || exit 1
73 cert:FILE:$srcdir/data/yutaka-pad-broken-cert.pem \
74 anchor:FILE:$srcdir/data/yutaka-pad-broken-ca.pem > /dev/null && exit 1
78 echo "Bleichenbacher bad cert (sf pad correct)"
81 cert:FILE:$srcdir/data/bleichenbacher-sf-pad-correct.pem \
/freebsd-11-stable/usr.bin/seq/
H A Dseq.c91 char pad, *fmt, *cur_print, *last_print; local
95 pad = ZERO;
129 pad = SPACE;
183 fmt = generate_format(first, incr, last, equalize, pad);
457 generate_format(double first, double incr, double last, int equalize, char pad) argument
492 sprintf(buf, "%%%c%d.%d%c", pad,
496 sprintf(buf, "%%%c%d%c", pad, MAX(width1, width2),
/freebsd-11-stable/contrib/wpa/src/tls/
H A Dtlsv1_record.c236 size_t pad; local
237 pad = (len + 1) % rl->iv_size;
238 if (pad)
239 pad = rl->iv_size - pad;
240 if (pos + pad + 1 > buf + buf_size) {
245 os_memset(pos, pad, pad + 1);
246 pos += pad + 1;
394 " (no pad)");
[all...]
/freebsd-11-stable/bin/pax/
H A Dar_subs.c129 if (rd_skip(arcn->skip + arcn->pad) == 1)
197 (void)rd_skip(arcn->skip + arcn->pad);
215 (void)rd_skip(arcn->skip + arcn->pad);
220 (void)rd_skip(arcn->skip + arcn->pad);
224 (void)rd_skip(arcn->skip + arcn->pad);
239 (void)rd_skip(arcn->skip + arcn->pad);
251 (void)rd_skip(arcn->skip + arcn->pad);
256 (void)rd_skip(arcn->skip + arcn->pad);
260 (void)rd_skip(arcn->skip + arcn->pad);
296 (void)rd_skip(arcn->skip + arcn->pad);
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dcp-abi.c190 char pad[14]; local
197 pad[padcount] = 0;
199 pad[--padcount] = ' ';
200 ui_out_text (uiout, pad);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSHA1.h83 void pad();

Completed in 364 milliseconds

1234567891011>>