Searched refs:Base (Results 1 - 25 of 56) sorted by relevance

123

/haiku/src/system/kernel/arch/generic/
H A Ddebug_uart.cpp15 *((uint8 *)Base() + reg * sizeof(uint32)) = value;
18 if ((Base() + reg) <= 0xFFFF)
19 __asm__ volatile ("outb %%al,%%dx" : : "a" (value), "d" (Base() + reg));
21 *((uint8 *)Base() + reg) = value;
23 *((uint8 *)Base() + reg) = value;
33 return *((uint8 *)Base() + reg * sizeof(uint32));
36 if ((Base() + reg) <= 0xFFFF) {
38 __asm__ volatile ("inb %%dx,%%al" : "=a" (_v) : "d" (Base() + reg));
41 return *((uint8 *)Base() + reg);
43 return *((uint8 *)Base()
[all...]
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/utilities/
H A Dutstrtoul64.c235 UINT32 Base = 10; /* Default is decimal */ local
260 Base = 16;
269 Base = 8;
289 switch (Base)
330 * Base is always 16, either with or without the 0x prefix. Decimal and
418 * Base is either 10 (default) or 16 (with 0x prefix). Octal (base 8) strings
459 UINT32 Base = 10; /* Default is decimal */ local
476 Base = 16;
489 switch (Base)
H A Dutstrsuppt.c164 UINT32 Base,
170 UINT32 Base,
511 * Base - Radix, either 8/10/16
534 UINT32 Base,
543 Status = AcpiUtStrtoulMultiply64 (*AccumulatedValue, Base, &Product);
563 * Base - Base/Radix
577 UINT32 Base,
587 if (!Multiplicand || !Base)
600 AcpiUtShortDivide (ACPI_UINT64_MAX, Base,
532 AcpiUtInsertDigit( UINT64 *AccumulatedValue, UINT32 Base, int AsciiDigit) argument
575 AcpiUtStrtoulMultiply64( UINT64 Multiplicand, UINT32 Base, UINT64 *OutProduct) argument
[all...]
H A Dutclib.c794 * Base - Radix of the string
807 UINT32 Base)
848 * If the input parameter Base is zero, then we need to
851 if (Base == 0)
857 Base = 16;
862 Base = 8;
867 Base = 10;
870 else if (Base < 2 || Base > 36)
873 * The specified Base paramete
804 strtoul( const char *String, char **Terminator, UINT32 Base) argument
[all...]
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A D_itowa.h46 #define SPECIAL(Base) \
47 case Base: \
49 *--bp = digits[value % Base]; \
50 while ((value /= Base) != 0); \
H A D_itoa.h53 #define SPECIAL(Base) \
54 case Base: \
56 *--buflim = digits[value % Base]; \
57 while ((value /= Base) != 0); \
/haiku/src/system/kernel/vm/
H A DVMUserAddressSpace.cpp201 *_address = (void*)area->Base();
228 addr_t newEnd = area->Base() + (newSize - 1);
233 if (next->Base() > newEnd)
241 && (uint64)next->cache_offset <= (uint64)area->Base()
242 && next->Base() + (next->Size() - 1) >= newEnd;
252 addr_t newEnd = area->Base() + (newSize - 1);
254 if (next != NULL && next->Base() <= newEnd) {
256 || (uint64)next->cache_offset > (uint64)area->Base()
257 || next->Base() + (next->Size() - 1) < newEnd) {
264 addr_t offset = area->Base()
[all...]
H A DVMUserArea.h46 addr_t b = _b->Base();
54 return Compare(a->Base(), b);
H A Dvm.cpp441 return area->Base()
503 addr_t pageIndex = (pageAddress - area->Base()) / B_PAGE_SIZE;
518 uint32 pageIndex = (pageAddress - area->Base()) / B_PAGE_SIZE;
638 if (address < area->Base()) {
639 offset = area->Base() - address;
643 address = area->Base();
652 offset = address - area->Base();
680 if (address == area->Base() && size == area->Size()) {
741 if (area->Base() == address) {
847 off_t adoptOffset = area->cache_offset + secondBase - area->Base();
[all...]
/haiku/headers/private/fs_shell/
H A Dfssh_auto_deleter.h149 CObjectDelete<Type, DestructorReturnType, Destructor> > Base; typedef in struct:FSShell::CObjectDeleter
151 CObjectDeleter() : Base()
155 CObjectDeleter(Type *object) : Base(object)
187 typedef AutoDeleter<Type, MethodDelete<Type, DestructorReturnType> > Base; typedef in struct:FSShell::MethodDeleter
190 MethodDeleter(Destructor destructor) : Base()
192 Base::fDelete = destructor;
196 MethodDeleter(Type *object, Destructor destructor) : Base(object)
198 Base::fDelete = destructor;
/haiku/src/system/kernel/arch/arm/
H A Darch_uart_8250_omap.cpp50 *((uint8 *)Base() + reg * sizeof(uint32)) = value;
57 return *((uint8 *)Base() + reg * sizeof(uint32));
H A Darch_uart_pl011.cpp195 *(volatile uint32*)(Base() + reg) = data;
202 return *(volatile uint32*)(Base() + reg);
/haiku/headers/private/shared/
H A DAutoDeleterDrivers.h46 deviceManager, void, &device_manager_info::put_node> Base;
48 DeviceNodePutter() : Base() {}
49 DeviceNodePutter(device_node* object) : Base(object) {}
H A DAutoDeleter.h187 CObjectDelete<Type, DestructorReturnType, Destructor> > Base; typedef in struct:BPrivate::CObjectDeleter
189 CObjectDeleter() : Base()
193 CObjectDeleter(Type *object) : Base(object)
219 MethodDelete<Type, DestructorReturnType, Destructor> > Base; typedef in struct:BPrivate::MethodDeleter
221 MethodDeleter() : Base()
225 MethodDeleter(Type *object) : Base(object)
249 MethodObjectDelete<Type, Table, table, Deleter> > Base; typedef in struct:BPrivate::MethodObjectDeleter
251 MethodObjectDeleter() : Base() {}
252 MethodObjectDeleter(Type *object) : Base(object) {}
/haiku/src/tests/kits/net/netservices2/
H A DExclusiveBorrowTest.cpp41 class Base class
44 Base() {} function in class:Base
47 virtual ~Base() {}
54 class Derived : public Base
160 auto borrowBase = BBorrow<Base>(owned);
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/components/executer/
H A Dexconvrt.c166 UINT16 Base,
412 * Base - ACPI_STRING_DECIMAL or ACPI_STRING_HEX
425 UINT16 Base,
442 switch (Base)
557 UINT16 Base = 16; local
584 Base = 10;
610 ObjDesc->Integer.Value, Base, NewBuf, AcpiGbl_IntegerByteWidth);
631 Base = 10;
709 if (Base == 16)
718 (UINT64) ObjDesc->Buffer.Pointer[i], Base, NewBu
423 AcpiExConvertToAscii( UINT64 Integer, UINT16 Base, UINT8 *String, UINT8 DataWidth) argument
[all...]
H A Dexutils.c181 UINT32 Base);
414 * Base - Base of representation
419 * in the given Base (Radix)
426 UINT32 Base)
449 (void) AcpiUtShortDivide (CurrentValue, Base, &CurrentValue, NULL);
424 AcpiExDigitsNeeded( UINT64 Value, UINT32 Base) argument
/haiku/src/system/boot/arch/ppc/
H A Darch_framebuffer.h40 virtual addr_t Base() { return fBase; }; function in class:ArchFramebuffer
/haiku/headers/private/kernel/arch/generic/
H A Ddebug_uart.h38 addr_t Base() const { return fBase; } function in class:DebugUART
/haiku/headers/private/kernel/arch/riscv64/
H A Darch_uart_sifive.h98 return (volatile UARTSifiveRegs*)Base();
/haiku/headers/private/kernel/vm/
H A DVMTranslationMap.h158 return Protect(area->Base(), area->Base() + area->Size() - 1, attributes,
H A DVMAddressSpace.h36 addr_t Base() const { return fBase; } function in struct:VMAddressSpace
234 if (fNext != NULL && fNext->Base() > fEndAddress)
/haiku/src/system/kernel/platform/atari_m68k/
H A Dplatform.cpp103 uint32 Base() const { return fBase; }; function in class:BPrivate::M68KAtari::MFP
123 uint32 Base() const { return fBase; }; function in class:BPrivate::M68KAtari::RTC
213 uint32 reg = Base() + ((irq > 8) ? (MFP_IERA) : (MFP_IERB));
227 uint32 reg = Base() + ((irq > 8) ? (MFP_IERA) : (MFP_IERB));
241 uint32 reg = Base() + ((irq > 8) ? (MFP_ISRA) : (MFP_ISRB));
/haiku/src/system/boot/platform/u-boot/
H A Dvideo.cpp92 err = video_display_splash(gFramebuffer->Base());
/haiku/src/apps/diskprobe/
H A DDataView.h67 base_type Base() const { return fBase; } function in class:DataView

Completed in 290 milliseconds

123