HomeSort by: relevance | last modified time | path
    Searched refs:boundary (Results 1 - 25 of 601) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/contrib/
dg-out-generator.pl 51 my $boundary;
55 $boundary = gboundary $_;
56 s/$escapees/$boundary/g;
68 # Then split out the boundary, replacing it with .*.
69 s/$boundary/.*/g if defined $boundary;
  /src/crypto/external/apache2/openssl/dist/crypto/asn1/
bio_ndef.c 39 /* Boundary where content is inserted */
40 unsigned char **boundary; member in struct:ndef_aux_st
93 sarg.boundary = NULL;
116 ndef_aux->boundary = sarg.boundary;
150 if (*ndef_aux->boundary == NULL)
153 *plen = *ndef_aux->boundary - *pbuf;
208 sarg.boundary = ndef_aux->boundary;
224 if (*ndef_aux->boundary == NULL
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/asn1/
bio_ndef.c 39 /* Boundary where content is inserted */
40 unsigned char **boundary; member in struct:ndef_aux_st
93 sarg.boundary = NULL;
116 ndef_aux->boundary = sarg.boundary;
152 if (!*ndef_aux->boundary)
155 *plen = *ndef_aux->boundary - *pbuf;
210 sarg.boundary = ndef_aux->boundary;
225 if (!*ndef_aux->boundary)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
namespace.h 116 BOUNDARY, the last line of the current block. */
117 bool valid_line (unsigned int boundary) const;
  /src/external/gpl3/gdb/dist/gdb/
namespace.h 116 BOUNDARY, the last line of the current block. */
117 bool valid_line (unsigned int boundary) const;
  /src/sys/arch/arc/jazz/
jazzdmatlbvar.h 30 jazz_dma_pte_t *jazz_dmatlb_alloc(int npte, bus_size_t boundary,
  /src/external/gpl3/binutils/dist/bfd/
bfd-in.h 145 /* Align an address upward to a boundary, expressed as a number of bytes.
146 E.g. align to an 8-byte boundary with argument of 8. Take care never
147 to wrap around if the address is within boundary-1 of the end of the
149 #define BFD_ALIGN(this, boundary) \
150 ((((bfd_vma) (this) + (boundary) - 1) >= (bfd_vma) (this)) \
151 ? (((bfd_vma) (this) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary)-1)) \
  /src/external/gpl3/binutils.old/dist/bfd/
bfd-in.h 145 /* Align an address upward to a boundary, expressed as a number of bytes.
146 E.g. align to an 8-byte boundary with argument of 8. Take care never
147 to wrap around if the address is within boundary-1 of the end of the
149 #define BFD_ALIGN(this, boundary) \
150 ((((bfd_vma) (this) + (boundary) - 1) >= (bfd_vma) (this)) \
151 ? (((bfd_vma) (this) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary)-1)) \
  /src/external/gpl3/gdb.old/dist/bfd/
bfd-in.h 145 /* Align an address upward to a boundary, expressed as a number of bytes.
146 E.g. align to an 8-byte boundary with argument of 8. Take care never
147 to wrap around if the address is within boundary-1 of the end of the
149 #define BFD_ALIGN(this, boundary) \
150 ((((bfd_vma) (this) + (boundary) - 1) >= (bfd_vma) (this)) \
151 ? (((bfd_vma) (this) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary)-1)) \
  /src/external/gpl3/gdb/dist/bfd/
bfd-in.h 145 /* Align an address upward to a boundary, expressed as a number of bytes.
146 E.g. align to an 8-byte boundary with argument of 8. Take care never
147 to wrap around if the address is within boundary-1 of the end of the
149 #define BFD_ALIGN(this, boundary) \
150 ((((bfd_vma) (this) + (boundary) - 1) >= (bfd_vma) (this)) \
151 ? (((bfd_vma) (this) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary)-1)) \
  /src/crypto/external/bsd/openssl/dist/crypto/asn1/
bio_ndef.c 39 /* Boundary where content is inserted */
40 unsigned char **boundary; member in struct:ndef_aux_st
93 sarg.boundary = NULL;
116 ndef_aux->boundary = sarg.boundary;
152 if (*ndef_aux->boundary == NULL)
155 *plen = *ndef_aux->boundary - *pbuf;
210 sarg.boundary = ndef_aux->boundary;
227 if (*ndef_aux->boundary == NULL
    [all...]
  /src/lib/libc/arch/vax/gen/
alloca.S 44 bicl2 $3,%sp # align to longword boundary
  /src/sys/arch/hpcmips/include/
bus_dma_hpcmips.h 77 bus_size_t alignment, bus_size_t boundary,
  /src/sys/arch/xen/x86/
xen_bus_dma.c 214 bus_size_t alignment, bus_size_t boundary, bus_dma_segment_t *segs,
228 KASSERT((boundary & (boundary - 1)) == 0);
229 KASSERT(boundary >= PAGE_SIZE || boundary == 0);
238 * boundary: next power of 2 >= size
240 if (boundary == 0)
243 uboundary = boundary;
272 (lastaddr & boundary) == (curaddr & boundary)) {
    [all...]
  /src/sys/uvm/
uvm_pglist.c 78 * alignment memory must be aligned to this power-of-two boundary.
79 * boundary no segment in the allocation may cross this
80 * power-of-two boundary (relative to zero).
113 paddr_t alignment, paddr_t boundary, struct pglist *rlist)
145 pagemask = ~((boundary >> PAGE_SHIFT) - 1);
172 if (boundary != 0 &&
175 * Region crosses boundary. Jump to the boundary
231 if (boundary != 0 &&
232 ((lastidxpa ^ idxpa) & ~(boundary - 1)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.asm/
s390x.inc 4 # Align the stack pointer to an 8-byte boundary.
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.asm/
s390x.inc 4 # Align the stack pointer to an 8-byte boundary.
  /src/sys/arch/x68k/stand/boot/
dp8390.c 115 * Set current page pointer to one page after the boundary pointer, as
206 u_char boundary, current; local
227 /* Set NIC to page 0 registers to update boundary register. */
290 * Update NIC boundary pointer - being careful to keep it one
293 boundary = next_packet - 1;
294 if (boundary < rec_page_start)
295 boundary = rec_page_stop - 1;
296 NIC_PUT(ED_P0_BNRY, boundary);
  /src/external/gpl3/binutils/dist/include/elf/
external.h 186 /* Align an address upward to a boundary, expressed as a number of bytes.
187 E.g. align to an 8-byte boundary with argument of 8. */
188 #define ELF_ALIGN_UP(addr, boundary) \
189 (((bfd_vma) (addr) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary) -1))
  /src/external/gpl3/binutils.old/dist/include/elf/
external.h 186 /* Align an address upward to a boundary, expressed as a number of bytes.
187 E.g. align to an 8-byte boundary with argument of 8. */
188 #define ELF_ALIGN_UP(addr, boundary) \
189 (((bfd_vma) (addr) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary) -1))
  /src/external/gpl3/gdb.old/dist/include/elf/
external.h 186 /* Align an address upward to a boundary, expressed as a number of bytes.
187 E.g. align to an 8-byte boundary with argument of 8. */
188 #define ELF_ALIGN_UP(addr, boundary) \
189 (((bfd_vma) (addr) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary) -1))
  /src/external/gpl3/gdb/dist/include/elf/
external.h 186 /* Align an address upward to a boundary, expressed as a number of bytes.
187 E.g. align to an 8-byte boundary with argument of 8. */
188 #define ELF_ALIGN_UP(addr, boundary) \
189 (((bfd_vma) (addr) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary) -1))
  /src/sys/arch/alpha/common/
sgmap_typedep.c 74 bus_size_t sgvalen, extra_sgvalen, boundary, alignment; local
118 boundary = map->_dm_boundary;
122 * their own boundary constraint.
124 if (__predict_false(boundary != 0 && buflen > boundary)) {
141 * If we have a boundary constraint, it's possible to end up in
142 * a situation where sgvalen > boundary if the caller's buffer
146 if (__predict_false(boundary != 0 && boundary < sgvalen)) {
157 extra_sgvalen = sgvalen - boundary;
    [all...]
  /src/sys/arch/emips/emips/
bus_space.c 72 bus_size_t boundary,
  /src/sys/arch/pmax/pmax/
bus_space.c 62 bus_size_t size, bus_size_t alignment, bus_size_t boundary,

Completed in 30 milliseconds

1 2 3 4 5 6 7 8 91011>>