Searched refs:offset (Results 101 - 125 of 1236) sorted by relevance

1234567891011>>

/haiku/headers/private/net/
H A Dnet_buffer.h31 uint32 offset; member in union:net_buffer::__anon1152
50 net_buffer* (*split)(net_buffer* from, uint32 offset);
61 status_t (*insert)(net_buffer* buffer, uint32 offset,
63 status_t (*remove)(net_buffer* buffer, uint32 offset,
69 uint32 offset, size_t bytes);
81 status_t (*restore_header)(net_buffer* buffer, uint32 offset,
84 net_buffer* source, uint32 offset, size_t bytes);
86 status_t (*direct_access)(net_buffer* buffer, uint32 offset,
88 status_t (*read)(net_buffer* buffer, size_t offset, void* data,
90 status_t (*write)(net_buffer* buffer, size_t offset,
[all...]
/haiku/src/libs/x86emu/
H A Ddecode.c303 offset - Offset to load data from
311 fetch_data_byte(uint offset) argument
315 x86emu_check_data_access((u16) get_data_segment(), offset);
317 return (*sys_rdb) ((get_data_segment() << 4) + offset);
322 offset - Offset to load data from
330 fetch_data_word(uint offset) argument
334 x86emu_check_data_access((u16) get_data_segment(), offset);
336 return (*sys_rdw) ((get_data_segment() << 4) + offset);
341 offset - Offset to load data from
349 fetch_data_long(uint offset) argument
369 fetch_data_byte_abs(uint segment, uint offset) argument
389 fetch_data_word_abs(uint segment, uint offset) argument
409 fetch_data_long_abs(uint segment, uint offset) argument
430 store_data_byte(uint offset, u8 val) argument
451 store_data_word(uint offset, u16 val) argument
472 store_data_long(uint offset, u32 val) argument
493 store_data_byte_abs(uint segment, uint offset, u8 val) argument
514 store_data_word_abs(uint segment, uint offset, u16 val) argument
535 store_data_long_abs(uint segment, uint offset, u32 val) argument
838 u32 offset; local
[all...]
/haiku/src/kits/support/
H A DUrl.cpp983 char_offset_until_fn_false(const char* url, int32 len, int32 offset, argument
986 while (offset < len && fn(url[offset]))
987 offset++;
989 return offset;
1007 int32 offset = 0; local
1017 while (offset < length) {
1023 offset, explode_is_protocol_char);
1026 SetProtocol(BString(&url_c[offset], end_protocol - offset));
1193 int32 offset = 0; local
1362 _IsHostIPV6Valid(size_t offset, int32 length) const argument
[all...]
/haiku/src/servers/app/decorator/
H A DTabDecorator.cpp390 float offset; local
393 _GetButtonSizeAndOffset(tabRect, &offset, &size, &inset);
398 tab->minTabSize += offset + size;
400 tab->minTabSize += offset + size;
567 TabDecorator::_MoveBy(BPoint offset) argument
569 STRACE(("TabDecorator: Move By (%.1f, %.1f)\n", offset.x, offset.y));
574 tab->zoomRect.OffsetBy(offset);
575 tab->closeRect.OffsetBy(offset);
576 tab->tabRect.OffsetBy(offset);
593 _ResizeBy(BPoint offset, BRegion* dirty) argument
991 float offset; local
[all...]
/haiku/src/add-ons/accelerants/radeon_hd/
H A Ddisplay.cpp50 uint32 offset = 0; local
54 offset = EVERGREEN_CRTC0_REGISTER_OFFSET;
58 offset = EVERGREEN_CRTC1_REGISTER_OFFSET;
62 offset = EVERGREEN_CRTC2_REGISTER_OFFSET;
66 offset = EVERGREEN_CRTC3_REGISTER_OFFSET;
70 offset = EVERGREEN_CRTC4_REGISTER_OFFSET;
74 offset = EVERGREEN_CRTC5_REGISTER_OFFSET;
83 regs->crtcOffset = offset;
85 regs->grphEnable = EVERGREEN_GRPH_ENABLE + offset;
86 regs->grphControl = EVERGREEN_GRPH_CONTROL + offset;
114 uint32 offset = 0; local
161 uint32 offset = 0; local
[all...]
/haiku/src/add-ons/disk_systems/intel/
H A DExtendedPartitionAddOn.cpp281 off_t offset = partition->Offset() + PTS_OFFSET; local
283 status_t error = info->SetTo(offset, size);
342 // check offset and size
343 off_t offset = sector_align(*_offset, Partition()->BlockSize());
346 off_t end = offset + size;
357 if ((spaceOffset >= offset && spaceOffset < end)
358 || (offset >= spaceOffset && offset < spaceEnd)) {
364 if (offset < spaceOffset)
367 distance = spaceEnd - offset;
420 CreateChild(off_t offset, off_t size, const char* typeString, const char* name, const char* _parameters, BMutablePartition** _child) argument
[all...]
/haiku/src/system/boot/loader/file_systems/fat/
H A DVolume.cpp205 off_t offset; local
220 offset = fBytesPerSector * fReservedSectors;
221 //offset += fActiveFat * fTotalClusters * fFatBits / 8;
222 offset += cluster * fatBytes;
227 buf = fCachedBlock->SetTo(ToBlock(offset));
231 offset %= BlockSize();
235 next = read32(buf, offset);
239 next = read16(buf, offset);
285 off_t offset = fBytesPerSector * fReservedSectors; local
286 offset
333 off_t offset local
[all...]
H A Dfatfs.cpp30 off_t offset = (((partitionSize / blockSize) - 1 - reservedBlocks) / 2) + reservedBlocks;
33 if (read_pos(fDevice, offset * blockSize, buffer, blockSize) < B_OK)
/haiku/src/libs/libfdt/
H A Dfdt_sw.c96 unsigned int offset = fdt_size_dt_struct(fdt); local
102 if ((offset + len < offset) || (offset + len > spaceleft))
105 fdt_set_size_dt_struct(fdt, offset + len);
106 return fdt_offset_ptr_w_(fdt, offset);
191 int offset; local
195 offset = fdt_off_dt_struct(fdt);
196 if ((offset + sizeof(*re)) > fdt_totalsize(fdt))
199 re = (struct fdt_reserve_entry *)((char *)fdt + offset);
255 unsigned int struct_top, offset; local
343 int offset, nextoffset; local
[all...]
/haiku/headers/private/kernel/arch/
H A Dreal_time_clock.h29 bigtime_t offset);
30 // Set the system time offset in data.
32 // Return the system time offset as stored in data.
/haiku/headers/private/kernel/arch/x86/
H A Dbios.h19 uint32 offset; member in struct:bios32_service
/haiku/headers/private/kernel/boot/net/
H A DRemoteDiskDefs.h25 // offset: byte offset of data to read
30 // offset: byte offset of data to write
37 // offset: disk size
40 // offset: byte offset of read data
45 // offset: byte offset of data written
56 uint64_t offset; member in struct:remote_disk_header
[all...]
/haiku/src/add-ons/kernel/drivers/graphics/radeon_hd/
H A Ddriver.h40 get_pci_config(pci_info* info, uint8 offset, uint8 size) argument
43 offset, size);
48 set_pci_config(pci_info* info, uint8 offset, uint8 size, uint32 value) argument
50 gPCI->write_pci_config(info->bus, info->device, info->function, offset,
/haiku/src/add-ons/kernel/file_systems/udf/
H A DRecognition.h15 status_t udf_recognize(int device, off_t offset, off_t length,
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/haiku/
H A Dvfs.h16 status_t vfs_get_file_map(struct vnode *vnode, off_t offset, size_t size,
/haiku/src/apps/icon-o-matic/generic/gui/scrollview/
H A DScrollable.h25 virtual void SetScrollOffset(BPoint offset);
29 BPoint offset);
31 BPoint ValidScrollOffsetFor(BPoint offset) const;
32 BPoint ValidScrollOffsetFor(BPoint offset,
/haiku/src/system/boot/loader/
H A Dpager.h17 virtual size_t Read(size_t offset, void* buffer,
/haiku/src/add-ons/kernel/file_systems/packagefs/nodes/
H A DAttributeCookie.h19 virtual status_t ReadAttribute(off_t offset, void* buffer,
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DPackageLeafNode.cpp30 PackageLeafNode::Read(off_t offset, void* buffer, size_t* bufferSize) argument
/haiku/headers/private/firewire/
H A Dfwglue.h52 #define OWRITE(sc, offset, value) (*(volatile uint32 *)((char *)(sc->regAddr) + (offset)) = value)
53 #define OREAD(sc, offset) (*(volatile uint32 *)((char *)(sc->regAddr) + (offset)))
/haiku/src/system/kernel/arch/sparc/
H A Darch_real_time_clock.cpp28 arch_rtc_set_system_time_offset(struct real_time_data *data, bigtime_t offset) argument
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DFile.cpp25 File::ReadAt(off_t offset, void *buffer, size_t size, size_t *bytesRead) argument
27 status_t error = DataContainer::ReadAt(offset, buffer, size, bytesRead);
34 File::WriteAt(off_t offset, const void *buffer, size_t size, argument
38 status_t error = DataContainer::WriteAt(offset, buffer, size,
/haiku/src/system/kernel/arch/arm64/
H A Darch_real_time_clock.cpp33 arch_rtc_set_system_time_offset(struct real_time_data *data, bigtime_t offset) argument
/haiku/src/system/kernel/vm/
H A DVMAnonymousNoSwapCache.h26 virtual bool HasPage(off_t offset);
32 virtual status_t Read(off_t offset, const generic_io_vec *vecs,
35 virtual status_t Write(off_t offset, const generic_io_vec *vecs,
40 off_t offset);
/haiku/src/system/kernel/arch/arm/
H A Darch_real_time_clock.cpp39 arch_rtc_set_system_time_offset(struct real_time_data *data, bigtime_t offset) argument

Completed in 110 milliseconds

1234567891011>>