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