Searched refs:ilabel (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/lib2to3/pgen2/ |
D | parse.py | 119 ilabel = self.classify(type, value, context) 128 if ilabel == i: 148 if ilabel in itsfirst: 170 ilabel = self.grammar.keywords.get(value) 171 if ilabel is not None: 172 return ilabel 173 ilabel = self.grammar.tokens.get(type) 174 if ilabel is None: 176 return ilabel
|
D | pgen.py | 56 ilabel = self.make_label(c, label) 58 first[ilabel] = 1 63 ilabel = len(c.labels) 72 c.symbol2label[label] = ilabel 73 return ilabel 83 c.tokens[itoken] = ilabel 84 return ilabel 95 c.keywords[value] = ilabel 96 return ilabel 104 c.tokens[itoken] = ilabel [all …]
|
D | conv.py | 253 for ilabel, (type, value) in enumerate(self.labels): 255 self.keywords[value] = ilabel 257 self.tokens[type] = ilabel
|
/third_party/mesa3d/src/intel/tools/ |
D | i965_asm.c | 133 struct instr_label *ilabel, *s; in i965_postprocess_labels() local 138 LIST_FOR_EACH_ENTRY_SAFE(ilabel, s, &instr_labels, link) { in i965_postprocess_labels() 139 if (!strcmp(tlabel->name, ilabel->name)) { in i965_postprocess_labels() 140 brw_inst *inst = store + ilabel->offset; in i965_postprocess_labels() 142 int relative_offset = (tlabel->offset - ilabel->offset) / sizeof(brw_inst); in i965_postprocess_labels() 147 if (ilabel->type == INSTR_LABEL_JIP) { in i965_postprocess_labels() 195 list_del(&ilabel->link); in i965_postprocess_labels() 200 LIST_FOR_EACH_ENTRY(ilabel, &instr_labels, link) { in i965_postprocess_labels() 201 fprintf(stderr, "Unknown label '%s'\n", ilabel->name); in i965_postprocess_labels()
|