Searched refs:segment (Results 1 - 25 of 87) sorted by relevance

1234

/freebsd-10.0-release/contrib/binutils/include/elf/
H A Dinternal.h64 unsigned long p_type; /* Identifies program segment type */
230 /* Next program segment. */
232 /* Program segment type. */
234 /* Program segment flags. */
236 /* Program segment physical address. */
238 /* Program segment virtual address offset from section vma. */
240 /* Program segment alignment. */
248 /* Whether the p_align field is valid; if not, PT_LOAD segment
251 /* Whether this segment includes the file header. */
253 /* Whether this segment include
[all...]
/freebsd-10.0-release/contrib/binutils/gas/config/
H A Dtc-score.h38 #define md_relax_frag(segment, fragp, stretch) score_relax_frag (segment, fragp, stretch)
H A Dtc-mips.h49 #define md_relax_frag(segment, fragp, stretch) \
50 mips_relax_frag(segment, fragp, stretch)
/freebsd-10.0-release/crypto/openssl/crypto/bio/
H A Dbss_rtcp.c223 int status, i, segment, length; local
229 for ( i = 0; i < inl; i += segment ) {
230 segment = inl - i;
231 if ( segment > sizeof(ctx->msg.data) ) segment = sizeof(ctx->msg.data);
234 ctx->msg.length = segment;
235 memmove ( ctx->msg.data, &in[i], segment );
236 status = put ( b->num, (char *) &ctx->msg, segment + RPC_HDR_SIZE );
/freebsd-10.0-release/sys/boot/i386/libi386/
H A Dpxetramp.s30 __bangpxeseg: .word 0x0000 # segment
37 __pxenvseg: .word 0x0000 # segment
H A Dpxe.c150 pxe_p = (pxe_t *)PTOV(pxenv_p->PXEPtr.segment * 16 +
228 pxe_p->EntryPointSP.segment,
232 pxenv_p->RMEntry.segment, pxenv_p->RMEntry.offset);
243 bcopy(PTOV((gci_p->Buffer.segment << 4) + gci_p->Buffer.offset),
531 __pxenvseg = pxenv_p->RMEntry.segment;
554 __bangpxeseg = pxe_p->EntryPointSP.segment;
643 udpwrite_p->buffer.segment = VTOPSEG(pkt);
678 udpread_p->buffer.segment = VTOPSEG(data_buffer);
/freebsd-10.0-release/contrib/groff/src/preproc/pic/
H A Dobject.h160 struct segment { struct
163 segment *next;
164 segment(const position &, int, segment *);
195 segment *segment_list;
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_ra_serf/
H A Dgetlocationsegments.c51 /* location segment callback function/baton */
69 { REPORT, S_, "location-segment", SEGMENT,
89 svn_location_segment_t segment;
100 segment.path = path; /* may be NULL */
101 segment.range_start = SVN_STR_TO_REV(start_str);
102 segment.range_end = SVN_STR_TO_REV(end_str);
103 SVN_ERR(gls_ctx->receiver(&segment, gls_ctx->receiver_baton, scratch_pool));
87 svn_location_segment_t segment; local
/freebsd-10.0-release/sys/netgraph/
H A Dng_frame_relay.c103 const static struct segment { struct
114 #define SHIFTIN(segment, byte, dlci) \
116 (dlci) <<= (segment)->width; \
118 (((byte) & (segment)->mask) >> (segment)->shift); \
121 #define SHIFTOUT(segment, byte, dlci) \
123 (byte) |= (((dlci) << (segment)->shift) & (segment)->mask); \
124 (dlci) >>= (segment)->width; \
/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-address.h191 #define CVMX_ADD_SEG32(segment, add) (((int32_t)segment << 31) | (int32_t)(add))
201 #define CVMX_ADD_SEG(segment, add) ((((uint64_t)segment) << 62) | (add))
/freebsd-10.0-release/sbin/pfctl/
H A Dpfctl.h106 struct segment { struct
107 LIST_ENTRY(segment) _next;
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_client/
H A Dlog.c59 /* A location segment callback for obtaining the copy source of
63 copyfrom_info_receiver(svn_location_segment_t *segment,
75 /* If this is the first segment, it's not of interest to us. Otherwise
76 (so long as this segment doesn't represent a history gap), it holds
82 else if (segment->path)
84 /* The end of the second non-gap segment is the location copied from. */
85 copyfrom_info->path = apr_pstrdup(copyfrom_info->pool, segment->path);
86 copyfrom_info->rev = segment->range_end;
578 const svn_location_segment_t *segment =
581 if (rev < segment
62 copyfrom_info_receiver(svn_location_segment_t *segment, void *baton, apr_pool_t *pool) argument
577 const svn_location_segment_t *segment = local
869 svn_location_segment_t *segment = apr_pcalloc(pool, sizeof(*segment)); local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/perlasm/
H A Dx86masm.pl11 $segment="";
93 $segment = ".text\$";
131 push(@out,"$segment ENDS\n");
189 { push(@out,"$segment\tENDS\n_DATA\tSEGMENT\n"); $segment="_DATA"; }
H A Dx86nasm.pl119 ${drdecor}segment .bss
158 segment .CRT\$XCU data align=4
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_repos/
H A Drev_hunt.c817 maybe_crop_and_send_segment(svn_location_segment_t *segment,
824 /* We only want to transmit this segment if some portion of it
826 if (! ((segment->range_start > start_rev)
827 || (segment->range_end < end_rev)))
829 /* Correct our segment range when the range straddles one of
831 if (segment->range_start < end_rev)
832 segment->range_start = end_rev;
833 if (segment->range_end > start_rev)
834 segment->range_end = start_rev;
835 SVN_ERR(receiver(segment, receiver_bato
816 maybe_crop_and_send_segment(svn_location_segment_t *segment, svn_revnum_t start_rev, svn_revnum_t end_rev, svn_location_segment_receiver_t receiver, void *receiver_baton, apr_pool_t *pool) argument
903 svn_location_segment_t *segment; local
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dtypes.c330 svn_location_segment_dup(const svn_location_segment_t *segment, argument
336 *new_segment = *segment;
337 if (segment->path)
338 new_segment->path = apr_pstrdup(pool, segment->path);
/freebsd-10.0-release/sys/dev/bm/
H A Dif_bmvar.h70 bus_dma_segment_t segment; member in struct:bm_rxsoft
/freebsd-10.0-release/contrib/binutils/bfd/
H A Delf.c922 /* This section is part of this segment if its file
923 offset plus size lies within the segment's memory
925 loaded data lies within the extent of the segment.
929 though, as a perfectly valid initialised segment can
932 executables need to be able to have a segment which
947 sections, but that doesn't work if the segment
950 the segment LMA. It is assumed that the
951 segment will contain sections with contiguous
958 be placed at the end of one segment or the
2585 of the form segment<NU
5248 Elf_Internal_Phdr *segment; local
5856 Elf_Internal_Phdr *segment; local
5983 Elf_Internal_Phdr *segment; local
[all...]
/freebsd-10.0-release/sys/fs/nandfs/
H A Dnandfs_sufile.c76 /* Alloc new segment */
103 /* Get last allocated segment */
154 DPRINTF(SEG, ("%s: cannot allocate segment \n",
229 nandfs_error("%s: cannot preallocate new segment\n", __func__);
238 /* Update block count of segment */
274 /* Make segment free */
494 uint32_t nmembs, uint64_t segment)
497 return (nandfs_get_segment_info_filter(fsdev, nsi, nmembs, segment,
503 struct nandfs_suinfo *nsi, uint32_t nmembs, uint64_t segment,
523 for (i = 0; i < nmembs; segment
493 nandfs_get_segment_info(struct nandfs_device *fsdev, struct nandfs_suinfo *nsi, uint32_t nmembs, uint64_t segment) argument
502 nandfs_get_segment_info_filter(struct nandfs_device *fsdev, struct nandfs_suinfo *nsi, uint32_t nmembs, uint64_t segment, uint64_t *nsegs, uint32_t filter, uint32_t nfilter) argument
[all...]
/freebsd-10.0-release/contrib/binutils/ld/scripttempl/
H A Dnw.sc18 # DATA_PLT - .plt should be in data segment, not text segment.
43 /* Read-only sections, merged into text segment: */
92 /* Read-write section, merged into data segment: */
107 we can shorten the on-disk segment size. */
/freebsd-10.0-release/sys/boot/i386/pxeldr/
H A Dpxeldr.S47 .set AOUT_TEXT,0x04 # text segment size
48 .set AOUT_DATA,0x08 # data segment size
82 movw %es, %cx # save PXENV+ segment
135 # segment
137 # segment
150 movsb # text segment
152 andl $~(MEM_PAGE_SIZE - 1), %edi # for the data segment
153 movl end+AOUT_DATA, %ecx # size of the data segment
155 movsb # data segment
184 movw %ax, %es # to segment
[all...]
/freebsd-10.0-release/usr.sbin/mptable/
H A Dmptable.c390 u_short segment; local
401 readEntry( &segment, 2 );
402 if ( segment ) { /* search EBDA */
403 target = (u_int32_t)segment << 4;
424 readEntry( &segment, 2 );
425 --segment; /* less ONE_KBYTE */
426 target = segment * 1024;
429 target, segment );
/freebsd-10.0-release/sys/powerpc/ps3/
H A Dif_glcreg.h62 bus_dma_segment_t segment; member in struct:glc_rxsoft
/freebsd-10.0-release/sys/boot/pc98/boot0.5/
H A Dboot.s63 # Step 2: Calculate the segment address of the bootstrap routine
107 movw b_bootseg, %es # %es = boot segment
114 push %es # Boot segment
/freebsd-10.0-release/sys/mips/nlm/hal/
H A Dnlmsaelib.h67 * segment size is given as page size which is 4K by default
180 uint64_t segment[1][2]; member in struct:nlm_crypto_pkt_param
579 param->segment[seg][0] = nlm_crypto_form_pkt_desc4(len,
598 param->segment[seg][1] = nlm_crypto_form_pkt_desc5(len, 1, 0,

Completed in 124 milliseconds

1234