示例#1
0
 int type() const {
   return (int)(ubyte_field(type_offset()));
 }
示例#2
0
 // Accessing data in buffer
 jubyte read_u1(int& index) {
   jint offset = offset_from_byte_index(index);
   index += sizeof(jubyte);
   return (jubyte) ubyte_field(offset);
 }
示例#3
0
 jubyte ubyte_at(int index) const {
   return ubyte_field(offset_from_ubyte_index(index));
 }