Searched refs:pad (Results 1 - 25 of 319) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/ncurses/ncurses/widechar/
H A Dlib_pecho_wchar.c38 pecho_wchar(WINDOW *pad, const cchar_t * wch) argument
40 T((T_CALLED("pecho_wchar(%p, %s)"), pad, _tracech_t(wch)));
42 if (pad == 0)
45 if (!(pad->_flags & _ISPAD))
46 returnCode(wecho_wchar(pad, wch));
48 wadd_wch(pad, wch);
49 prefresh(pad, pad->_pad._pad_y,
50 pad->_pad._pad_x,
51 pad
[all...]
/freebsd-9.3-release/contrib/ncurses/menu/
H A Dm_pad.c52 | Function : int set_menu_pad(MENU *menu, int pad)
62 set_menu_pad(MENU * menu, int pad) argument
66 T((T_CALLED("set_menu_pad(%p,%d)"), menu, pad));
68 if (!isprint(UChar(pad)))
72 menu->pad = pad;
86 | Return Values : The pad character
92 returnCode(Normalize_Menu(menu)->pad);
/freebsd-9.3-release/contrib/wpa/src/crypto/
H A Daes-omac1.c22 static void gf_mulx(u8 *pad) argument
26 carry = pad[0] & 0x80;
28 pad[i] = (pad[i] << 1) | (pad[i + 1] >> 7);
29 pad[AES_BLOCK_SIZE - 1] <<= 1;
31 pad[AES_BLOCK_SIZE - 1] ^= 0x87;
52 u8 cbc[AES_BLOCK_SIZE], pad[AES_BLOCK_SIZE]; local
84 os_memset(pad, 0, AES_BLOCK_SIZE);
85 aes_encrypt(ctx, pad, pa
[all...]
/freebsd-9.3-release/contrib/ncurses/form/
H A Dfld_pad.c41 | Description : Set the pad character used to fill the field. This must
45 | E_BAD_ARGUMENT - invalid field pointer or pad character
58 if (field->pad != ch)
60 field->pad = ch;
73 | Description : Retrieve the fields pad character.
75 | Return Values : The pad character.
82 returnCode(Normalize_Field(field)->pad);
H A Dfrm_data.c76 | int pad)
84 Only_Padding(WINDOW *w, int len, int pad) argument
98 if ((chtype)CharOf(cell) != ChCharOf(pad)
107 if (ChCharOf(cell) != ChCharOf(pad))
162 if (Only_Padding(form->w, check_len, field->pad))
179 if (!Only_Padding(form->w, field->cols, field->pad))
/freebsd-9.3-release/contrib/bind9/lib/lwres/
H A Dprint.c87 int pad; local
117 length = pad = zeropad = 0;
314 pad = width - length -
316 if (pad < 0)
317 pad = 0;
320 count += strlen(head) + strlen(buf) + pad +
323 while (pad > 0 && size > 1U) {
326 pad--;
344 while (pad > 0 && size > 1U) {
347 pad
[all...]
/freebsd-9.3-release/contrib/ncurses/include/
H A DMKparametrized.sh42 * A value of -1 in the table means suppress both pad and % translations.
43 * A value of 0 in the table means do pad but not % translations.
44 * A value of 1 in the table means do both pad and % translations.
/freebsd-9.3-release/contrib/bind9/lib/isc/
H A Dprint.c90 int pad; local
120 length = pad = zeropad = 0;
377 pad = width - length -
379 if (pad < 0)
380 pad = 0;
383 count += strlen(head) + strlen(buf) + pad +
386 while (pad > 0 && size > 1) {
389 pad--;
407 while (pad > 0 && size > 1) {
410 pad
[all...]
/freebsd-9.3-release/contrib/ntp/lib/isc/
H A Dprint.c90 int pad; local
120 length = pad = zeropad = 0;
377 pad = width - length -
379 if (pad < 0)
380 pad = 0;
383 count += strlen(head) + strlen(buf) + pad +
386 while (pad > 0 && size > 1) {
389 pad--;
407 while (pad > 0 && size > 1) {
410 pad
[all...]
/freebsd-9.3-release/include/protocols/
H A Dtalkd.h62 u_char pad; member in struct:__anon4958
81 u_char pad; member in struct:__anon4959
/freebsd-9.3-release/sys/xen/interface/
H A Dnmi.h57 unsigned long pad; member in struct:xennmi_callback
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Dx_bignum.c123 int pad; local
129 pad = 0;
131 pad = 1;
133 if (pad)
137 return pad + BN_num_bytes(bn);
H A Dx_long.c111 int clen, pad, i; local
130 /* If MSB of leading octet set we need to pad */
132 pad = 1;
134 pad = 0;
140 if (pad)
149 return clen + pad;
/freebsd-9.3-release/sys/gnu/fs/reiserfs/
H A Dreiserfs_hashes.c64 uint32_t pad; local
70 pad = (uint32_t)len | ((uint32_t)len << 8);
71 pad |= pad << 16;
111 d = pad;
126 c = d = pad;
137 b = c = d = pad;
143 a = b = c = d = pad;
/freebsd-9.3-release/usr.bin/lam/
H A Dlam.c61 short pad; /* pad flag for missing columns */ member in struct:openfile
74 static char *pad(struct openfile *);
119 ip->pad = P;
147 ip->pad = 1;
177 pad(struct openfile *ip) function
183 if (ip->pad) {
200 return (pad(ip));
210 return (pad(ip));
/freebsd-9.3-release/lib/libc/stdio/
H A Dmktemp.c106 char *pad; local
181 pad = strchr(padchar, *trv);
182 if (pad == NULL) {
188 *trv = (*++pad == '\0') ? padchar[0] : *pad;
/freebsd-9.3-release/usr.bin/hexdump/
H A Dconv.c55 int converr, pad, width; local
134 pad = 3 - width;
135 if (pad < 0)
136 pad = 0;
137 (void)printf("%*s%C", pad, "", wc);
/freebsd-9.3-release/crypto/openssl/fips/sha/
H A Dfips_standalone_sha1.c79 unsigned char pad[HMAC_MAX_MD_CBLOCK]; local
91 pad[i] = 0x36 ^ keymd[i];
93 SHA1_Update(md_ctx, pad, SHA_CBLOCK);
96 pad[i] = 0x5c ^ keymd[i];
98 SHA1_Update(o_ctx, pad, SHA_CBLOCK);
/freebsd-9.3-release/crypto/openssl/apps/
H A Drsautl.c102 unsigned char *rsa_in = NULL, *rsa_out = NULL, pad; local
119 pad = RSA_PKCS1_PADDING;
163 pad = RSA_NO_PADDING;
165 pad = RSA_PKCS1_OAEP_PADDING;
167 pad = RSA_SSLV23_PADDING;
169 pad = RSA_PKCS1_PADDING;
171 pad = RSA_X931_PADDING;
290 rsa_outlen = RSA_public_decrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
295 RSA_private_encrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
299 rsa_outlen = RSA_public_encrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
[all...]
/freebsd-9.3-release/sys/boot/ficl/
H A Dtools.c199 cp = pVM->pad;
287 vmTextOut(pVM, pVM->pad, 1);
312 sprintf(pVM->pad, ": %.*s", pFW->nName, pFW->name);
313 vmTextOut(pVM, pVM->pad, 1);
327 sprintf(pVM->pad, "variable = %ld (%#lx)", pFW->param->i, pFW->param->u);
328 vmTextOut(pVM, pVM->pad, 1);
333 sprintf(pVM->pad, "user variable %ld (%#lx)", pFW->param->i, pFW->param->u);
334 vmTextOut(pVM, pVM->pad, 1);
339 sprintf(pVM->pad, "constant = %ld (%#lx)", pFW->param->i, pFW->param->u);
340 vmTextOut(pVM, pVM->pad,
[all...]
/freebsd-9.3-release/contrib/wpa/src/tls/
H A Dpkcs5.c181 u8 *eb, pad; local
218 pad = eb[enc_data_len - 1];
219 if (pad > 8) {
220 wpa_printf(MSG_INFO, "PKCS #5: Invalid PS octet 0x%x", pad);
224 for (i = enc_data_len - pad; i < enc_data_len; i++) {
225 if (eb[i] != pad) {
227 eb + enc_data_len - pad, pad);
234 eb, enc_data_len - pad);
236 *data_len = enc_data_len - pad;
[all...]
H A Dtlsv1_record.c204 size_t pad; local
205 pad = (len + 1) % rl->iv_size;
206 if (pad)
207 pad = rl->iv_size - pad;
208 if (pos + pad + 1 > buf + buf_size) {
213 os_memset(pos, pad, pad + 1);
214 pos += pad + 1;
327 " (no pad)");
[all...]
/freebsd-9.3-release/contrib/ncurses/ncurses/base/
H A Dlib_pad.c36 * newpad -- create a new pad
37 * pnoutrefresh -- refresh a pad, no update
38 * pechochar -- add a char to a pad and refresh
171 T(("pad being refreshed"));
177 T(("pad being shifted by %d line(s)", displaced));
184 * from the pad to newscr whenever the window is wide enough that
189 * really ugly. So. What we do is consider the pad "wide" if it
251 * Clean up debris from scrolling or resizing the pad, so we do not
273 * Use the pad's current position, if it will be visible.
288 * Update our cache of the line-numbers that we displayed from the pad
303 pechochar(WINDOW *pad, const chtype ch) argument
[all...]
/freebsd-9.3-release/sys/cddl/boot/zfs/
H A Dsha256.c103 uint8_t pad[128]; local
111 pad[i] = ((uint8_t *)buf)[i];
113 for (pad[padsize++] = 0x80; (padsize & 63) != 56; padsize++)
114 pad[padsize] = 0;
117 pad[padsize++] = (size << 3) >> (56 - 8 * i);
120 SHA256Transform(H, pad + i);
/freebsd-9.3-release/contrib/wpa/src/utils/
H A Dradiotap.c167 * There is a requirement to pad args, so that args
209 int pad; local
234 pad = (((ulong)iterator->arg) -
238 if (pad)
240 (rt_sizes[iterator->arg_index] >> 4) - pad;

Completed in 399 milliseconds

1234567891011>>