Searched refs:pad (Results 101 - 125 of 399) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/sys/
H A Dgmon.h133 u_short pad; member in struct:tostruct
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_ipc.h51 long pad[4]; member in struct:svr4_ipc_perm
H A Dsvr4_stropts.h138 long pad[61]; member in struct:svr4_strmcmd
/freebsd-11-stable/sys/contrib/ck/include/
H A Dck_cc.h61 #define CK_CC_PAD(x) union { char pad[x]; }
/freebsd-11-stable/sys/dev/hyperv/utilities/
H A Dhv_kvp.h169 uint16_t pad; member in struct:hv_kvp_hdr
/freebsd-11-stable/contrib/gcclibs/libdecnumber/
H A Ddecimal128.c79 Int pad = 0; /* coefficient pad digits */ local
157 pad = exp - DECIMAL128_Ehigh;
162 decDensePackCoeff (dn, d128->bytes, sizeof (d128->bytes), pad);
H A Ddecimal32.c79 Int pad = 0; /* coefficient pad digits */ local
157 pad = exp - DECIMAL32_Ehigh;
162 decDensePackCoeff (dn, d32->bytes, sizeof (d32->bytes), pad);
H A Ddecimal64.c79 Int pad = 0; /* coefficient pad digits */ local
156 pad = exp - DECIMAL64_Ehigh;
161 decDensePackCoeff (dn, d64->bytes, sizeof (d64->bytes), pad);
/freebsd-11-stable/bin/pax/
H A Dcpio.c136 * we have file data, set up skip (pad is set in the format
294 arcn->pad = 0L;
399 arcn->pad = 0L;
585 arcn->pad = 0L;
634 * if not a link (or a file with no data), calculate pad size (for
643 arcn->pad = VCPIO_PAD(arcn->sb.st_size);
738 * much to pad.
740 arcn->pad = VCPIO_PAD(arcn->sb.st_size);
758 arcn->pad = 0L;
767 arcn->pad
[all...]
/freebsd-11-stable/sys/net80211/
H A D_ieee80211.h375 uint16_t pad; /* reserve */ member in struct:ieee80211_roamparam
387 short pad[2]; member in struct:ieee80211_regdomain
402 uint8_t pad[2]; member in struct:ieee80211_mimo_info
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/
H A Dib_mad_rmpp.c443 int hdr_size, data_size, pad; local
452 pad = OPA_MGMT_RMPP_DATA - be32_to_cpu(rmpp_mad->rmpp_hdr.paylen_newwin);
453 if (pad > OPA_MGMT_RMPP_DATA || pad < 0)
454 pad = 0;
457 pad = IB_MGMT_RMPP_DATA - be32_to_cpu(rmpp_mad->rmpp_hdr.paylen_newwin);
458 if (pad > IB_MGMT_RMPP_DATA || pad < 0)
459 pad = 0;
462 return hdr_size + rmpp_recv->seg_num * data_size - pad;
[all...]
/freebsd-11-stable/contrib/libpcap/
H A Dpcap-pf.c110 register u_int pad; local
141 pad = pc->fddipad;
186 /* Calculate inc before possible pad update */
212 h.len = sp->ens_count - pad;
213 p += pad;
214 buflen -= pad;
/freebsd-11-stable/sys/dev/etherswitch/arswitch/
H A Darswitch_8327.c364 * Parse the pad configuration from the boot hints.
384 int pad)
391 snprintf(sbuf, 128, "pad.%d.mode", pad);
400 snprintf(sbuf, 128, "pad.%d.rxclk_sel", pad);
406 snprintf(sbuf, 128, "pad.%d.txclk_sel", pad);
412 snprintf(sbuf, 128, "pad.%d.txclk_delay_sel", pad);
382 ar8327_fetch_pdata_pad(struct arswitch_softc *sc, struct ar8327_pad_cfg *pc, int pad) argument
[all...]
/freebsd-11-stable/sys/dev/mlx4/mlx4_en/
H A Dmlx4_en_tx.c649 int pad; local
814 pad = DIV_ROUND_UP(ds_cnt, DS_FACT);
815 pad = (~(ring->prod + pad)) & ring->size_mask;
817 if (unlikely(pad < (MLX4_EN_TX_WQE_MAX_WQEBBS - 1))) {
820 * pad in order to achieve a TX ring wraparound:
822 pad = (DS_FACT * (pad + 1));
828 pad = 0;
832 ds_cnt += pad;
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Doutput.c472 int pad; local
559 pad = new_offset % shdr.sh_addralign;
561 if (pad)
562 new_offset += shdr.sh_addralign - pad;
675 pad = new_offset % shdr.sh_addralign;
677 if (pad)
678 new_offset += shdr.sh_addralign - pad;
/freebsd-11-stable/sbin/ifconfig/
H A Difbridge.c152 char *p, *pad; local
155 pad = strdup(prefix);
156 if (pad == NULL)
159 for (p = pad; *p != '\0'; p++) {
183 printf("%s", pad);
196 printf("\n%s", pad);
210 free(pad);
/freebsd-11-stable/contrib/ipfilter/iplang/
H A Diplang_y.y1101 int val, len, val2, pad, optval;
1142 for (pad = 4 - (len & 3); pad; pad--) {
1178 int pad;
1183 * pad out so that we have a multiple of 4 bytes in size fo the
1188 for (pad = 3 - (canip->ah_optlen & 3); pad; pad--) {
1196 for (pad
[all...]
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dmd5.c57 /* This array contains the bytes used to pad the buffer to the next
102 size_t pad; local
109 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
110 memcpy (&ctx->buffer[bytes], fillbuf, pad);
113 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
114 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
118 md5_process_block (ctx->buffer, bytes + pad + 8, ctx);
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dmd5.c57 /* This array contains the bytes used to pad the buffer to the next
102 size_t pad; local
109 pad = bytes >= 56 ? 64 + 56 - bytes : 56 - bytes;
110 memcpy (&ctx->buffer[bytes], fillbuf, pad);
113 *(md5_uint32 *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3);
114 *(md5_uint32 *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) |
118 md5_process_block (ctx->buffer, bytes + pad + 8, ctx);
/freebsd-11-stable/contrib/flex/
H A Dtables.c129 int pad, bwritten = 0;
131 pad = yypad64 (wr->total_written);
132 while (pad-- > 0)
128 int pad, bwritten = 0; local
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A DMakefile.am353 data/bleichenbacher-sf-pad-correct.pem \
432 data/yutaka-pad-broken-ca.pem \
433 data/yutaka-pad-broken-cert.pem \
434 data/yutaka-pad-ok-ca.pem \
435 data/yutaka-pad-ok-cert.pem \
436 data/yutaka-pad.key
/freebsd-11-stable/contrib/binutils/bfd/
H A Dmerge.c293 char *pad = NULL; local
299 pad = bfd_zmalloc ((bfd_size_type) 1 << alignment_power);
300 if (pad == NULL)
312 if (bfd_bwrite (pad, len, abfd) != len)
329 && bfd_bwrite (pad, off, abfd) != off)
332 if (pad != NULL)
333 free (pad);
337 if (pad != NULL)
338 free (pad);
/freebsd-11-stable/contrib/ldns/
H A Ddnssec_sign.c317 size_t pad; local
345 pad = 20 - (size_t) BN_num_bytes(sig->r);
346 if (pad > 0) {
347 memset(data + 1, 0, pad);
349 BN_bn2bin(sig->r, (unsigned char *) (data + 1) + pad);
351 pad = 20 - (size_t) BN_num_bytes(sig->s);
352 if (pad > 0) {
353 memset(data + 1 + SHA_DIGEST_LENGTH, 0, pad);
355 BN_bn2bin(sig->s, (unsigned char *) (data + 1 + SHA_DIGEST_LENGTH + pad));
/freebsd-11-stable/contrib/gdb/include/
H A Doasys.h190 bfd_byte pad[256]; member in union:oasys_record_union
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-tim.h110 uint64_t pad; member in struct:__anon8770

Completed in 274 milliseconds

1234567891011>>