Lines Matching defs:new_d
1284 dict_type *new_d = (dict_type *) malloc (sizeof (dict_type));
1285 new_d->word = word;
1286 new_d->next = root;
1287 root = new_d;
1288 new_d->code = (stinst_type *) malloc (sizeof (stinst_type));
1289 new_d->code_length = 1;
1290 new_d->code_end = 0;
1291 return new_d;
1316 dict_type *new_d = newentry (name);
1317 add_to_definition (new_d, func);
1318 add_to_definition (new_d, 0);
1325 dict_type *new_d = newentry (name);
1326 add_to_definition (new_d, push_number);
1327 add_to_definition (new_d, (stinst_type) (&(new_d->var)));
1328 add_to_definition (new_d, 0);