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

1234567891011>>

/freebsd-11-stable/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)"), (void *) 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-11-stable/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)"), (void *)menu, pad));
68 if (!isprint(UChar(pad)))
72 menu->pad = (unsigned char)pad;
86 | Return Values : The pad character
92 returnCode(Normalize_Menu(menu)->pad);
/freebsd-11-stable/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-11-stable/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;
47 u8 cbc[AES_BLOCK_SIZE], pad[AES_BLOCK_SIZE]; local
89 os_memset(pad, 0, AES_BLOCK_SIZE);
90 aes_encrypt(ctx, pad, pa
[all...]
/freebsd-11-stable/contrib/elftoolchain/libpe/
H A Dlibpe_utils.c54 libpe_pad(PE *pe, size_t pad) argument
60 for (; pad > 0; pad -= s) {
61 s = pad > sizeof(tmp) ? sizeof(tmp) : pad;
/freebsd-11-stable/contrib/libpcap/pcap/
H A Dcan_socketcan.h51 uint8_t pad; member in struct:__anon627
H A Dnflog.h59 uint8_t pad; /* padding to 32 bits */ member in struct:nflog_packet_hdr
64 uint16_t pad; /* padding to 32-bit boundary */ member in struct:nflog_hwaddr
/freebsd-11-stable/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-11-stable/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-11-stable/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-11-stable/include/protocols/
H A Dtalkd.h62 u_char pad; member in struct:__anon6522
81 u_char pad; member in struct:__anon6523
/freebsd-11-stable/sys/xen/interface/
H A Dpmu.h67 uint32_t pad; member in struct:xen_pmu_params
117 uint8_t pad[6]; member in struct:xen_pmu_data
H A Dnmi.h64 unsigned long pad; member in struct:xennmi_callback
/freebsd-11-stable/sys/xen/interface/arch-x86/
H A Dpmu.h91 uint8_t pad[3]; member in struct:xen_pmu_regs
119 uint8_t pad[XENPMU_REGS_PAD_SZ]; member in union:xen_pmu_arch::__anon13516
133 uint64_t pad; member in union:xen_pmu_arch::__anon13517
151 uint8_t pad[XENPMU_CTXT_PAD_SZ]; member in union:xen_pmu_arch::__anon13518
/freebsd-11-stable/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-11-stable/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-11-stable/sys/riscv/include/
H A Ducontext.h56 int pad; member in struct:fpregs
/freebsd-11-stable/sys/dev/liquidio/base/
H A Dlio_image.h65 __be32 pad; member in struct:lio_firmware_file_header
/freebsd-11-stable/sys/xen/interface/io/
H A Dnetif.h210 * | id | pad | gref |
259 * |type |flags| size |type | pad | features |
348 uint8_t pad; member in struct:netif_extra_info::__anon13555::__anon13556
364 uint16_t pad[3]; member in union:netif_extra_info::__anon13555
377 uint16_t pad; member in struct:netif_rx_request
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-11-stable/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-11-stable/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-11-stable/crypto/openssl/crypto/asn1/
H A Dx_long.c114 int clen, pad, i; local
133 /* If MSB of leading octet set we need to pad */
135 pad = 1;
137 pad = 0;
143 if (pad)
152 return clen + pad;
165 * Check possible pad byte. Worst case, we're skipping past actual
/freebsd-11-stable/usr.bin/hexdump/
H A Dconv.c55 int converr, pad, width; local
147 pad = 3 - width;
148 if (pad < 0)
149 pad = 0;
150 (void)printf("%*s%C", pad, "", wc);

Completed in 342 milliseconds

1234567891011>>