Searched refs:pad (Results 126 - 150 of 399) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/arm/cavium/cns11xx/
H A Dif_ecevar.h185 uint8_t pad[2]; member in struct:arl_table_entry_t
/freebsd-11-stable/sys/dev/amr/
H A Damrreg.h390 u_int8_t pad[0x80]; member in union:amr_enquiry3::__anon9098
407 u_int8_t res1[263]; /* pad to 1024 bytes */
441 u_int8_t pad[8]; /* Needed for alignment */ member in struct:amr_mailbox64
534 u_int8_t pad[4]; member in struct:amr_linux_ioctl::__anon9099::__anon9100
541 u_int8_t pad[4]; member in struct:amr_linux_ioctl
/freebsd-11-stable/sys/netgraph/netflow/
H A Dnetflow.h74 uint16_t pad; /* Pad to word boundary */ member in struct:netflow_v5_header
/freebsd-11-stable/sys/xen/interface/arch-x86/
H A Dxen-x86_32.h150 unsigned long pad[5]; /* sizeof(vcpu_info_t) == 64 */ member in struct:arch_vcpu_info
H A Dxen-x86_64.h184 unsigned long pad; /* sizeof(vcpu_info_t) == 64 */ member in struct:arch_vcpu_info
/freebsd-11-stable/tools/tools/vt/mkkfont/
H A Dmkkfont.c51 uint16_t pad; member in struct:file_header
/freebsd-11-stable/sys/dev/usb/net/
H A Dif_usie.c784 uint8_t pad; local
856 pad = (rxd->hip.id & USIE_HIP_PAD) ? 1 : 0;
857 ipl = (len - pad - ETHER_HDR_LEN);
863 diff = sizeof(struct usie_desc) + ipl + pad;
893 m->m_data += (sizeof(struct usie_desc) + pad);
908 m_copydata(m, sizeof(struct usie_desc) + pad, ipl, mtod(m0, caddr_t));
1070 uint8_t pad; local
1104 pad = (hip->id & USIE_HIP_PAD) ? 1 : 0;
1106 DPRINTF("hip.id=%x hip.len=%d actlen=%u pad=%d\n",
1107 hip->id, be16toh(hip->len), actlen, pad);
1519 uint8_t pad; local
[all...]
/freebsd-11-stable/sys/i386/bios/
H A Dmca_machdep.c62 u_int8_t pad[3]; member in struct:sys_config
/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_dis.c219 const char *pad; local
224 pad = "\t\t";
228 pad = "\t";
232 (void) fprintf(fp, "%s! DT_TYPE(%u) = %s", pad,
/freebsd-11-stable/sys/contrib/ck/include/spinlock/
H A Danderson.h52 char pad[CK_MD_CACHELINE - sizeof(unsigned int) * 3 - sizeof(void *)]; member in struct:ck_spinlock_anderson
/freebsd-11-stable/stand/ficl/
H A Dvm.c356 ** Does vmGetWord and copies the result to the pad as a NULL terminated
358 ** to fit in the pad, it is truncated.
363 char *cp = (char *)pVM->pad;
509 pVM->pad[0] = '\0';
576 vsprintf(pVM->pad, fmt, va);
577 vmTextOut(pVM, pVM->pad, 1);
/freebsd-11-stable/stand/i386/libi386/
H A Dmultiboot.h219 multiboot_uint32_t pad; member in struct:multiboot_mod_list
/freebsd-11-stable/usr.sbin/fwcontrol/
H A Dfwdv.c102 char *pad, *buf; local
116 pad = malloc(DSIZE*MAXBLOCKS);
117 memset(pad, 0xff, DSIZE*MAXBLOCKS);
220 wbuf[vec].iov_base = pad;
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dcrypto_nettle.c310 size_t pubkey_len, pad; local
324 pad = prime_len - pubkey_len;
325 os_memmove(pubkey + pad, pubkey, pubkey_len);
326 os_memset(pubkey, 0, pad);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_atomic_clang_mips.h36 char pad[32 - sizeof(int)]; member in struct:__sanitizer::__anon1169
/freebsd-11-stable/sys/dev/patm/
H A Dif_patm_tx.c410 u_int plen, pad, space; local
425 pad = 48 - plen % 48;
426 m0->m_pkthdr.len += pad;
428 if (M_TRAILINGSPACE(last) >= pad) {
429 bzero(last->m_data + last->m_len, pad);
430 last->m_len += pad;
434 if (space + M_TRAILINGSPACE(last) >= pad) {
437 bzero(last->m_data + last->m_len, pad);
438 last->m_len += pad;
448 bzero(mtod(m, u_char *), pad); local
[all...]
/freebsd-11-stable/bin/pax/
H A Dtar.c176 * convert and blank pad if there is space
231 * convert and blank pad if there is space
252 * pad headers with 0.
414 arcn->pad = 0;
478 arcn->pad = TAR_PAD(arcn->sb.st_size);
573 arcn->pad = 0;
579 * dirs, so no pad.
588 * no data follows this file, so no pad
597 * no data follows this file, so no pad
606 * data follows this file, so set the pad
[all...]
/freebsd-11-stable/sys/dev/drm/
H A Dsavage_bci.c426 unsigned int wrap, pad, align, len, i; local
434 /* pad length to multiples of 2 entries
436 pad = -dev_priv->dma_pages[cur].used & 1;
437 align = -(dev_priv->dma_pages[cur].used + pad) & 7;
440 "pad=%u, align=%u\n",
442 dev_priv->dma_pages[cur].used, pad, align);
444 /* pad with noops */
445 if (pad) {
448 dev_priv->dma_pages[cur].used += pad;
449 while (pad !
[all...]
/freebsd-11-stable/lib/libc/stdio/
H A Dxprintf_float.c335 * floating precision; finally, if LADJUST, pad with blanks.
337 * Compute actual size, so we know how much to pad.
347 if (pi->pad != '0' && pi->left == 0)
360 if (pi->pad == '0' && pi->left == 0)
/freebsd-11-stable/sys/geom/raid/
H A Dmd_ddf.h119 uint8_t pad[10]; member in struct:ddf_pathinfo::__anon12051
323 uint8_t pad[2]; member in struct:ddf_bbm_entry
/freebsd-11-stable/crypto/openssh/
H A Dopacket.h124 #define packet_add_padding(pad) \
125 sshpkt_add_padding(active_state, (pad))
/freebsd-11-stable/sys/dev/ath/
H A Dif_athioctl.h218 uint16_t pad[1]; member in struct:ath_rateioctl_rt
233 uint64_t pad; member in union:ath_rateioctl::__anon4369
321 uint8_t vh_pad[2]; /* pad to DWORD boundary */
/freebsd-11-stable/sys/dev/usb/wlan/
H A Dif_runvar.h253 uint8_t pad[64]; member in union:run_softc::__anon5270
259 uint8_t pad[64]; member in union:run_softc::__anon5271
/freebsd-11-stable/sys/net/
H A Dnetmap.h763 uint32_t pad[12]; /* pad to a 64 bytes cacheline */ member in struct:nm_csb_atok
771 uint32_t pad[13]; member in struct:nm_csb_ktoa
/freebsd-11-stable/sys/arm/freescale/imx/
H A Dimx_gpio.c512 u_int newflags, pad; local
518 * since we have no connection to the pad config registers from here).
522 * read the current state of the pad and preset the DR register to drive
535 pad = 0;
537 pad = 1;
540 pad = READ4(sc, IMX_GPIO_PSR_REG);
542 pad = READ4(sc, IMX_GPIO_DR_REG);
543 pad = (pad >> pin->gp_pin) & 1;
546 SET4(sc, IMX_GPIO_DR_REG, (pad << pi
[all...]

Completed in 316 milliseconds

1234567891011>>