Lines Matching defs:new
1017 * Initialize a new structure. Keep in mind that ri_dst_str, ri_gate_str and
2902 int byte = 0, state = VIRGIN, new;
2908 new = *addr - '0';
2910 new = *addr - 'a' + 10;
2912 new = *addr - 'A' + 10;
2924 state = GOTONE; byte = new; continue;
2926 state = GOTTWO; byte = new + (byte << 4); continue;
2960 int byte = 0, state = VIRGIN, new;
2967 new = *addr - '0';
2969 new = *addr - 'a' + 10;
2971 new = *addr - 'A' + 10;
2996 byte = new;
3000 byte = new + (byte << 4);