Searched refs:newtag (Results 1 - 14 of 14) sorted by relevance

/freebsd-11-stable/sys/sparc64/sparc64/
H A Dbus_machdep.c188 bus_dma_tag_t newtag; local
197 newtag = (bus_dma_tag_t)malloc(sizeof(*newtag), M_DEVBUF, M_NOWAIT);
198 if (newtag == NULL)
205 newtag->dt_cookie = parent->dt_cookie;
206 newtag->dt_mt = parent->dt_mt;
208 newtag->dt_parent = parent;
209 newtag->dt_alignment = alignment;
210 newtag->dt_boundary = boundary;
211 newtag
[all...]
/freebsd-11-stable/sys/powerpc/powerpc/
H A Dbusdma_machdep.c232 bus_dma_tag_t newtag; local
246 newtag = (bus_dma_tag_t)malloc(sizeof(*newtag), M_DEVBUF,
248 if (newtag == NULL) {
250 __func__, newtag, 0, error);
254 newtag->parent = parent;
255 newtag->alignment = alignment;
256 newtag->boundary = boundary;
257 newtag->lowaddr = trunc_page((vm_paddr_t)lowaddr) + (PAGE_SIZE - 1);
258 newtag
[all...]
/freebsd-11-stable/sys/mips/mips/
H A Dbusdma_machdep.c368 bus_dma_tag_t newtag; local
375 newtag = (bus_dma_tag_t)malloc(sizeof(*newtag), M_BUSDMA, M_NOWAIT);
376 if (newtag == NULL) {
378 __func__, newtag, 0, error);
382 newtag->parent = parent;
383 newtag->alignment = alignment;
384 newtag->boundary = boundary;
385 newtag->lowaddr = trunc_page((vm_offset_t)lowaddr) + (PAGE_SIZE - 1);
386 newtag
[all...]
/freebsd-11-stable/sys/arm/arm/
H A Dbusdma_machdep-v4.c402 bus_dma_tag_t newtag; local
407 newtag = (bus_dma_tag_t)malloc(sizeof(*newtag), M_BUSDMA, M_NOWAIT);
408 if (newtag == NULL) {
410 __func__, newtag, 0, error);
414 newtag->parent = parent;
415 newtag->alignment = alignment ? alignment : 1;
416 newtag->boundary = boundary;
417 newtag->lowaddr = trunc_page((vm_offset_t)lowaddr) + (PAGE_SIZE - 1);
418 newtag
[all...]
H A Dbusdma_machdep-v6.c443 bus_dma_tag_t newtag; local
458 newtag = (bus_dma_tag_t)malloc(sizeof(*newtag), M_BUSDMA,
460 if (newtag == NULL) {
462 __func__, newtag, 0, error);
466 newtag->parent = parent;
467 newtag->alignment = alignment;
468 newtag->boundary = boundary;
469 newtag->lowaddr = trunc_page((vm_paddr_t)lowaddr) + (PAGE_SIZE - 1);
470 newtag
[all...]
/freebsd-11-stable/sys/arm64/arm64/
H A Dbusdma_bounce.c172 bus_dma_tag_t newtag; local
179 sizeof (struct bus_dma_tag), (void **)&newtag);
183 newtag->common.impl = &bus_dma_bounce_impl;
184 newtag->map_count = 0;
185 newtag->segments = NULL;
188 newtag->bounce_flags |= BF_COHERENT;
191 if ((newtag->common.filter != NULL ||
193 newtag->bounce_flags |= BF_COULD_BOUNCE;
196 newtag->bounce_flags |= parent->bounce_flags & BF_COHERENT;
199 if (newtag
[all...]
H A Dbusdma_machdep.c124 void *newtag; local
136 newtag = malloc(sz, M_DEVBUF, M_ZERO | M_NOWAIT);
137 if (newtag == NULL) {
139 __func__, newtag, 0, ENOMEM);
143 common = newtag;
/freebsd-11-stable/sys/x86/x86/
H A Dbusdma_bounce.c160 bus_dma_tag_t newtag; local
167 sizeof (struct bus_dma_tag), (void **)&newtag);
171 newtag->common.impl = &bus_dma_bounce_impl;
172 newtag->map_count = 0;
173 newtag->segments = NULL;
175 if (parent != NULL && ((newtag->common.filter != NULL) ||
177 newtag->bounce_flags |= BUS_DMA_COULD_BOUNCE;
179 if (newtag->common.lowaddr < ptoa((vm_paddr_t)Maxmem) ||
180 newtag->common.alignment > 1)
181 newtag
[all...]
H A Dbusdma_machdep.c120 void *newtag; local
132 newtag = malloc(sz, M_DEVBUF, M_ZERO | M_NOWAIT);
133 if (newtag == NULL) {
135 __func__, newtag, 0, ENOMEM);
139 common = newtag;
/freebsd-11-stable/sys/x86/iommu/
H A Dbusdma_dmar.c301 struct bus_dma_tag_dmar *newtag, *oldtag; local
309 sizeof(struct bus_dma_tag_dmar), (void **)&newtag);
314 newtag->common.impl = &bus_dma_dmar_impl;
315 newtag->ctx = oldtag->ctx;
316 newtag->owner = oldtag->owner;
318 *dmat = (bus_dma_tag_t)newtag;
321 __func__, newtag, (newtag != NULL ? newtag->common.flags : 0),
/freebsd-11-stable/contrib/unbound/util/
H A Dconfig_file.c1991 char* newtag; local
1997 newtag = strdup(tag);
1998 if(!newtag) {
2006 newarray[cfg->num_tags++] = newtag;
/freebsd-11-stable/contrib/ofed/libibverbs/
H A Dverbs.h1797 uint8_t newtag = (uint8_t)((rkey + 1) & mask); local
1799 return (rkey & ~mask) | newtag;
/freebsd-11-stable/usr.bin/xlint/lint1/
H A Ddecl.c66 static sym_t *newtag(sym_t *, scl_t, int, int);
1524 tag = newtag(tag, scl, decl, semi);
1575 newtag(sym_t *tag, scl_t scl, int decl, int semi) function
/freebsd-11-stable/contrib/gcc/cp/
H A Dpt.c5849 tree newtag;
5863 newtag = tsubst (t, args, tf_error, NULL_TREE);
5866 if (newtag == error_mark_node)
5869 if (TREE_CODE (newtag) != ENUMERAL_TYPE)
5884 CLASSTYPE_USE_TEMPLATE (newtag) = 0;
5892 SET_IDENTIFIER_TYPE_VALUE (name, newtag);
5893 pushtag (name, newtag, /*tag_scope=*/ts_current);
12565 tsubst_enum (tree tag, tree newtag, tree args)
12585 build_enumerator (DECL_NAME (decl), value, newtag);
12588 finish_enum (newtag);
5848 tree newtag; local
12563 tsubst_enum(tree tag, tree newtag, tree args) argument
12583 build_enumerator (DECL_NAME (decl), value, newtag); local
[all...]

Completed in 253 milliseconds