HomeSort by: relevance | last modified time | path
    Searched refs:na (Results 1 - 25 of 377) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/bsd/pcc/dist/pcc/driver/
prog_asm.c 50 av[na++] = "-p";
51 av[na++] = "gnu";
53 av[na++] = "-f";
55 av[na++] = "win32";
57 av[na++] = "macho";
59 av[na++] = "elf";
64 av[na++] = "-m64";
69 av[na++] = "-static";
74 av[na++] = "-v";
77 av[na++] = "-k"
    [all...]
  /src/sys/arch/vax/vax/
nmi_mainbus.c 49 struct nmi_attach_args *na = aux; local
53 if (na->na_slot < 10)
55 else if (na->na_slot < 20)
60 if (na->na_slot < 10)
61 aprint_normal(" slot %d", na->na_slot);
62 if (vax_boardtype == VAX_BTYP_8800 && na->na_slot > 20)
81 struct nmi_attach_args na; local
86 na.na_iot = ma->ma_iot;
87 na.na_dmat = ma->ma_dmat;
90 na.na_type = "cpu"
    [all...]
  /src/external/mpl/bind/dist/lib/isc/include/isc/
netaddr.h 93 isc_netaddr_format(const isc_netaddr_t *na, char *array, unsigned int size);
95 * Format a human-readable representation of the network address '*na'
140 isc_netaddr_ismulticast(const isc_netaddr_t *na);
146 isc_netaddr_isexperimental(const isc_netaddr_t *na);
152 isc_netaddr_islinklocal(const isc_netaddr_t *na);
158 isc_netaddr_issitelocal(const isc_netaddr_t *na);
164 isc_netaddr_isnetzero(const isc_netaddr_t *na);
176 isc_netaddr_prefixok(const isc_netaddr_t *na, unsigned int prefixlen);
178 * Test whether the netaddr 'na' and 'prefixlen' are consistent.
180 * na does not have bits set which are not covered by the prefixlen
    [all...]
  /src/sys/arch/mac68k/nubus/
