Lines Matching +refs:val +refs:index
44 intptr_t val = at(slot)->get_int();
45 jint ival = *((jint*) (&val));
92 intptr_t val;
93 *((jint*) (&val)) = value;
94 at(slot)->set_int(val);
122 } val;
124 val.array[0] = *(jint*)(&value);
125 val.array[1] = 0;
126 at(slot)->set_int(val.jd);
150 for(int index = 0; index < size(); index++) {
151 tty->print("\t %2d ", index);
152 at(index)->print_on(tty);
153 if( at(index )->type() == T_INT &&
154 index+1 < size() &&
155 at(index+1)->type() == T_INT ) {
156 tty->print(" " INT64_FORMAT " (long)", long_at(index));
158 tty->print("\t %.15e (double)", double_at(index));
159 tty->print(" " PTR64_FORMAT " (longhex)", long_at(index));