Lines Matching full:bytearray
139 TYPE_CHECKER(ByteArray, BYTE_ARRAY_TYPE)
615 CAST_ACCESSOR(ByteArray)
3287 DEFINE_DEOPT_ELEMENT_ACCESSORS(TranslationByteArray, ByteArray)
3937 int ByteArray::Size() { return RoundUp(length() + kHeaderSize, kPointerSize); }
3939 byte ByteArray::get(int index) {
3944 void ByteArray::set(int index, byte value) {
3949 void ByteArray::copy_in(int index, const byte* buffer, int length) {
3956 void ByteArray::copy_out(int index, byte* buffer, int length) {
3963 int ByteArray::get_int(int index) {
3968 void ByteArray::set_int(int index, int value) {
3973 ByteArray* ByteArray::FromDataStartAddress(Address address) {
3975 return reinterpret_cast<ByteArray*>(address - kHeaderSize + kHeapObjectTag);
3979 int ByteArray::ByteArraySize() { return SizeFor(this->length()); }
3982 Address ByteArray::GetDataStartAddress() {
4062 ACCESSORS(BytecodeArray, source_position_table, ByteArray,
4393 return reinterpret_cast<ByteArray*>(this)->ByteArraySize();
5277 ByteArray* AbstractCode::source_position_table() {
5285 void AbstractCode::set_source_position_table(ByteArray* source_position_table) {
6657 CODE_ACCESSORS(relocation_info, ByteArray, kRelocationInfoOffset)
6660 CODE_ACCESSORS(source_position_table, ByteArray, kSourcePositionTableOffset)
6762 ByteArray* Code::unchecked_relocation_info() {
6763 return reinterpret_cast<ByteArray*>(READ_FIELD(this, kRelocationInfoOffset));