Lines Matching refs:addr
935 static bool compile_address P_((struct addr *addr, int ch));
937 compile_address(addr, ch) in compile_address() argument
938 struct addr *addr; in compile_address()
941 addr->addr_type = ADDR_IS_NULL;
942 addr->addr_step = 0;
943 addr->addr_number = ~(countT)0; /* extremely unlikely to ever match */
944 addr->addr_regex = NULL;
950 addr->addr_type = ADDR_IS_REGEX;
986 addr->addr_regex = compile_regex (b, flags, 0);
994 addr->addr_number = in_integer(ch);
995 addr->addr_type = ADDR_IS_NUM;
1006 addr->addr_step = step;
1007 addr->addr_type = ADDR_IS_NUM_MOD;
1013 addr->addr_step = in_integer(in_nonblank());
1014 if (addr->addr_step==0)
1017 addr->addr_type = ADDR_IS_STEP;
1019 addr->addr_type = ADDR_IS_STEP_MOD;
1023 addr->addr_type = ADDR_IS_LAST;
1056 struct addr a;
1070 cur_cmd->a1 = MEMDUP(&a, 1, struct addr);
1077 cur_cmd->a2 = MEMDUP(&a, 1, struct addr);