Lines Matching defs:code
22 /* Encoding and decoding a code table based on differences to another one.
23 ** This allows efficient embedding of a code table in the compressed data.
38 Vcdcode_t* code = tbl->code;
41 *str++ = code[i].inst1.type;
43 *str++ = code[i].inst2.type;
45 *str++ = code[i].inst1.size;
47 *str++ = code[i].inst2.size;
49 *str++ = code[i].inst1.mode;
51 *str++ = code[i].inst2.mode;
64 Vcdcode_t* code = tbl->code;
67 code[i].inst1.type = *str++;
69 code[i].inst2.type = *str++;
71 code[i].inst1.size = *str++;
73 code[i].inst2.size = *str++;
75 code[i].inst1.mode = *str++;
77 code[i].inst2.mode = *str++;