Lines Matching defs:num_bytecodes
261 int num_bytecodes;
679 short stack, num_constants, num_symbols, num_builtins, num_bytecodes;
707 num_bytecodes = *(short*)stream;
716 stream += num_bytecodes * sizeof(unsigned char*);
718 stream += num_bytecodes * sizeof(LispObj*);
742 for (i = 0; i < num_bytecodes; i++) {
1281 for (i = 0; i < com->table.num_bytecodes; i++) {
2426 &com->table.num_bytecodes) > 0xff) {
2643 com->table.num_bytecodes);
2792 com->length += com->table.num_bytecodes * sizeof(unsigned char*);
2793 com->length += com->table.num_bytecodes * sizeof(LispObj*);
2814 *(short*)(com->bytecode + offset) = com->table.num_bytecodes;
2829 count < com->table.num_bytecodes; count++, codes++)
2831 offset += com->table.num_bytecodes * sizeof(unsigned char*);
2837 count < com->table.num_bytecodes; count++, names++)
2839 offset += com->table.num_bytecodes * sizeof(LispObj*);