Home
last modified time | relevance | path

Searched refs:boundary (Results 1 – 25 of 115) sorted by relevance

12345

/dragonfly/crypto/libressl/crypto/asn1/
H A Dbio_ndef.c90 unsigned char **boundary; member
131 sarg.boundary = NULL; in BIO_new_NDEF()
139 ndef_aux->boundary = sarg.boundary; in BIO_new_NDEF()
170 if (!*ndef_aux->boundary) in ndef_prefix()
173 *plen = *ndef_aux->boundary - *pbuf; in ndef_prefix()
226 sarg.boundary = ndef_aux->boundary; in ndef_suffix()
237 if (!*ndef_aux->boundary) in ndef_suffix()
239 *pbuf = *ndef_aux->boundary; in ndef_suffix()
240 *plen = derlen - (*ndef_aux->boundary - ndef_aux->derbuf); in ndef_suffix()
/dragonfly/sys/vm/
H A Dvm_contig.c251 unsigned long alignment, unsigned long boundary, int mflags) in vm_contig_pg_alloc() argument
265 if ((boundary & (boundary - 1)) != 0) in vm_contig_pg_alloc()
284 low, high, alignment, boundary, in vm_contig_pg_alloc()
310 ((rounddown2(phys ^ (phys + size - 1), boundary)) == 0) && in vm_contig_pg_alloc()
461 low, high, alignment, boundary, in vm_contig_pg_alloc()
545 unsigned long boundary) in contigmalloc() argument
548 boundary, kernel_map); in contigmalloc()
557 unsigned long alignment, unsigned long boundary, in contigmalloc_map() argument
563 index = vm_contig_pg_alloc(size, low, high, alignment, boundary, flags); in contigmalloc_map()
568 alignment, boundary, flags); in contigmalloc_map()
/dragonfly/sys/platform/vkernel64/platform/
H A Dbusdma_machdep.c57 bus_size_t boundary; member
200 if (boundary != 0) { in bus_dma_tag_create()
201 if (boundary & (boundary - 1)) in bus_dma_tag_create()
203 if (boundary < maxsegsz) { in bus_dma_tag_create()
206 maxsegsz = boundary; in bus_dma_tag_create()
216 newtag->boundary = boundary; in bus_dma_tag_create()
232 if (newtag->boundary == 0) { in bus_dma_tag_create()
233 newtag->boundary = parent->boundary; in bus_dma_tag_create()
235 newtag->boundary = MIN(parent->boundary, in bus_dma_tag_create()
236 newtag->boundary); in bus_dma_tag_create()
[all …]
/dragonfly/sys/platform/pc64/x86_64/
H A Dbusdma_machdep.c66 bus_size_t boundary; member
240 if (boundary != 0) { in bus_dma_tag_create()
241 if (boundary & (boundary - 1)) in bus_dma_tag_create()
243 if (boundary < maxsegsz) { in bus_dma_tag_create()
246 maxsegsz = boundary; in bus_dma_tag_create()
257 newtag->boundary = boundary; in bus_dma_tag_create()
273 if (newtag->boundary == 0) { in bus_dma_tag_create()
274 newtag->boundary = parent->boundary; in bus_dma_tag_create()
276 newtag->boundary = MIN(parent->boundary, in bus_dma_tag_create()
277 newtag->boundary); in bus_dma_tag_create()
[all …]
/dragonfly/contrib/gdb-7/gdb/
H A Dax-general.c487 char *boundary = (char *) alloca (ax->len * sizeof (boundary[0])); in ax_reqs() local
498 memset (boundary, 0, ax->len * sizeof (boundary[0])); in ax_reqs()
535 boundary[i] = 1; in ax_reqs()
563 if (targets[target] || boundary[target]) in ax_reqs()
602 if (targets[i] && !boundary[i]) in ax_reqs()
/dragonfly/contrib/binutils-2.34/include/elf/
H A Dexternal.h188 #define ELF_ALIGN_UP(addr, boundary) \ argument
189 (((bfd_vma) (addr) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary) -1))
/dragonfly/sys/contrib/dev/acpica/source/include/
H A Dacmacros.h347 #define ACPI_ROUND_DOWN(value, boundary) (((ACPI_SIZE)(value)) & \ argument
348 (~(((ACPI_SIZE) boundary)-1)))
350 #define ACPI_ROUND_UP(value, boundary) ((((ACPI_SIZE)(value)) + \ argument
351 (((ACPI_SIZE) boundary)-1)) & \
352 (~(((ACPI_SIZE) boundary)-1)))
371 #define ACPI_ROUND_UP_TO(value, boundary) (((value) + ((boundary)-1)) / (boundary)) argument
/dragonfly/sys/dev/virtual/hyperv/
H A Dhyperv_busdma.c47 bus_addr_t boundary, bus_size_t size, struct hyperv_dma *dma, int flags) in hyperv_dmamem_alloc() argument
52 error = bus_dmamem_coherent(parent_dtag, alignment, boundary, in hyperv_dmamem_alloc()
H A Dhyperv_busdma.h44 bus_addr_t boundary, bus_size_t size, struct hyperv_dma *dma,
/dragonfly/sys/dev/drm/amd/amdgpu/
H A DMakefile364 ${CC} ${CFLAGS} ${KCFLAGS} -mhard-float -msse -mpreferred-stack-boundary=4 -c ${.IMPSRC}
367 ${CC} ${CFLAGS} ${KCFLAGS} -mhard-float -msse -mpreferred-stack-boundary=4 -c ${.IMPSRC}
370 ${CC} ${CFLAGS} ${KCFLAGS} -mhard-float -msse -mpreferred-stack-boundary=4 -c ${.IMPSRC}
373 ${CC} ${CFLAGS} ${KCFLAGS} -mhard-float -msse -mpreferred-stack-boundary=4 -c ${.IMPSRC}
376 ${CC} ${CFLAGS} ${KCFLAGS} -mhard-float -msse -mpreferred-stack-boundary=4 -c ${.IMPSRC}
379 ${CC} ${CFLAGS} ${KCFLAGS} -mhard-float -msse -mpreferred-stack-boundary=4 -c ${.IMPSRC}
382 ${CC} ${CFLAGS} ${KCFLAGS} -mhard-float -msse -mpreferred-stack-boundary=4 -c ${.IMPSRC}
/dragonfly/contrib/gcc-8.0/gcc/
H A Dtarghooks.c2127 unsigned HOST_WIDE_INT align, boundary; in std_gimplify_va_arg_expr() local
2147 if (boundary > MAX_SUPPORTED_STACK_ALIGNMENT) in std_gimplify_va_arg_expr()
2148 boundary = MAX_SUPPORTED_STACK_ALIGNMENT; in std_gimplify_va_arg_expr()
2150 boundary /= BITS_PER_UNIT; in std_gimplify_va_arg_expr()
2157 if (boundary > align in std_gimplify_va_arg_expr()
2162 fold_build_pointer_plus_hwi (valist_tmp, boundary - 1)); in std_gimplify_va_arg_expr()
2168 build_int_cst (TREE_TYPE (valist), -boundary))); in std_gimplify_va_arg_expr()
2172 boundary = align; in std_gimplify_va_arg_expr()
2177 boundary *= BITS_PER_UNIT; in std_gimplify_va_arg_expr()
2178 if (boundary < TYPE_ALIGN (type)) in std_gimplify_va_arg_expr()
[all …]
H A Dfunction.c2692 unsigned int align, boundary; in assign_parm_find_stack_rtl() local
2725 boundary = data->locate.boundary; in assign_parm_find_stack_rtl()
2734 align = boundary; in assign_parm_find_stack_rtl()
2737 align = least_bit_hwi (boundary); in assign_parm_find_stack_rtl()
4151 unsigned int boundary, round_boundary; in locate_and_pad_parm() local
4191 locate->boundary = boundary; in locate_and_pad_parm()
4217 crtl->stack_alignment_needed = boundary; in locate_and_pad_parm()
4311 if (boundary > PARM_BOUNDARY) in pad_to_arg_alignment()
4320 if (boundary > BITS_PER_UNIT) in pad_to_arg_alignment()
4340 if (boundary > PARM_BOUNDARY) in pad_to_arg_alignment()
[all …]
H A Dtree-ssa-uninit.c1017 is_value_included_in (tree val, tree boundary, enum tree_code cmpc) in is_value_included_in() argument
1024 if (TREE_CODE (val) != INTEGER_CST || TREE_CODE (boundary) != INTEGER_CST) in is_value_included_in()
1038 result = tree_int_cst_equal (val, boundary); in is_value_included_in()
1040 result = tree_int_cst_lt (val, boundary); in is_value_included_in()
1044 result = tree_int_cst_le (val, boundary); in is_value_included_in()
1050 result = tree_int_cst_equal (val, boundary); in is_value_included_in()
1052 result = tree_int_cst_lt (val, boundary); in is_value_included_in()
1056 result = (tree_int_cst_equal (val, boundary) in is_value_included_in()
1057 || tree_int_cst_lt (val, boundary)); in is_value_included_in()
/dragonfly/sys/kern/
H A Dsubr_busdma.c55 bus_size_t alignment, bus_size_t boundary, in bus_dmamem_coherent() argument
64 error = bus_dma_tag_create(parent, alignment, boundary, in bus_dmamem_coherent()
/dragonfly/crypto/libressl/crypto/cms/
H A Dcms_io.c63 CMS_stream(unsigned char ***boundary, CMS_ContentInfo *cms) in CMS_stream() argument
75 *boundary = &(*pos)->data; in CMS_stream()
/dragonfly/sys/sys/
H A Dbus_dma.h175 bus_size_t boundary, bus_addr_t lowaddr,
281 bus_size_t alignment, bus_size_t boundary,
/dragonfly/contrib/gcc-4.7/gcc/
H A Dtree-ssa-uninit.c683 is_value_included_in (tree val, tree boundary, enum tree_code cmpc) in is_value_included_in() argument
691 || TREE_CODE (boundary) != INTEGER_CST) in is_value_included_in()
706 result = tree_int_cst_equal (val, boundary); in is_value_included_in()
708 result = INT_CST_LT_UNSIGNED (val, boundary); in is_value_included_in()
712 result = (tree_int_cst_equal (val, boundary) in is_value_included_in()
713 || INT_CST_LT_UNSIGNED (val, boundary)); in is_value_included_in()
719 result = tree_int_cst_equal (val, boundary); in is_value_included_in()
721 result = INT_CST_LT (val, boundary); in is_value_included_in()
725 result = (tree_int_cst_equal (val, boundary) in is_value_included_in()
726 || INT_CST_LT (val, boundary)); in is_value_included_in()
H A Dfunction.c2549 unsigned int align, boundary; in assign_parm_find_stack_rtl() local
2582 boundary = data->locate.boundary; in assign_parm_find_stack_rtl()
2590 align = boundary; in assign_parm_find_stack_rtl()
3704 unsigned int boundary, round_boundary; in locate_and_pad_parm() local
3742 boundary = MAX_SUPPORTED_STACK_ALIGNMENT; in locate_and_pad_parm()
3744 locate->boundary = boundary; in locate_and_pad_parm()
3770 crtl->stack_alignment_needed = boundary; in locate_and_pad_parm()
3870 if (boundary > PARM_BOUNDARY) in pad_to_arg_alignment()
3879 if (boundary > BITS_PER_UNIT) in pad_to_arg_alignment()
3896 if (boundary > PARM_BOUNDARY) in pad_to_arg_alignment()
[all …]
/dragonfly/contrib/binutils-2.27/gas/doc/
H A Dc-tic54x.texi64 boundary (usually a page, or 128 words) if it is smaller than the
65 blocking size, or to start on a page boundary if it is larger than the
330 Align the section program counter on the next boundary, based on
335 Align SPC to word boundary
337 Align SPC to longword boundary (same as .even)
339 Align SPC to page boundary
357 should be aligned on a page boundary if it would otherwise cross a page
358 boundary. If present, @var{alignment_flag} causes the assembler to
359 allocate @var{size} on a long word boundary.
406 @code{.xfloat} align the result on a longword boundary. Values are
[all …]
H A Dc-rx.texi99 that are passed on the stack are aligned to a 32-bit boundary.
197 boundary (8 byte boundary), the opcode is aligned to that boundary.
/dragonfly/contrib/gcc-8.0/libgomp/
H A Dordered.c345 doacross->boundary = t * (q + 1); in gomp_doacross_init()
424 if (first < doacross->boundary) in GOMP_doacross_wait()
427 ent = (first - doacross->boundary) / doacross->q in GOMP_doacross_wait()
556 doacross->boundary = 0; in gomp_doacross_ull_init()
/dragonfly/sys/platform/vkernel64/conf/
H A Dkern.mk7 CFLAGS+= -mpreferred-stack-boundary=4
/dragonfly/stand/boot/pc32/
H A DMakefile.inc20 CFLAGS+= -mpreferred-stack-boundary=2
/dragonfly/contrib/binutils-2.27/bfd/
H A Dlibbfd.h40 #define BFD_ALIGN(this, boundary) \ argument
41 ((((bfd_vma) (this) + (boundary) - 1) >= (bfd_vma) (this)) \
42 ? (((bfd_vma) (this) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary)-1)) \
/dragonfly/contrib/gdb-7/bfd/
H A Dlibbfd.h39 #define BFD_ALIGN(this, boundary) \ argument
40 ((((bfd_vma) (this) + (boundary) - 1) >= (bfd_vma) (this)) \
41 ? (((bfd_vma) (this) + ((boundary) - 1)) & ~ (bfd_vma) ((boundary)-1)) \

12345