Home
last modified time | relevance | path

Searched refs:mac (Results 1 – 25 of 423) sorted by relevance

12345678910>>...17

/illumos-gate/usr/src/uts/common/io/fcoe/
H A Dfcoe_eth.c60 fcoe_open_mac(fcoe_mac_t *mac, int force_promisc, fcoeio_stat_t *err_detail) in fcoe_open_mac() argument
73 ret = mac_open_by_linkid(mac->fm_linkid, &mac->fm_handle); in fcoe_open_mac()
76 mac->fm_linkid, ret); in fcoe_open_mac()
80 (void) sprintf(cli_name, "%s-%d", "fcoe", mac->fm_linkid); in fcoe_open_mac()
82 ret = mac_client_open(mac->fm_handle, in fcoe_open_mac()
83 &mac->fm_cli_handle, cli_name, fm_open_flag); in fcoe_open_mac()
85 (void) fcoe_close_mac(mac); in fcoe_open_mac()
92 mac_unicast_primary_get(mac->fm_handle, mac->fm_primary_addr); in fcoe_open_mac()
93 bcopy(mac->fm_primary_addr, mac->fm_current_addr, in fcoe_open_mac()
96 if (mac_unicast_add(mac->fm_cli_handle, NULL, MAC_UNICAST_PRIMARY, in fcoe_open_mac()
[all …]
H A Dfcoe_fc.c74 fcoe_mac_t *mac; in fcoe_register_client() local
87 for (mac = list_head(&fcoe_global_ss->ss_mac_list); mac; in fcoe_register_client()
88 mac = list_next(&fcoe_global_ss->ss_mac_list, mac)) { in fcoe_register_client()
89 if (client->ect_channelid == mac->fm_linkid) { in fcoe_register_client()
94 if (mac == NULL) { in fcoe_register_client()
99 if (mac->fm_flags & FCOE_MAC_FLAG_BOUND) { in fcoe_register_client()
104 atomic_or_32(&mac->fm_flags, FCOE_MAC_FLAG_BOUND); in fcoe_register_client()
105 bcopy(client, &mac->fm_client, sizeof (fcoe_client_t)); in fcoe_register_client()
110 eport = &mac->fm_eport; in fcoe_register_client()
112 eport->eport_fcoe_private = mac; in fcoe_register_client()
[all …]
/illumos-gate/usr/src/uts/intel/io/dnet/
H A Ddnet_mii.c61 static struct phydata *mii_get_valid_phydata(mii_handle_t mac, int phy);
62 static void mii_portmon(mii_handle_t mac);
71 static void postreset_ICS1890(mii_handle_t mac, int phy);
72 static void postreset_NS83840(mii_handle_t mac, int phy);
88 mii_handle_t mac; in mii_create() local
91 if ((mac = (mii_handle_t) in mii_create()
95 mac->mii_write = writefunc; in mii_create()
96 mac->mii_read = readfunc; in mii_create()
97 mac->mii_dip = dip; in mii_create()
98 *macp = mac; in mii_create()
[all …]
/illumos-gate/usr/src/uts/common/io/chxge/com/
H A Dixf1010.c154 #define MACREG(mac, mac_reg) ((mac)->instance->mac_base + (mac_reg)) argument
163 static void disable_port(struct cmac *mac) in disable_port() argument
167 (void) t1_tpi_read(mac->adapter, REG_PORT_ENABLE, &val); in disable_port()
168 val &= ~(1 << mac->instance->index); in disable_port()
169 (void) t1_tpi_write(mac->adapter, REG_PORT_ENABLE, val); in disable_port()
172 #define RMON_UPDATE(mac, name, stat_name) \ argument
173 (void) t1_tpi_read((mac)->adapter, MACREG(mac, REG_##name), &val); \
174 (mac)->stats.stat_name += val;
180 static void port_stats_update(struct cmac *mac) in port_stats_update() argument
185 RMON_UPDATE(mac, RxOctetsTotalOK, RxOctetsOK); in port_stats_update()
[all …]
H A Dch_mac.c78 static int mac_intr_enable(struct cmac *mac) in mac_intr_enable() argument
82 if (t1_is_asic(mac->adapter)) { in mac_intr_enable()
90 mac_intr = t1_read_reg_4(mac->adapter, A_PL_ENABLE); in mac_intr_enable()
92 t1_write_reg_4(mac->adapter, A_PL_ENABLE, mac_intr); in mac_intr_enable()
94 mac_intr = t1_read_reg_4(mac->adapter, in mac_intr_enable()
96 mac_intr |= static_aPorts[mac->instance->index]; in mac_intr_enable()
97 t1_write_reg_4(mac->adapter, in mac_intr_enable()
104 static int mac_intr_disable(struct cmac *mac) in mac_intr_disable() argument
108 if (t1_is_asic(mac->adapter)) { in mac_intr_disable()
116 mac_intr = t1_read_reg_4(mac->adapter, A_PL_ENABLE); in mac_intr_disable()
[all …]
H A Dvsc7326.c382 static int mac_intr_handler(struct cmac *mac) in mac_intr_handler() argument
388 static int mac_intr_enable(struct cmac *mac) in mac_intr_enable() argument
394 static int mac_intr_disable(struct cmac *mac) in mac_intr_disable() argument
400 static int mac_intr_clear(struct cmac *mac) in mac_intr_clear() argument
406 static int mac_set_address(struct cmac* mac, u8 addr[6]) in mac_set_address() argument
409 int port = mac->instance->index; in mac_set_address()
411 vsc_write(mac->adapter, REG_MAC_LOW_ADDR(port), in mac_set_address()
413 vsc_write(mac->adapter, REG_MAC_HIGH_ADDR(port), in mac_set_address()
416 vsc_read(mac->adapter, REG_ING_FFILT_UM_EN, &val); in mac_set_address()
418 vsc_write(mac->adapter, REG_ING_FFILT_UM_EN, val | (port << 28)); in mac_set_address()
[all …]
H A Dvsc7321.c240 struct cmac *mac; in vsc7321_mac_create() local
244 mac = t1_os_malloc_wait_zero(sizeof(*mac) + sizeof(cmac_instance)); in vsc7321_mac_create()
245 if (!mac) return NULL; in vsc7321_mac_create()
247 mac->ops = &vsc7321_ops; in vsc7321_mac_create()
248 mac->instance = (cmac_instance *)(mac + 1); in vsc7321_mac_create()
250 mac->adapter = adapter; in vsc7321_mac_create()
251 mac->instance->index = index; in vsc7321_mac_create()
273 t1_os_free((void *)mac, sizeof(*mac) + sizeof(cmac_instance)); in vsc7321_mac_create()
277 mac->instance->version = (val >> 16) & 0xf; in vsc7321_mac_create()
280 return mac; in vsc7321_mac_create()
[all …]
/illumos-gate/usr/src/uts/common/io/e1000api/
H A De1000_api.c48 if (hw->mac.ops.init_params) { in e1000_init_mac_params()
49 ret_val = hw->mac.ops.init_params(hw); in e1000_init_mac_params()
152 struct e1000_mac_info *mac = &hw->mac; in e1000_set_mac_type() local
159 mac->type = e1000_82542; in e1000_set_mac_type()
163 mac->type = e1000_82543; in e1000_set_mac_type()
169 mac->type = e1000_82544; in e1000_set_mac_type()
176 mac->type = e1000_82540; in e1000_set_mac_type()
180 mac->type = e1000_82545; in e1000_set_mac_type()
185 mac->type = e1000_82545_rev_3; in e1000_set_mac_type()
190 mac->type = e1000_82546; in e1000_set_mac_type()
[all …]
H A De1000_mac.c50 struct e1000_mac_info *mac = &hw->mac; in e1000_init_mac_ops_generic() local
54 mac->ops.init_params = e1000_null_ops_generic; in e1000_init_mac_ops_generic()
55 mac->ops.init_hw = e1000_null_ops_generic; in e1000_init_mac_ops_generic()
56 mac->ops.reset_hw = e1000_null_ops_generic; in e1000_init_mac_ops_generic()
57 mac->ops.setup_physical_interface = e1000_null_ops_generic; in e1000_init_mac_ops_generic()
58 mac->ops.get_bus_info = e1000_null_ops_generic; in e1000_init_mac_ops_generic()
59 mac->ops.set_lan_id = e1000_set_lan_id_multi_port_pcie; in e1000_init_mac_ops_generic()
60 mac->ops.read_mac_addr = e1000_read_mac_addr_generic; in e1000_init_mac_ops_generic()
61 mac->ops.config_collision_dist = e1000_config_collision_dist_generic; in e1000_init_mac_ops_generic()
62 mac->ops.clear_hw_cntrs = e1000_null_mac_generic; in e1000_init_mac_ops_generic()
[all …]
H A De1000_82571.c117 switch (hw->mac.type) { in e1000_init_phy_params_82571()
175 switch (hw->mac.type) { in e1000_init_phy_params_82571()
230 switch (hw->mac.type) { in e1000_init_nvm_params_82571()
262 switch (hw->mac.type) { in e1000_init_nvm_params_82571()
288 struct e1000_mac_info *mac = &hw->mac; in e1000_init_mac_params_82571() local
301 mac->ops.setup_physical_interface = in e1000_init_mac_params_82571()
303 mac->ops.check_for_link = e1000_check_for_fiber_link_generic; in e1000_init_mac_params_82571()
304 mac->ops.get_link_up_info = in e1000_init_mac_params_82571()
312 mac->ops.setup_physical_interface = in e1000_init_mac_params_82571()
314 mac->ops.check_for_link = e1000_check_for_serdes_link_82571; in e1000_init_mac_params_82571()
[all …]
H A De1000_82540.c94 switch (hw->mac.type) { in e1000_init_phy_params_82540()
160 struct e1000_mac_info *mac = &hw->mac; in e1000_init_mac_params_82540() local
183 mac->mta_reg_count = 128; in e1000_init_mac_params_82540()
185 mac->rar_entry_count = E1000_RAR_ENTRIES; in e1000_init_mac_params_82540()
190 mac->ops.get_bus_info = e1000_get_bus_info_pci_generic; in e1000_init_mac_params_82540()
192 mac->ops.set_lan_id = e1000_set_lan_id_multi_port_pci; in e1000_init_mac_params_82540()
194 mac->ops.reset_hw = e1000_reset_hw_82540; in e1000_init_mac_params_82540()
196 mac->ops.init_hw = e1000_init_hw_82540; in e1000_init_mac_params_82540()
198 mac->ops.setup_link = e1000_setup_link_generic; in e1000_init_mac_params_82540()
200 mac->ops.setup_physical_interface = in e1000_init_mac_params_82540()
[all …]
H A De1000_82542.c102 struct e1000_mac_info *mac = &hw->mac; in e1000_init_mac_params_82542() local
110 mac->mta_reg_count = 128; in e1000_init_mac_params_82542()
112 mac->rar_entry_count = E1000_RAR_ENTRIES; in e1000_init_mac_params_82542()
117 mac->ops.get_bus_info = e1000_get_bus_info_82542; in e1000_init_mac_params_82542()
119 mac->ops.set_lan_id = e1000_set_lan_id_multi_port_pci; in e1000_init_mac_params_82542()
121 mac->ops.reset_hw = e1000_reset_hw_82542; in e1000_init_mac_params_82542()
123 mac->ops.init_hw = e1000_init_hw_82542; in e1000_init_mac_params_82542()
125 mac->ops.setup_link = e1000_setup_link_82542; in e1000_init_mac_params_82542()
127 mac->ops.setup_physical_interface = in e1000_init_mac_params_82542()
130 mac->ops.check_for_link = e1000_check_for_fiber_link_generic; in e1000_init_mac_params_82542()
[all …]
H A De1000_82543.c110 phy->ops.read_reg = (hw->mac.type == e1000_82543) in e1000_init_phy_params_82543()
113 phy->ops.reset = (hw->mac.type == e1000_82543) in e1000_init_phy_params_82543()
116 phy->ops.write_reg = (hw->mac.type == e1000_82543) in e1000_init_phy_params_82543()
140 switch (hw->mac.type) { in e1000_init_phy_params_82543()
195 struct e1000_mac_info *mac = &hw->mac; in e1000_init_mac_params_82543() local
211 mac->mta_reg_count = 128; in e1000_init_mac_params_82543()
213 mac->rar_entry_count = E1000_RAR_ENTRIES; in e1000_init_mac_params_82543()
218 mac->ops.get_bus_info = e1000_get_bus_info_pci_generic; in e1000_init_mac_params_82543()
220 mac->ops.set_lan_id = e1000_set_lan_id_multi_port_pci; in e1000_init_mac_params_82543()
222 mac->ops.reset_hw = e1000_reset_hw_82543; in e1000_init_mac_params_82543()
[all …]
H A De1000_vf.c93 struct e1000_mac_info *mac = &hw->mac; in e1000_init_mac_params_vf() local
106 mac->asf_firmware_present = FALSE; in e1000_init_mac_params_vf()
108 mac->arc_subsystem_valid = FALSE; in e1000_init_mac_params_vf()
110 mac->adaptive_ifs = FALSE; in e1000_init_mac_params_vf()
112 mac->mta_reg_count = 128; in e1000_init_mac_params_vf()
114 mac->rar_entry_count = 1; in e1000_init_mac_params_vf()
118 mac->ops.setup_link = e1000_setup_link_vf; in e1000_init_mac_params_vf()
120 mac->ops.get_bus_info = e1000_get_bus_info_pcie_vf; in e1000_init_mac_params_vf()
122 mac->ops.reset_hw = e1000_reset_hw_vf; in e1000_init_mac_params_vf()
124 mac->ops.init_hw = e1000_init_hw_vf; in e1000_init_mac_params_vf()
[all …]
/illumos-gate/usr/src/cmd/checknr/
H A Dchecknr.c160 static void chkcmd(char *line, char *mac);
161 static void nomatch(char *mac);
164 static void checkknown(char *mac);
166 static void addmac(char *mac);
167 static int binsrch(char *mac);
283 char mac[5]; /* The current macro or nroff command */ in process() local
292 (void) strncpy(mac, line+1, 4); in process()
293 if (isspace(mac[0])) { in process()
296 } else if (isspace(mac[1])) { in process()
297 mac[1] = 0; in process()
[all …]
/illumos-gate/usr/src/uts/common/io/ixgbe/core/
H A Dixgbe_x540.c62 struct ixgbe_mac_info *mac = &hw->mac; in ixgbe_init_ops_X540() local
89 mac->ops.reset_hw = ixgbe_reset_hw_X540; in ixgbe_init_ops_X540()
90 mac->ops.enable_relaxed_ordering = ixgbe_enable_relaxed_ordering_gen2; in ixgbe_init_ops_X540()
91 mac->ops.get_media_type = ixgbe_get_media_type_X540; in ixgbe_init_ops_X540()
92 mac->ops.get_supported_physical_layer = in ixgbe_init_ops_X540()
94 mac->ops.read_analog_reg8 = NULL; in ixgbe_init_ops_X540()
95 mac->ops.write_analog_reg8 = NULL; in ixgbe_init_ops_X540()
96 mac->ops.start_hw = ixgbe_start_hw_X540; in ixgbe_init_ops_X540()
97 mac->ops.get_san_mac_addr = ixgbe_get_san_mac_addr_generic; in ixgbe_init_ops_X540()
98 mac->ops.set_san_mac_addr = ixgbe_set_san_mac_addr_generic; in ixgbe_init_ops_X540()
[all …]
H A Dixgbe_api.c70 if (hw->mac.ops.get_rtrup2tc) in ixgbe_dcb_get_rtrup2tc()
71 hw->mac.ops.get_rtrup2tc(hw, map); in ixgbe_dcb_get_rtrup2tc()
97 switch (hw->mac.type) { in ixgbe_init_shared_code()
120 hw->mac.max_link_up_time = IXGBE_LINK_UP_TIME; in ixgbe_init_shared_code()
159 hw->mac.type = ixgbe_mac_82598EB; in ixgbe_set_mac_type()
177 hw->mac.type = ixgbe_mac_82599EB; in ixgbe_set_mac_type()
182 hw->mac.type = ixgbe_mac_X540; in ixgbe_set_mac_type()
187 hw->mac.type = ixgbe_mac_X550; in ixgbe_set_mac_type()
196 hw->mac.type = ixgbe_mac_X550EM_x; in ixgbe_set_mac_type()
210 hw->mac.type = ixgbe_mac_X550EM_a; in ixgbe_set_mac_type()
[all …]
H A Dixgbe_vf.c59 hw->mac.ops.init_hw = ixgbe_init_hw_vf; in ixgbe_init_ops_vf()
60 hw->mac.ops.reset_hw = ixgbe_reset_hw_vf; in ixgbe_init_ops_vf()
61 hw->mac.ops.start_hw = ixgbe_start_hw_vf; in ixgbe_init_ops_vf()
63 hw->mac.ops.clear_hw_cntrs = NULL; in ixgbe_init_ops_vf()
64 hw->mac.ops.get_media_type = NULL; in ixgbe_init_ops_vf()
65 hw->mac.ops.get_mac_addr = ixgbe_get_mac_addr_vf; in ixgbe_init_ops_vf()
66 hw->mac.ops.stop_adapter = ixgbe_stop_adapter_vf; in ixgbe_init_ops_vf()
67 hw->mac.ops.get_bus_info = NULL; in ixgbe_init_ops_vf()
68 hw->mac.ops.negotiate_api_version = ixgbevf_negotiate_api_version; in ixgbe_init_ops_vf()
71 hw->mac.ops.setup_link = ixgbe_setup_mac_link_vf; in ixgbe_init_ops_vf()
[all …]
H A Dixgbe_82599.c64 struct ixgbe_mac_info *mac = &hw->mac; in ixgbe_init_mac_link_ops_82599() local
72 if ((mac->ops.get_media_type(hw) == ixgbe_media_type_fiber) && in ixgbe_init_mac_link_ops_82599()
74 mac->ops.disable_tx_laser = in ixgbe_init_mac_link_ops_82599()
76 mac->ops.enable_tx_laser = in ixgbe_init_mac_link_ops_82599()
78 mac->ops.flap_tx_laser = ixgbe_flap_tx_laser_multispeed_fiber; in ixgbe_init_mac_link_ops_82599()
81 mac->ops.disable_tx_laser = NULL; in ixgbe_init_mac_link_ops_82599()
82 mac->ops.enable_tx_laser = NULL; in ixgbe_init_mac_link_ops_82599()
83 mac->ops.flap_tx_laser = NULL; in ixgbe_init_mac_link_ops_82599()
88 mac->ops.setup_link = ixgbe_setup_mac_link_multispeed_fiber; in ixgbe_init_mac_link_ops_82599()
89 mac->ops.setup_mac_link = ixgbe_setup_mac_link_82599; in ixgbe_init_mac_link_ops_82599()
[all …]
H A Dixgbe_82598.c122 struct ixgbe_mac_info *mac = &hw->mac; in ixgbe_init_ops_82598() local
135 mac->ops.start_hw = ixgbe_start_hw_82598; in ixgbe_init_ops_82598()
136 mac->ops.enable_relaxed_ordering = ixgbe_enable_relaxed_ordering_82598; in ixgbe_init_ops_82598()
137 mac->ops.reset_hw = ixgbe_reset_hw_82598; in ixgbe_init_ops_82598()
138 mac->ops.get_media_type = ixgbe_get_media_type_82598; in ixgbe_init_ops_82598()
139 mac->ops.get_supported_physical_layer = in ixgbe_init_ops_82598()
141 mac->ops.read_analog_reg8 = ixgbe_read_analog_reg8_82598; in ixgbe_init_ops_82598()
142 mac->ops.write_analog_reg8 = ixgbe_write_analog_reg8_82598; in ixgbe_init_ops_82598()
143 mac->ops.set_lan_id = ixgbe_set_lan_id_multi_port_pcie_82598; in ixgbe_init_ops_82598()
144 mac->ops.enable_rx_dma = ixgbe_enable_rx_dma_82598; in ixgbe_init_ops_82598()
[all …]
H A Dixgbe_x550.c56 struct ixgbe_mac_info *mac = &hw->mac; in ixgbe_init_ops_X550() local
63 mac->ops.dmac_config = ixgbe_dmac_config_X550; in ixgbe_init_ops_X550()
64 mac->ops.dmac_config_tcs = ixgbe_dmac_config_tcs_X550; in ixgbe_init_ops_X550()
65 mac->ops.dmac_update_tcs = ixgbe_dmac_update_tcs_X550; in ixgbe_init_ops_X550()
66 mac->ops.setup_eee = NULL; in ixgbe_init_ops_X550()
67 mac->ops.set_source_address_pruning = in ixgbe_init_ops_X550()
69 mac->ops.set_ethertype_anti_spoofing = in ixgbe_init_ops_X550()
72 mac->ops.get_rtrup2tc = ixgbe_dcb_get_rtrup2tc_generic; in ixgbe_init_ops_X550()
82 mac->ops.disable_mdd = ixgbe_disable_mdd_X550; in ixgbe_init_ops_X550()
83 mac->ops.enable_mdd = ixgbe_enable_mdd_X550; in ixgbe_init_ops_X550()
[all …]
/illumos-gate/usr/src/uts/common/io/igc/core/
H A Digc_api.c20 if (hw->mac.ops.init_params) { in igc_init_mac_params()
21 ret_val = hw->mac.ops.init_params(hw); in igc_init_mac_params()
98 struct igc_mac_info *mac = &hw->mac; in igc_set_mac_type() local
118 mac->type = igc_i225; in igc_set_mac_type()
171 switch (hw->mac.type) { in igc_setup_init_funcs()
213 if (hw->mac.ops.get_bus_info) in igc_get_bus_info()
214 return hw->mac.ops.get_bus_info(hw); in igc_get_bus_info()
228 if (hw->mac.ops.clear_vfta) in igc_clear_vfta()
229 hw->mac.ops.clear_vfta(hw); in igc_clear_vfta()
243 if (hw->mac.ops.write_vfta) in igc_write_vfta()
[all …]
/illumos-gate/usr/src/uts/common/io/cxgbe/cxgbe/
H A Dcxgbe.c122 mac_register_t *mac; in cxgbe_devo_attach() local
133 mac = mac_alloc(MAC_VERSION); in cxgbe_devo_attach()
134 if (mac == NULL) { in cxgbe_devo_attach()
141 mac->m_type_ident = MAC_PLUGIN_IDENT_ETHER; in cxgbe_devo_attach()
142 mac->m_driver = pi; in cxgbe_devo_attach()
143 mac->m_dip = dip; in cxgbe_devo_attach()
144 mac->m_src_addr = pi->hw_addr; in cxgbe_devo_attach()
145 mac->m_callbacks = pi->mc; in cxgbe_devo_attach()
146 mac->m_max_sdu = pi->mtu; in cxgbe_devo_attach()
147 mac->m_priv_props = pi->props; in cxgbe_devo_attach()
[all …]
/illumos-gate/usr/src/lib/iconv_modules/euro/utils/
H A DMakefile.com34 alt%koi8.c alt%mac.c alt%win.c alt%win5.c dhn%dos2.c dhn%ib2.c dhn%is2.c dhn%iso2.c dhn%maz.c dhn%w…
36 is2%wi2.c iso%alt.c iso%koi.c iso%mac.c iso%win.c iso2%dhn.c iso2%dos2.c iso2%maz.c iso2%win2.c iso…
37 iso5%mac.c iso5%win5.c koi%alt.c koi%iso.c koi%mac.c koi%win.c koi8%alt.c koi8%iso5.c koi8%mac.c ko…
38 mac%iso.c mac%iso5.c mac%koi.c mac%koi8.c mac%win.c mac%win5.c maz%dhn.c maz%dos2.c maz%ib2.c maz%i…
40 table.alt.mac.c table.alt.win.c table.dhn.ib2.c table.dhn.is2.c table.dhn.maz.c table.dhn.wi2.c tab…
42 table.iso.mac.c table.iso.win.c table.koi.alt.c table.koi.iso.c table.koi.mac.c table.koi.win.c tab…
43 table.mac.koi.c table.mac.win.c table.maz.dhn.c table.maz.ib2.c table.maz.is2.c table.maz.wi2.c tab…
44 table.wi2.is2.c table.wi2.maz.c table.win.alt.c table.win.iso.c table.win.koi.c table.win.mac.c wi2…
45 wi2%maz.c win%alt.c win%iso.c win%koi.c win%mac.c win2%dhn.c win2%dos2.c win2%iso2.c win2%maz.c win…
46 win5%mac.c
/illumos-gate/usr/src/contrib/ast/src/lib/libpp/
H A Dppcontrol.c260 register struct ppmacro* mac; in ppcontrol() local
655 mac = sym->macro; in ppcontrol()
656 if ((pp.option & ALLPOSSIBLE) && !pp.in->prev->prev && mac->value) in ppcontrol()
660 old = *mac; in ppcontrol()
667 mac->arity = 0; in ppcontrol()
668 mac->formals = 0; in ppcontrol()
669 mac->value = 0; in ppcontrol()
681 p = mac->formals = oldof(0, char, 0, n); in ppcontrol()
684 if (mac->arity < MAXFORMALS) in ppcontrol()
686 if (mac->arity) p++; in ppcontrol()
[all …]

12345678910>>...17