Searched refs:alignment (Results 76 - 100 of 189) sorted by relevance

12345678

/haiku/src/add-ons/kernel/bus_managers/agp_gart/
H A Dagp_gart.cpp125 aperture_memory *CreateMemory(size_t size, size_t alignment, uint32 flags);
145 status_t _Insert(aperture_memory *memory, size_t size, size_t alignment,
467 Aperture::CreateMemory(size_t size, size_t alignment, uint32 flags) argument
473 status_t status = _Insert(memory, size, alignment, flags);
766 Aperture::_Insert(aperture_memory *memory, size_t size, size_t alignment, argument
777 if (alignment < B_PAGE_SIZE)
778 alignment = B_PAGE_SIZE;
784 start = ROUNDUP(start, alignment);
803 if (next == NULL || (next->base >= ROUNDUP(start, alignment) + size)) {
804 memory->base = ROUNDUP(start, alignment);
1030 allocate_memory(aperture_id id, size_t size, size_t alignment, uint32 flags, addr_t *_apertureBase, phys_addr_t *_physicalBase) argument
1117 bind_aperture(aperture_id id, area_id area, addr_t base, size_t size, size_t alignment, addr_t reservedBase, addr_t *_apertureBase) argument
[all...]
/haiku/headers/private/firewire/
H A Dfirewire_module.h60 struct fwdma_alloc_multi * (*fwdma_malloc_multiseg)(int alignment,
/haiku/headers/private/interface/
H A DToolTip.h34 virtual void SetAlignment(BAlignment alignment);
H A DColumnListView.h171 alignment align = B_ALIGN_LEFT);
206 alignment Alignment() const;
207 void SetAlignment(alignment);
240 alignment fAlignment;
/haiku/src/kits/interface/
H A DViewLayoutItem.h25 virtual void SetExplicitAlignment(BAlignment alignment);
H A DAbstractLayoutItem.cpp17 const char* const kAlignmentField = "BAbstractLayoutItem:alignment";
101 BAbstractLayoutItem::SetExplicitAlignment(BAlignment alignment) argument
103 fAlignment = alignment;
H A DViewLayoutItem.cpp97 BViewLayoutItem::SetExplicitAlignment(BAlignment alignment) argument
99 fView->SetExplicitAlignment(alignment);
/haiku/src/preferences/filetypes/
H A DAttributeListView.h17 const char* displayAs, int32 alignment, int32 width, bool visible,
H A DAttributeWindow.cpp193 int32 alignment; member in struct:alignment_map
197 "Attribute column alignment in Tracker")},
199 "Attribute column alignment in Tracker")},
201 "Attribute column alignment in Tracker")},
205 menu = new BPopUpMenu("alignment");
208 message->AddInt32("alignment", kAlignmentMap[i].alignment);
213 if (kAlignmentMap[i].alignment == fAttribute.Alignment())
217 fAlignmentMenuField = new BMenuField("alignment",
358 int32 alignment local
[all...]
/haiku/src/kits/shared/
H A DTextTable.cpp21 Column(const BString& title, enum alignment align, bool canTruncate)
38 enum alignment Alignment() const
122 enum alignment fAlignment;
154 TextTable::AddColumn(const BString& title, enum alignment align,
/haiku/src/apps/haikudepot/textview/
H A DParagraphStyleData.h35 ParagraphStyleDataRef SetAlignment(::Alignment alignment);
/haiku/src/system/kernel/slab/
H A DHashedObjectCache.h26 size_t alignment, size_t maximum,
H A DHashedObjectCache.cpp57 size_t alignment, size_t maximum, size_t magazineCapacity,
78 if (cache->Init(name, object_size, alignment, maximum, magazineCapacity,
56 Create(const char* name, size_t object_size, size_t alignment, size_t maximum, size_t magazineCapacity, size_t maxMagazineCount, uint32 flags, void* cookie, object_cache_constructor constructor, object_cache_destructor destructor, object_cache_reclaimer reclaimer) argument
H A DObjectCache.h50 size_t alignment; member in struct:ObjectCache
89 size_t alignment, size_t maximum,
/haiku/src/add-ons/kernel/drivers/graphics/intel_extreme/
H A Dintel_extreme_private.h77 size_t alignment, uint32 flags, addr_t* _offset,
/haiku/src/system/libroot/posix/glibc/extensions/
H A Dobstack.h173 int alignment_mask; /* Mask of alignment for each object. */
307 # define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \
308 _obstack_begin ((h), (size), (alignment), \
312 # define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \
313 _obstack_begin_1 ((h), (size), (alignment), \
335 # define obstack_specify_allocation(h, size, alignment, chunkfun, freefun) \
336 _obstack_begin ((h), (size), (alignment), \
340 # define obstack_specify_allocation_with_arg(h, size, alignment, chunkfun, freefun, arg) \
341 _obstack_begin_1 ((h), (size), (alignment), \
425 /* These assume that the obstack alignment i
[all...]
/haiku/src/tests/system/kernel/slab/
H A DSlab.h34 object_cache_create(const char *name, size_t object_size, size_t alignment,
53 BaseCache(const char *_name, size_t objectSize, size_t alignment,
120 Cache(const char *_name, size_t objectSize, size_t alignment, argument
122 : BaseCache(_name, Strategy::RequiredSpace(objectSize), alignment,
279 TypedCache(const char *name, size_t alignment) argument
280 : BaseType(name, sizeof(Type), alignment, _ConstructObject,
525 LocalCache(const char *name, size_t objectSize, size_t alignment, argument
527 : CacheType(name, objectSize, alignment, _constructor, _destructor,
/haiku/src/libs/compat/openbsd_network/compat/machine/
H A Dbus.h113 bus_dmamem_alloc_obsd(bus_dma_tag_t tag, bus_size_t size, bus_size_t alignment, bus_size_t boundary, argument
123 int error = bus_dma_tag_create(tag, alignment, boundary,
/haiku/src/system/kernel/
H A Dheap.cpp162 4, /* bin alignment */
172 32, /* bin alignment */
182 128, /* bin alignment */
1333 size_t alignment)
1347 if (alignment > heap->page_size) {
1348 firstValid = (ROUNDUP(area->base, alignment) - area->base)
1350 step = alignment / heap->page_size;
1413 heap_raw_alloc(heap_allocator *heap, size_t size, size_t alignment) argument
1415 TRACE(("heap %p: allocate %lu bytes from raw pages with alignment %lu\n",
1416 heap, size, alignment));
1332 heap_allocate_contiguous_pages(heap_allocator *heap, uint32 pageCount, size_t alignment) argument
1523 heap_memalign(heap_allocator *heap, size_t alignment, size_t size) argument
1900 memalign_nogrow(size_t alignment, size_t size) argument
2232 memalign(size_t alignment, size_t size) argument
2325 memalign_etc(size_t alignment, size_t size, uint32 flags) argument
2504 aligned_alloc(size_t alignment, size_t size) argument
[all...]
/haiku/headers/os/interface/
H A DAbstractLayoutItem.h27 virtual void SetExplicitAlignment(BAlignment alignment);
H A DLayoutItem.h37 virtual void SetExplicitAlignment(BAlignment alignment) = 0;
/haiku/src/apps/cortex/support/
H A DTextControlFloater.cpp109 alignment align,
/haiku/src/system/libroot/posix/glibc/include/
H A Dstdlib.h63 extern int __posix_memalign (void **memptr, size_t alignment, size_t size)
/haiku/src/preferences/shortcuts/
H A DPopUpColumn.cpp21 bool cycle, int cycleInit, alignment align)
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DStringView.cpp39 StringView::SetAlignment(alignment align)
91 // horizontal alignment

Completed in 143 milliseconds

12345678