Home | History | Annotate | Download | only in src

Lines Matching full:bytearray

658 TYPE_CHECKER(ByteArray, BYTE_ARRAY_TYPE)
3283 CAST_ACCESSOR(ByteArray)
3428 DEFINE_DEOPT_ELEMENT_ACCESSORS(TranslationByteArray, ByteArray)
4118 int ByteArray::Size() { return RoundUp(length() + kHeaderSize, kPointerSize); }
4120 byte ByteArray::get(int index) {
4125 void ByteArray::set(int index, byte value) {
4130 void ByteArray::copy_in(int index, const byte* buffer, int length) {
4137 void ByteArray::copy_out(int index, byte* buffer, int length) {
4144 int ByteArray::get_int(int index) {
4149 void ByteArray::set_int(int index, int value) {
4154 ByteArray* ByteArray::FromDataStartAddress(Address address) {
4156 return reinterpret_cast<ByteArray*>(address - kHeaderSize + kHeapObjectTag);
4160 int ByteArray::ByteArraySize() { return SizeFor(this->length()); }
4163 Address ByteArray::GetDataStartAddress() {
4233 ACCESSORS(BytecodeArray, source_position_table, ByteArray,
4564 return reinterpret_cast<ByteArray*>(this)->ByteArraySize();
5435 ByteArray* AbstractCode::source_position_table() {
5443 void AbstractCode::set_source_position_table(ByteArray* source_position_table) {
6808 ACCESSORS(Code, relocation_info, ByteArray, kRelocationInfoOffset)
6811 ACCESSORS(Code, source_position_table, ByteArray, kSourcePositionTableOffset)
6912 ByteArray* Code::unchecked_relocation_info() {
6913 return reinterpret_cast<ByteArray*>(READ_FIELD(this, kRelocationInfoOffset));