/src/usr.bin/config/ |
gram.y | 102 #define new0(n,s,p,i,x) wrap_mk_nvlist(newnv(n, s, p, i, x)) 103 #define new_n(n) new0(n, NULL, NULL, 0, NULL) 104 #define new_nx(n, x) new0(n, NULL, NULL, 0, x) 105 #define new_ns(n, s) new0(n, s, NULL, 0, NULL) 106 #define new_si(s, i) new0(NULL, s, NULL, i, NULL) 107 #define new_spi(s, p, i) new0(NULL, s, p, i, NULL) 108 #define new_nsi(n,s,i) new0(n, s, NULL, i, NULL) 109 #define new_np(n, p) new0(n, NULL, p, 0, NULL) 110 #define new_s(s) new0(NULL, s, NULL, 0, NULL) 111 #define new_p(p) new0(NULL, NULL, p, 0, NULL [all...] |
/src/sys/arch/arm/gemini/ |
if_gmc.c | 202 uint32_t new0, new1, new2; local in function:gmc_filter_change 205 new0 = eaddr[0] | ((eaddr[1] | (eaddr[2] | (eaddr[3] << 8)) << 8) << 8); 208 if (sc->sc_gmac_sta_add[0] != new0 212 new0); 217 sc->sc_gmac_sta_add[0] = new0; 248 new0 = sc->sc_gmac_rx_filter & ~RXFILTER_PROMISC; 249 new0 |= RXFILTER_BROADCAST | RXFILTER_UNICAST | RXFILTER_MULTICAST; 251 new0 |= RXFILTER_PROMISC; 253 if (new0 != sc->sc_gmac_rx_filter) { 255 new0); [all...] |