Searched refs:_size (Results 101 - 113 of 113) sorted by path

12345

/haiku/src/system/boot/platform/next_m68k/
H A Ddebug.cpp73 platform_debug_get_log_buffer(size_t* _size) argument
/haiku/src/system/boot/platform/openfirmware/
H A Ddebug.cpp73 platform_debug_get_log_buffer(size_t* _size) argument
75 if (_size != NULL)
76 *_size = sizeof(sBuffer);
/haiku/src/system/boot/platform/riscv/
H A Ddebug.cpp59 platform_debug_get_log_buffer(size_t* _size) argument
/haiku/src/system/kernel/arch/sparc/
H A Darch_mmu.cpp49 extern void sparc_get_instruction_tsb(TsbEntry **_pageTable, size_t *_size) argument
57 *_size = 512 * (1 << (tsbEntry & 3)) * sizeof(TsbEntry);
59 *_size *= 2;
63 extern void sparc_get_data_tsb(TsbEntry **_pageTable, size_t *_size) argument
71 *_size = 512 * (1 << (tsbEntry & 3)) * sizeof(TsbEntry);
73 *_size *= 2;
/haiku/src/system/kernel/arch/x86/
H A Darch_cpu.cpp1480 x86_get_double_fault_stack(int32 cpu, size_t* _size)
1482 *_size = kDoubleFaultStackSize;
/haiku/src/system/kernel/cache/
H A Dfile_cache.cpp633 size_t* _size)
635 size_t size = *_size;
663 *_size = *_size - size;
730 size_t* _size, bool doWrite)
740 ref, offset, (void*)buffer, *_size, doWrite ? "write" : "read"));
743 size_t size = *_size;
1299 size_t* _size)
1304 ref, offset, buffer, *_size));
1310 if (offset >= fileSize || *_size
632 write_zeros_to_file(struct vnode* vnode, void* cookie, off_t offset, size_t* _size) argument
729 cache_io(void* _cacheRef, void* cookie, off_t offset, addr_t buffer, size_t* _size, bool doWrite) argument
1298 file_cache_read(void* _cacheRef, void* cookie, off_t offset, void* buffer, size_t* _size) argument
1333 file_cache_write(void* _cacheRef, void* cookie, off_t offset, const void* buffer, size_t* _size) argument
[all...]
/haiku/src/system/kernel/debug/
H A Ddebug_parser.cpp482 uint32* _size);
1041 ExpressionParser::_ParseDereference(void** _address, uint32* _size) argument
1090 if (_size != NULL)
1091 *_size = size;
/haiku/src/system/kernel/slab/
H A DMemoryManager.cpp772 MemoryManager::GetAllocationInfo(void* address, size_t& _size) argument
784 _size = area->Size();
786 _size = 0;
803 _size = cache->object_size;
807 _size = reference - (addr_t)address + 1;
/haiku/src/system/kernel/vm/
H A Dvm.cpp1952 uint32 addressSpec, addr_t* _size, uint32 protection,
1956 "= %p, spec = %" B_PRIu32 ", _size = %p, protection = %" B_PRIu32 ", "
1958 addressSpec, _size, protection, vecs, vecCount));
2038 if (_size != NULL)
2039 *_size = size;
1951 vm_map_physical_memory_vecs(team_id team, const char* name, void** _address, uint32 addressSpec, addr_t* _size, uint32 protection, struct generic_io_vec* vecs, uint32 vecCount) argument
/haiku/src/tests/apps/partitioner/
H A DPartitioner.cpp52 get_size_string(off_t _size, BString& string) argument
58 double size = _size;
514 off_t _size; local
515 partitioningInfo.GetPartitionableSpaceAt(i, &_offset, &_size);
518 get_size_string(_size, size);
/haiku/src/tests/kits/storage/virtualdrive/
H A Dmkvirtualdrive.cpp41 parse_size(const char *str, off_t *_size) argument
43 if (!str || !_size)
86 *_size = size * suffix;
88 if (*_size / suffix != size)
/haiku/src/tools/elfsymbolpatcher/
H A DElfFile.cpp557 ElfFile::GetStringSectionStrings(int32 index, size_t* _size) argument
566 if (_size)
567 *_size = size;
/haiku/src/tools/fs_shell/
H A Dfile_cache.cpp146 fssh_size_t *_size, bool doWrite)
155 ref, offset, (void *)buffer, *_size, doWrite ? "write" : "read"));
159 *_size = 0;
164 fssh_size_t size = *_size;
170 *_size = size;
338 void *bufferBase, fssh_size_t *_size)
343 ref, offset, bufferBase, *_size));
345 return cache_io(ref, cookie, offset, (fssh_addr_t)bufferBase, _size, false);
351 const void *buffer, fssh_size_t *_size)
356 (fssh_addr_t)const_cast<void *>(buffer), _size, tru
145 cache_io(void *_cacheRef, void *cookie, fssh_off_t offset, fssh_addr_t buffer, fssh_size_t *_size, bool doWrite) argument
337 fssh_file_cache_read(void *_cacheRef, void *cookie, fssh_off_t offset, void *bufferBase, fssh_size_t *_size) argument
350 fssh_file_cache_write(void *_cacheRef, void *cookie, fssh_off_t offset, const void *buffer, fssh_size_t *_size) argument
[all...]

Completed in 241 milliseconds

12345