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

1234567891011>>

/freebsd-11-stable/bin/pax/
H A Dar_subs.c129 if (rd_skip(arcn->skip + arcn->pad) == 1)
197 (void)rd_skip(arcn->skip + arcn->pad);
215 (void)rd_skip(arcn->skip + arcn->pad);
220 (void)rd_skip(arcn->skip + arcn->pad);
224 (void)rd_skip(arcn->skip + arcn->pad);
239 (void)rd_skip(arcn->skip + arcn->pad);
251 (void)rd_skip(arcn->skip + arcn->pad);
256 (void)rd_skip(arcn->skip + arcn->pad);
260 (void)rd_skip(arcn->skip + arcn->pad);
296 (void)rd_skip(arcn->skip + arcn->pad);
[all...]
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...]
H A Dftree.c451 arcn->pad = 0;
H A Dpax.h125 /* set the skip and pad fields so the format */
141 /* function sets the skip and pad fields so */
199 off_t pad; /* bytes of padding after file xfer */ member in struct:archd
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/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/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Dctf.c632 static const char pad[8] = { 0 }; local
635 ctf_buf_write(buf, pad, (topad > 8 ? 8 : topad));
708 * integers; we pad these out to the next 4-byte boundary if needed.
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/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/contrib/binutils/bfd/
H A Daoutx.h890 int pad = 0; local
905 obj_textsec (abfd)->size += pad;
906 pos += pad;
907 vma += pad;
919 obj_datasec (abfd)->size += pad;
920 pos += pad;
921 vma += pad;
929 pad = obj_bsssec (abfd)->vma - vma;
930 if (pad > 0)
932 obj_datasec (abfd)->size += pad;
1067 int pad; local
[all...]
H A Dcoff-rs6000.c1714 /* Limit pad to <= 4096. */
1768 bfd_size_type pad = 0;
1773 pad = 1 << text_align_power;
1774 pad -= (*offset + ar_header_size) & (pad - 1);
1776 if (! do_pad (out_bfd, pad))
1779 *offset += pad;
1862 ?? pad to even bytes.
2481 ?? pad to even bytes.
1765 bfd_size_type pad = 0; local
H A Dcoffcode.h3113 /* With PE we have to pad each section to be a multiple of its
3168 bfd_vma pad;
3174 pad = abs (current->vma - sofar) % align;
3176 if (pad)
3178 pad = align - pad;
3179 sofar += pad;
3232 /* For PE we need to make sure we pad out to the aligned
3167 bfd_vma pad; local
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/binutils/binutils/
H A Dresbin.c1375 windres_put_16 (wrbfd, ba.pad, 0);
1644 windres_put_8 (wrbfd, bgii.pad, 0);
H A Dwindint.h314 bfd_byte pad[2]; member in struct:bin_accelerator
748 bfd_byte pad[1]; member in struct:bin_group_icon_item
/freebsd-11-stable/contrib/binutils/gas/config/
H A Dtc-ia64.c3088 int len, size, pad; local
3095 /* pad to pointer-size boundary. */
3096 pad = len % md.pointer_size;
3097 if (pad != 0)
3098 len += md.pointer_size - pad;
3118 int len, size, pad; local
3126 /* pad to pointer-size boundary. */
3127 pad = len % md.pointer_size;
3128 if (pad != 0)
3129 len += md.pointer_size - pad;
3789 int size, pad; local
[all...]
/freebsd-11-stable/contrib/binutils/ld/
H A Dldlang.c4007 lang_statement_union_type *pad = NULL;
4010 pad = ((lang_statement_union_type *)
4012 if (pad != NULL
4013 && pad->header.type == lang_padding_statement_enum
4014 && pad->padding_statement.output_section == output_section)
4016 /* Use the existing pad statement. */
4018 else if ((pad = *ptr) != NULL
4019 && pad->header.type == lang_padding_statement_enum
4020 && pad->padding_statement.output_section == output_section)
4022 /* Use the existing pad statemen
4005 lang_statement_union_type *pad = NULL; local
[all...]
/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/dialog/
H A Ddialog.pl413 local ( $outtext, $i, $j, @lines, $wrap, @words, $pos, $pad );
416 $pad = 3; # leave 3 spaces around each line
417 $pos = $pad; # current insert position
431 $pos = $pad;
440 if ((length($words[$j]) + $pos) > $width - $pad) {
442 $pos = $pad;
/freebsd-11-stable/contrib/diff/lib/
H A Dstrftime.c164 if (pad == L_('0')) \
462 int pad = 0; /* Padding for number ('-', '_', or 0). */ local
575 pad = *f;
838 if (pad != L_('0') && pad != L_('-'))
839 pad = L_('_');
885 if (pad != L_('-'))
892 if (pad == L_('_'))
/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/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/contrib/gcc/config/arm/
H A Dunwind-arm.c74 _uw pad; member in struct:vfp_regs
305 /* Skip the pad word */
697 /* Upload the registers to enter the landing pad. */
885 /* Landing pad address is 31-bit pc-relative offset. */
892 /* Setup the VRS to enter the landing pad. */
/freebsd-11-stable/contrib/gcc/config/rs6000/
H A Dlinux-unwind.h45 unsigned int pad[2]; member in struct:gcc_vregs
80 unsigned long pad[28]; member in struct:gcc_ucontext
82 unsigned long pad[12];
109 unsigned long pad[7]; member in struct:sigframe
135 unsigned long pad[2]; member in struct:rt_sigframe
166 unsigned long pad[7]; member in struct:sigframe
/freebsd-11-stable/contrib/gcc/config/soft-fp/
H A Dextended.h268 _FP_W_TYPE pad : (_FP_W_TYPE_SIZE - 1 - _FP_EXPBITS_E); member in struct:_FP_UNION_E::__anon1278

Completed in 1039 milliseconds

1234567891011>>