Home
last modified time | relevance | path

Searched refs:didx (Results 1 – 5 of 5) sorted by relevance

/dragonfly/contrib/gcc-4.7/gcc/
HDtree-ssa-strlen.c1049 int idx, didx; in handle_builtin_strcpy() local
1064 didx = get_stridx (dst); in handle_builtin_strcpy()
1067 if (didx > 0) in handle_builtin_strcpy()
1068 olddsi = get_strinfo (didx); in handle_builtin_strcpy()
1069 else if (didx < 0) in handle_builtin_strcpy()
1106 if (didx == 0) in handle_builtin_strcpy()
1108 didx = new_stridx (dst); in handle_builtin_strcpy()
1109 if (didx == 0) in handle_builtin_strcpy()
1125 dsi = new_strinfo (dst, didx, srclen); in handle_builtin_strcpy()
1126 set_strinfo (didx, dsi); in handle_builtin_strcpy()
[all …]
/dragonfly/contrib/gcc-8.0/gcc/
HDtree-ssa-strlen.c1440 int idx, didx; in handle_builtin_strcpy() local
1456 didx = get_stridx (dst); in handle_builtin_strcpy()
1459 if (didx > 0) in handle_builtin_strcpy()
1460 olddsi = get_strinfo (didx); in handle_builtin_strcpy()
1461 else if (didx < 0) in handle_builtin_strcpy()
1502 if (didx == 0) in handle_builtin_strcpy()
1504 didx = new_stridx (dst); in handle_builtin_strcpy()
1505 if (didx == 0) in handle_builtin_strcpy()
1522 dsi = new_strinfo (dst, didx, srclen, srclen != NULL_TREE); in handle_builtin_strcpy()
1523 set_strinfo (didx, dsi); in handle_builtin_strcpy()
[all …]
/dragonfly/sys/net/pf/
HDpf.c1023 PF_ACPY(&(*skp)->addr[pd->didx], daddr, pd->af); in pf_state_key_setup()
1025 (*skp)->port[pd->didx] = dport; in pf_state_key_setup()
3804 if (PF_ANEQ(daddr, &nk->addr[pd->didx], af) || in pf_test_rule()
3805 nk->port[pd->didx] != dport) { in pf_test_rule()
3807 &th->th_sum, &nk->addr[pd->didx], in pf_test_rule()
3808 nk->port[pd->didx], 0, af); in pf_test_rule()
3828 if (PF_ANEQ(daddr, &nk->addr[pd->didx], af) || in pf_test_rule()
3829 nk->port[pd->didx] != dport) { in pf_test_rule()
3832 &nk->addr[pd->didx], in pf_test_rule()
3833 nk->port[pd->didx], 1, af); in pf_test_rule()
[all …]
HDpf_ioctl.c1831 int sidx, didx; in pfioctl() local
1837 didx = (direction == PF_IN) ? 0 : 1; in pfioctl()
1851 PF_ACPY(&key.addr[didx], &pnl->daddr, pnl->af); in pfioctl()
1852 key.port[didx] = pnl->dport; in pfioctl()
1869 PF_ACPY(&pnl->rdaddr, &sk->addr[didx], sk->af); in pfioctl()
1870 pnl->rdport = sk->port[didx]; in pfioctl()
HDpfvar.h1237 u_int8_t didx; /* key index for destination */ member