Searched refs:toSet (Results 1 – 6 of 6) sorted by relevance
/haiku/src/kits/debugger/dwarf/ |
H A D | DebugInfoEntry.cpp | 363 DebugInfoEntry::SetDynamicAttributeValue(DynamicAttributeValue& toSet, in SetDynamicAttributeValue() argument 368 toSet.SetTo(value.constant); in SetDynamicAttributeValue() 371 toSet.SetTo(value.reference); in SetDynamicAttributeValue() 374 toSet.SetTo(value.block.data, value.block.length); in SetDynamicAttributeValue() 383 DebugInfoEntry::SetConstantAttributeValue(ConstantAttributeValue& toSet, in SetConstantAttributeValue() argument 388 toSet.SetTo(value.constant); in SetConstantAttributeValue() 391 toSet.SetTo(value.string); in SetConstantAttributeValue() 394 toSet.SetTo(value.block.data, value.block.length); in SetConstantAttributeValue() 403 DebugInfoEntry::SetMemberLocation(MemberLocation& toSet, in SetMemberLocation() argument 408 toSet.SetToConstant(value.constant); in SetMemberLocation() [all …]
|
H A D | DebugInfoEntry.h | 215 DynamicAttributeValue& toSet, 218 ConstantAttributeValue& toSet, 220 status_t SetMemberLocation(MemberLocation& toSet,
|
/haiku/src/system/kernel/arch/generic/ |
H A D | generic_vm_physical_page_ops.cpp | 28 size_t toSet = min_c(length, B_PAGE_SIZE - pageOffset); in generic_vm_memset_physical() local 29 memset((void*)(virtualAddress + pageOffset), value, toSet); in generic_vm_memset_physical() 33 length -= toSet; in generic_vm_memset_physical() 34 address += toSet; in generic_vm_memset_physical()
|
/haiku/src/system/kernel/arch/m68k/paging/ |
H A D | m68k_physical_page_mapper_large_memory.cpp | 588 size_t toSet = min_c(length, B_PAGE_SIZE - pageOffset); in MemsetPhysical() local 589 memset((void*)(slot->address + pageOffset), value, toSet); in MemsetPhysical() 591 length -= toSet; in MemsetPhysical() 592 address += toSet; in MemsetPhysical()
|
/haiku/src/system/kernel/arch/x86/paging/ |
H A D | x86_physical_page_mapper_large_memory.cpp | 585 size_t toSet = min_c(length, B_PAGE_SIZE - pageOffset); in MemsetPhysical() local 586 memset((void*)(slot->address + pageOffset), value, toSet); in MemsetPhysical() 588 length -= toSet; in MemsetPhysical() 589 address += toSet; in MemsetPhysical()
|
/haiku/src/system/kernel/arch/arm/paging/ |
H A D | arm_physical_page_mapper_large_memory.cpp | 590 size_t toSet = min_c(length, B_PAGE_SIZE - pageOffset); in MemsetPhysical() local 591 memset((void*)(slot->address + pageOffset), value, toSet); in MemsetPhysical() 593 length -= toSet; in MemsetPhysical() 594 address += toSet; in MemsetPhysical()
|