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

1234567891011>>

/freebsd-10.0-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-10.0-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-10.0-release/contrib/wpa/src/crypto/
H A Daes-omac1.c16 static void gf_mulx(u8 *pad) argument
20 carry = pad[0] & 0x80;
22 pad[i] = (pad[i] << 1) | (pad[i + 1] >> 7);
23 pad[AES_BLOCK_SIZE - 1] <<= 1;
25 pad[AES_BLOCK_SIZE - 1] ^= 0x87;
46 u8 cbc[AES_BLOCK_SIZE], pad[AES_BLOCK_SIZE]; local
78 os_memset(pad, 0, AES_BLOCK_SIZE);
79 aes_encrypt(ctx, pad, pa
[all...]
/freebsd-10.0-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-10.0-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-10.0-release/crypto/openssl/crypto/bn/asm/
H A Dvia-mont.pl89 $pad=16*1; # amount of reserved bytes on top of every vector
101 # &DWP(64+(4*$num+$pad)*0,"esp") # padded tp[num]
102 # &DWP(64+(4*$num+$pad)*1,"esp") # padded copy of ap[num]
103 # &DWP(64+(4*$num+$pad)*2,"esp") # padded copy of bp[num]
104 # &DWP(64+(4*$num+$pad)*3,"esp") # padded copy of np[num]
132 &lea ("ecx",&DWP($pad,"","ecx",4)); # ecx becomes vector size in bytes
149 &lea ("ebp",&DWP(-$pad,"ecx"));
155 &lea ("ecx",&DWP((32+$pad)/4,"ecx"));# padded tp + scratch
159 &lea ("edi",&DWP(64+$pad,"esp","ecx",4));# pointer to ap copy
162 &mov ("ecx",$pad/
[all...]
/freebsd-10.0-release/include/protocols/
H A Dtalkd.h62 u_char pad; member in struct:__anon5286
81 u_char pad; member in struct:__anon5287
/freebsd-10.0-release/sys/arm/freescale/imx/
H A Dimx51_iomuxvar.h37 u_short pad; member in struct:iomux_conf
/freebsd-10.0-release/sys/xen/interface/
H A Dnmi.h59 unsigned long pad; member in struct:xennmi_callback
/freebsd-10.0-release/crypto/openssl/crypto/asn1/
H A Dx_bignum.c113 int pad; local
117 if(BN_num_bits(bn) & 0x7) pad = 0;
118 else pad = 1;
120 if(pad) *cont++ = 0;
123 return pad + BN_num_bytes(bn);
H A Dx_long.c109 int clen, pad, i; local
124 /* If MSB of leading octet set we need to pad */
125 if(!(clen & 0x7)) pad = 1;
126 else pad = 0;
132 if(pad) *cont++ = (ltmp < 0) ? 0xff : 0;
139 return clen + pad;
/freebsd-10.0-release/sys/boot/fdt/dts/
H A Dbeaglebone-black.dts51 scm-pad-config =
H A Dbeaglebone.dts50 scm-pad-config =
/freebsd-10.0-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-10.0-release/sys/net/
H A Dif_pflog.h48 u_int8_t pad[3]; member in struct:pfloghdr
52 /* minus pad, also used as a signature */
53 #define PFLOG_REAL_HDRLEN offsetof(struct pfloghdr, pad)
/freebsd-10.0-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-10.0-release/contrib/apr/file_io/unix/
H A Dmktemp.c98 char *pad; local
153 pad = strchr((char *)padchar, *trv);
154 if (pad == NULL || !*++pad) {
158 *trv++ = *pad;
/freebsd-10.0-release/contrib/wpa/src/utils/
H A Dbase64.c102 int pad = 0; local
130 pad++;
138 if (pad) {
139 if (pad == 1)
141 else if (pad == 2)
/freebsd-10.0-release/lib/libc/stdio/
H A Dmktemp.c112 char *pad; local
190 pad = strchr(padchar, *trv);
191 if (pad == NULL) {
197 *trv = (*++pad == '\0') ? padchar[0] : *pad;
/freebsd-10.0-release/sys/xen/interface/io/
H A Dfsif.h57 int32_t pad; member in struct:fsif_read_request
65 int32_t pad; member in struct:fsif_write_request
90 int32_t pad; member in struct:fsif_truncate_request
106 int8_t pad; member in struct:fsif_create_request
143 uint8_t pad; member in struct:fsif_request
/freebsd-10.0-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-10.0-release/crypto/openssl/apps/
H A Drsautl.c101 unsigned char *rsa_in = NULL, *rsa_out = NULL, pad; local
117 pad = RSA_PKCS1_PADDING;
160 else if(!strcmp(*argv, "-raw")) pad = RSA_NO_PADDING;
161 else if(!strcmp(*argv, "-oaep")) pad = RSA_PKCS1_OAEP_PADDING;
162 else if(!strcmp(*argv, "-ssl")) pad = RSA_SSLV23_PADDING;
163 else if(!strcmp(*argv, "-pkcs")) pad = RSA_PKCS1_PADDING;
164 else if(!strcmp(*argv, "-x931")) pad = RSA_X931_PADDING;
281 rsa_outlen = RSA_public_decrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
285 rsa_outlen = RSA_private_encrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
289 rsa_outlen = RSA_public_encrypt(rsa_inlen, rsa_in, rsa_out, rsa, pad);
[all...]
/freebsd-10.0-release/sys/boot/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-10.0-release/contrib/wpa/src/tls/
H A Dpkcs5.c175 u8 *eb, pad; local
212 pad = eb[enc_data_len - 1];
213 if (pad > 8) {
214 wpa_printf(MSG_INFO, "PKCS #5: Invalid PS octet 0x%x", pad);
218 for (i = enc_data_len - pad; i < enc_data_len; i++) {
219 if (eb[i] != pad) {
221 eb + enc_data_len - pad, pad);
228 eb, enc_data_len - pad);
230 *data_len = enc_data_len - pad;
[all...]

Completed in 164 milliseconds

1234567891011>>