Lines Matching refs:pool
178 /* From Sun's Java VM Specification, as tag entries in the constant pool. */
204 long *pool;
234 /* Reads in a value from the constant pool. */
239 pool[*cur] = ftell(classfile);
301 pool = calloc(cp_count, sizeof(long));
302 if(!pool)
303 error("%s: Out of memory for constant pool\n", program);
313 if(!pool[this_class] || pool[this_class] == -1)
315 if(fseek(classfile, pool[this_class] + 1, SEEK_SET))
321 if(!pool[classinfo_ptr] || pool[classinfo_ptr] == -1)
323 if(fseek(classfile, pool[classinfo_ptr] + 1, SEEK_SET))
349 free(pool);