Lines Matching full:pool
191 /* From Sun's Java VM Specification, as tag entries in the constant pool. */
217 long *pool;
247 /* Reads in a value from the constant pool. */
252 pool[*cur] = ftell(classfile);
314 pool = calloc(cp_count, sizeof(long));
315 if(!pool)
316 error("%s: Out of memory for constant pool\n", program);
326 if(!pool[this_class] || pool[this_class] == -1)
328 if(fseek(classfile, pool[this_class] + 1, SEEK_SET))
334 if(!pool[classinfo_ptr] || pool[classinfo_ptr] == -1)
336 if(fseek(classfile, pool[classinfo_ptr] + 1, SEEK_SET))
362 free(pool);