Searched refs:integer_bytes (Results 1 - 4 of 4) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/
H A DABISysV_ppc.cpp726 uint32_t integer_bytes = 0; // Tracks how much of the r3/rds registers we've consumed so far local
760 if (integer_bytes < 8)
762 if (integer_bytes + field_byte_width <= 8)
766 copy_from_offset = integer_bytes;
767 integer_bytes += field_byte_width;
774 integer_bytes = 8 + field_byte_width;
778 else if (integer_bytes + field_byte_width <= 16)
781 copy_from_offset = integer_bytes - 8;
782 integer_bytes += field_byte_width;
866 if (integer_bytes <
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/
H A DABISysV_ppc64.cpp727 uint32_t integer_bytes = 0; // Tracks how much of the r3/rds registers we've consumed so far local
761 if (integer_bytes < 8)
763 if (integer_bytes + field_byte_width <= 8)
767 copy_from_offset = integer_bytes;
768 integer_bytes += field_byte_width;
775 integer_bytes = 8 + field_byte_width;
779 else if (integer_bytes + field_byte_width <= 16)
782 copy_from_offset = integer_bytes - 8;
783 integer_bytes += field_byte_width;
867 if (integer_bytes <
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/
H A DABISysV_mips64.cpp518 uint32_t integer_bytes = 0; // Tracks how much bytes of r2 and r3 registers we've consumed so far local
636 padding = field_byte_offset - integer_bytes;
638 if (integer_bytes < 8)
641 if (integer_bytes + field_byte_width + padding <= 8)
644 integer_bytes = integer_bytes + field_byte_width + padding; // Increase the consumed bytes.
650 integer_bytes = integer_bytes + field_byte_width + padding; // Increase the consumed bytes.
656 else if (integer_bytes + field_byte_width + padding <= 16)
658 integer_bytes
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/
H A DABISysV_x86_64.cpp811 uint32_t integer_bytes = 0; // Tracks how much of the rax/rds registers we've consumed so far local
849 if (integer_bytes < 8)
851 if (integer_bytes + field_byte_width <= 8)
855 copy_from_offset = integer_bytes;
856 integer_bytes += field_byte_width;
863 integer_bytes = 8 + field_byte_width;
867 else if (integer_bytes + field_byte_width <= 16)
870 copy_from_offset = integer_bytes - 8;
871 integer_bytes += field_byte_width;
961 if (integer_bytes <
[all...]

Completed in 119 milliseconds