static void set_count( oop string, int count) { assert(initialized, "Must be initialized"); if (count_offset > 0) { string->int_field_put(count_offset, count); } }
static void set_offset(oop string, int offset) { string->int_field_put(offset_offset, offset); }
static void set_count( oop string, int count) { string->int_field_put(count_offset, count); }
static void set_hash(oop string, unsigned int hash) { assert(initialized && (hash_offset > 0), "Must be initialized"); string->int_field_put(hash_offset, hash); }