if_sm_nubus.c 67 struct nubus_attach_args *na = (struct nubus_attach_args *) aux; local
71 if (bus_space_map(na->na_tag,
72 NUBUS_SLOT2PA(na->slot), NBMEMSIZE, 0, &bsh))
77 if (na->category == NUBUS_CATEGORY_NETWORK &&
78 na->type == NUBUS_TYPE_ETHERNET) {
79 switch (na->drsw) {
90 bus_space_unmap(na->na_tag, bsh, NBMEMSIZE);
102 struct nubus_attach_args *na = (struct nubus_attach_args *)aux; local
103 bus_space_tag_t bst = na->na_tag;
109 bst = na->na_tag
    [all...]
if_sn_nubus.c 67 struct nubus_attach_args *na = aux; local
71 if (bus_space_map(na->na_tag,
72 NUBUS_SLOT2PA(na->slot), NBMEMSIZE, 0, &bsh))
77 if (na->category == NUBUS_CATEGORY_NETWORK &&
78 na->type == NUBUS_TYPE_ETHERNET) {
79 switch (sn_nb_card_vendor(na->na_tag, bsh, na)) {
92 bus_space_unmap(na->na_tag, bsh, NBMEMSIZE);
104 struct nubus_attach_args *na = aux; local
111 bst = na->na_tag
    [all...]
if_ae_nubus.c 84 struct nubus_attach_args *na = aux; local
88 if (bus_space_map(na->na_tag, NUBUS_SLOT2PA(na->slot), NBMEMSIZE,
94 if (na->category == NUBUS_CATEGORY_NETWORK &&
95 na->type == NUBUS_TYPE_ETHERNET) {
96 switch (ae_nb_card_vendor(na->na_tag, bsh, na)) {
113 bus_space_unmap(na->na_tag, bsh, NBMEMSIZE);
125 struct nubus_attach_args *na = aux; local
135 bst = na->na_tag
    [all...]
grf_nubus.c 110 struct nubus_attach_args *na = (struct nubus_attach_args *)aux; local
112 if (na->category != NUBUS_CATEGORY_DISPLAY)
115 if (na->type != NUBUS_TYPE_VIDEO)
118 if (na->drsw != NUBUS_DRSW_APPLE)
135 struct nubus_attach_args *na = (struct nubus_attach_args *)aux; local
143 memcpy(&sc->sc_slot, na->fmt, sizeof(nubus_slot));
146 sc->sc_tag = na->na_tag;
147 sc->card_id = na->drhw;
148 sc->sc_basepa = (bus_addr_t)NUBUS_SLOT2PA(na->slot);
153 printf(": grfmv_attach: failed to map slot %d\n", na->slot)
    [all...]
  /src/sys/arch/mips/rmi/
rmixl_cpunode.c 90 struct cpunode_attach_args na; local
124 na.na_name = "cpucore";
125 na.na_node = ma->ma_node;
126 na.na_core = i;
127 config_found(self, &na, cpunode_rmixl_print, CFARGS_NONE);
133 na.na_name = "obio";
134 config_found(self, &na, NULL, CFARGS_NONE);
140 struct cpunode_attach_args *na = aux; local
144 aprint_normal(" core %d", na->na_core);
  /src/crypto/external/bsd/heimdal/dist/lib/base/
number.c 48 int na, nb; local
51 na = heim_base_tagged_object_value(a);
53 na = *(int *)a;
60 return na - nb;
  /src/sys/arch/vax/bi/
bi_nmi.c 51 struct nmi_attach_args * const na = aux; local
54 cf->cf_loc[NMICF_SLOT] != na->na_slot)
56 return na->na_slot < 10;
62 struct nmi_attach_args * const na = aux; local
73 sc->sc_addr = (bus_addr_t)BI_BASE(na->na_slot, 0);
74 sc->sc_iot = na->na_iot; /* No special I/O handling */
75 sc->sc_dmat = na->na_dmat; /* No special DMA handling either */
81 v = (int *)vax_map_physmem(NBIA_REGS(na->na_slot/2), 1);
95 sc->sc_lastiv = /* 0x400 * na->na_slot + */ 0x400;
  /src/external/mpl/dhcp/bind/dist/lib/isc/include/isc/
netaddr.h 94 isc_netaddr_format(const isc_netaddr_t *na, char *array, unsigned int size);
96 * Format a human-readable representation of the network address '*na'
144 isc_netaddr_ismulticast(const isc_netaddr_t *na);
150 isc_netaddr_isexperimental(const isc_netaddr_t *na);
156 isc_netaddr_islinklocal(const isc_netaddr_t *na);
162 isc_netaddr_issitelocal(const isc_netaddr_t *na);
168 isc_netaddr_isnetzero(const isc_netaddr_t *na);
180 isc_netaddr_prefixok(const isc_netaddr_t *na, unsigned int prefixlen);
182 * Test whether the netaddr 'na' and 'prefixlen' are consistent.
184 * na does not have bits set which are not covered by the prefixlen
    [all...]
  /src/external/bsd/ntp/dist/libntp/lib/isc/include/isc/
netaddr.h 93 isc_netaddr_format(const isc_netaddr_t *na, char *array, unsigned int size);
95 * Format a human-readable representation of the network address '*na'
137 isc_netaddr_ismulticast(isc_netaddr_t *na);
143 isc_netaddr_isexperimental(isc_netaddr_t *na);
149 isc_netaddr_islinklocal(isc_netaddr_t *na);
155 isc_netaddr_issitelocal(isc_netaddr_t *na);
167 isc_netaddr_prefixok(const isc_netaddr_t *na, unsigned int prefixlen);
169 * Test whether the netaddr 'na' and 'prefixlen' are consistant.
171 * na does not have bits set which are not covered by the prefixlen.
  /src/sys/dev/pci/ixgbe/
ixgbe_netmap.c 156 ixgbe_netmap_reg(struct netmap_adapter *na, int onoff)
158 struct ifnet *ifp = na->ifp;
165 /* enable or disable flags and callbacks in na and ifp */
167 nm_set_native_flags(na);
169 nm_clear_native_flags(na);
195 struct netmap_adapter *na = kring->na; local
196 struct ifnet *ifp = na->ifp;
263 void *addr = PNMB(na, slot, &paddr);
276 NM_CHECK_ADDR_LEN(na, addr, len)
383 struct netmap_adapter *na = kring->na; local
513 struct netmap_adapter na; local
    [all...]
  /src/external/mpl/bind/dist/lib/isc/
netaddr.c 172 isc_netaddr_format(const isc_netaddr_t *na, char *array, unsigned int size) {
177 result = isc_netaddr_totext(na, &buf);
196 na->family);
202 isc_netaddr_prefixok(const isc_netaddr_t *na, unsigned int prefixlen) {
207 switch (na->family) {
209 p = (const unsigned char *)&na->type.in;
216 p = (const unsigned char *)&na->type.in6;
351 isc_netaddr_ismulticast(const isc_netaddr_t *na) {
352 switch (na->family) {
354 return ISC_IPADDR_ISMULTICAST(na->type.in.s_addr)
    [all...]
  /src/crypto/external/apache2/openssl/dist/crypto/bn/asm/
co-586.pl 28 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
41 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 0; # load next a
51 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 1; # load next a
56 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
72 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 0; # load next a
75 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos == 1) && ($na != $nb);
80 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 1; # load next b
85 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
107 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 0; # load next a
108 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 1; # load next
    [all...]
  /src/crypto/external/bsd/openssl/dist/crypto/bn/asm/
co-586.pl 28 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
41 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 0; # load next a
51 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 1; # load next a
56 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
72 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 0; # load next a
75 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos == 1) && ($na != $nb);
80 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 1; # load next b
85 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
107 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 0; # load next a
108 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 1; # load next
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/crypto/bn/asm/
co-586.pl 29 local($a,$ai,$b,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
42 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 0; # load next a
52 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 1; # load next a
57 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
73 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 0; # load next a
76 &mov("edx",&DWP(($nb)*4,$a,"",0)) if ($pos == 1) && ($na != $nb);
81 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 1; # load next b
86 local($r,$a,$ai,$bi,$c0,$c1,$c2,$pos,$i,$na,$nb)=@_;
108 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 0; # load next a
109 &mov("eax",&DWP(($na)*4,$a,"",0)) if $pos == 1; # load next
    [all...]
  /src/share/misc/
Makefile 8 mdoc.template na.phone na.postal style zipcodes
40 update-na.phone:
41 < /dev/null ${TOOL_AWK} -f nanpa.awk > na.phone
  /src/external/mpl/bind/dist/tests/isc/
netaddr_test.c 85 struct in_addr na; local
87 assert_true(inet_pton(AF_INET, tests[i].addr, &na) >=
89 isc_netaddr_fromin(&ina, &na);
126 isc_netaddr_t na; local
135 isc_netaddr_fromin(&na, &in);
140 isc_netaddr_fromin6(&na, &in6);
143 assert_int_equal(isc_netaddr_ismulticast(&na),
  /src/sys/arch/x68k/dev/
if_ne_neptune.c 83 struct neptune_attach_args *na = aux; local
84 bus_space_tag_t nict = na->na_bst;
90 if (na->na_addr == NEPTUNECF_ADDR_DEFAULT)
91 na->na_addr = 0x300;
94 if ((na->na_addr & 0x1f) != 0)
98 if (bus_space_map(nict, na->na_addr, NE2000_NPORTS*2, 0, &nich))
119 struct neptune_attach_args *na = aux; local
120 bus_space_tag_t nict = na->na_bst;
131 if (bus_space_map(nict, na->na_addr, NE2000_NPORTS*2, 0, &nich)) {
183 if (neptune_intr_establish(na->na_intr, "ne", dp8390_intr, dsc)
    [all...]
neptune.c 100 struct neptune_attach_args na; local
117 na.na_bst = sc->sc_bst;
118 na.na_intr = ia->ia_intr;
120 cf = config_search(self, &na,
124 config_attach(self, cf, &na, neptune_print, CFARGS_NONE);
134 struct neptune_attach_args *na = aux; local
136 na->na_addr = cf->neptune_cf_addr;
138 return config_match(parent, cf, na);
144 struct neptune_attach_args *na = aux; local
146 /* if (na->na_addr > 0) *
    [all...]
  /src/lib/libc/rpc/
pmap_clnt.c 74 struct netbuf *na; local
87 na = uaddr2taddr(nconf, buf);
88 if (na == NULL) {
92 rslt = rpcb_set((rpcprog_t)program, (rpcvers_t)version, nconf, na);
93 free(na);
  /src/sys/external/bsd/drm2/include/linux/
interval_tree.h 54 const struct interval_tree_node *na = va; local
57 if (na->start < nb->start)
59 if (na->start > nb->start)
61 if (na->last < nb->last)
63 if (na->last > nb->last)
  /src/external/mpl/dhcp/bind/dist/lib/isc/
netaddr.c 191 isc_netaddr_format(const isc_netaddr_t *na, char *array, unsigned int size) {
196 result = isc_netaddr_totext(na, &buf);
215 na->family);
221 isc_netaddr_prefixok(const isc_netaddr_t *na, unsigned int prefixlen) {
226 switch (na->family) {
228 p = (const unsigned char *)&na->type.in;
235 p = (const unsigned char *)&na->type.in6;
395 isc_netaddr_ismulticast(const isc_netaddr_t *na) {
396 switch (na->family) {
398 return (ISC_IPADDR_ISMULTICAST(na->type.in.s_addr))
    [all...]
  /src/usr.sbin/rpcbind/
check_bound.c 90 struct netbuf *na; local
96 na = uaddr2taddr(fdl->nconf, uaddr);
97 if (!na)
102 free(na->buf);
103 free(na);
107 ans = bind(fd, (struct sockaddr *)na->buf, na->len);
114 free(na->buf);
115 free(na);

Completed in 23 milliseconds

1 2 3 4 5 6 7 8 91011>>