Home
last modified time | relevance | path

Searched refs:ie (Results 1 – 25 of 63) sorted by relevance

123

/illumos-gate/usr/src/uts/common/io/chxge/com/
H A Dvsc7321_reg.h90 #define REG_TEST(ie,fn) CRA(0x2,ie&1,0x00+fn) /* Mode & Test Register */ argument
91 #define REG_TOP_BOTTOM(ie,fn) CRA(0x2,ie&1,0x10+fn) /* FIFO Buffer Top & Bottom */ argument
92 #define REG_TAIL(ie,fn) CRA(0x2,ie&1,0x20+fn) /* FIFO Write Pointer */ argument
93 #define REG_HEAD(ie,fn) CRA(0x2,ie&1,0x30+fn) /* FIFO Read Pointer */ argument
94 #define REG_HIGH_LOW_WM(ie,fn) CRA(0x2,ie&1,0x40+fn) /* Flow Control Water Marks */ argument
95 #define REG_CT_THRHLD(ie,fn) CRA(0x2,ie&1,0x50+fn) /* Cut Through Threshold */ argument
96 #define REG_FIFO_DROP_CNT(ie,fn) CRA(0x2,ie&1,0x60+fn) /* Drop & CRC Error Counter */ argument
97 #define REG_DEBUG_BUF_CNT(ie,fn) CRA(0x2,ie&1,0x70+fn) /* Input Side Debug Counter */ argument
104 #define REG_TRAFFIC_SHAPER_BUCKET(ie,bn) CRA(0x2,ie&1,0x0a + (bn>7) | ((bn&7)<<4)) argument
105 #define REG_TRAFFIC_SHAPER_CONTROL(ie) CRA(0x2,ie&1,0x3b) argument
[all …]
H A Dvsc7326_reg.h94 #define REG_TEST(ie,fn) CRA(0x2,ie&1,0x00+fn) /* Mode & Test Register */ argument
95 #define REG_TOP_BOTTOM(ie,fn) CRA(0x2,ie&1,0x10+fn) /* FIFO Buffer Top & Bottom */ argument
96 #define REG_TAIL(ie,fn) CRA(0x2,ie&1,0x20+fn) /* FIFO Write Pointer */ argument
97 #define REG_HEAD(ie,fn) CRA(0x2,ie&1,0x30+fn) /* FIFO Read Pointer */ argument
98 #define REG_HIGH_LOW_WM(ie,fn) CRA(0x2,ie&1,0x40+fn) /* Flow Control Water Marks */ argument
99 #define REG_CT_THRHLD(ie,fn) CRA(0x2,ie&1,0x50+fn) /* Cut Through Threshold */ argument
100 #define REG_FIFO_DROP_CNT(ie,fn) CRA(0x2,ie&1,0x60+fn) /* Drop & CRC Error Counter */ argument
101 #define REG_DEBUG_BUF_CNT(ie,fn) CRA(0x2,ie&1,0x70+fn) /* Input Side Debug Counter */ argument
110 #define REG_TRAFFIC_SHAPER_BUCKET(ie,bn) CRA(0x2,ie&1,0x0a + (bn>7) | ((bn&7)<<4)) argument
111 #define REG_TRAFFIC_SHAPER_CONTROL(ie) CRA(0x2,ie&1,0x3b) argument
[all …]
/illumos-gate/usr/src/lib/libdhcpagent/common/
H A Ddhcp_stable.c196 struct iaid_ent ie; in read_stable_iaid() local
200 while (read(fd, &ie, sizeof (ie)) == sizeof (ie)) { in read_stable_iaid()
201 if (strcmp(intf, ie.ie_name) == 0) { in read_stable_iaid()
203 return (ie.ie_iaid); in read_stable_iaid()
221 struct iaid_ent ie; in write_stable_iaid() local
226 while (read(fd, &ie, sizeof (ie)) == sizeof (ie)) { in write_stable_iaid()
227 if (strcmp(intf, ie.ie_name) == 0) { in write_stable_iaid()
229 if (iaid == ie.ie_iaid) { in write_stable_iaid()
237 (void) memset(&ie, 0, sizeof (ie)); in write_stable_iaid()
238 ie.ie_iaid = iaid; in write_stable_iaid()
[all …]
/illumos-gate/usr/src/cmd/mandoc/
H A Ddba_array.c64 int32_t ie; in dba_array_free() local
69 for (ie = 0; ie < array->eu; ie++) in dba_array_free()
70 free(array->ep[ie]); in dba_array_free()
77 dba_array_set(struct dba_array *array, int32_t ie, void *entry) in dba_array_set() argument
79 assert(ie >= 0); in dba_array_set()
80 assert(ie < array->ea); in dba_array_set()
81 assert(ie <= array->eu); in dba_array_set()
82 if (ie == array->eu) in dba_array_set()
86 array->ep[ie] = entry; in dba_array_set()
87 array->em[ie] = 0; in dba_array_set()
[all …]
H A Ddba.c188 dba_page_add(struct dba_array *page, int32_t ie, const char *str) in dba_page_add() argument
193 entries = dba_array_get(page, ie); in dba_page_add()
194 if (ie == DBP_ARCH) { in dba_page_add()
206 if (ie == DBP_FILE && *entry < ' ') in dba_page_add()
437 unsigned int ie, ne, slot; in dba_macro_write() local
469 for (ie = 0; ie < ne; ie++) { in dba_macro_write()
470 kpos[ie] = dba_tell(); in dba_macro_write()
471 dba_str_write(entries[ie]->value); in dba_macro_write()
477 for (ie = 0; ie < ne; ie++) { in dba_macro_write()
478 dpos[ie] = dba_tell(); in dba_macro_write()
[all …]
/illumos-gate/usr/src/lib/libdhcputil/common/
H A Ddhcp_inittab.c548 inittab_encode_e(const dhcp_symbol_t *ie, const char *value, uint16_t *lengthp, in inittab_encode_e() argument
559 uint8_t type_size = inittab_type_to_size(ie); in inittab_encode_e()
572 switch (ie->ds_type) { in inittab_encode_e()
614 hlen = ie->ds_dhcpv6 ? sizeof (*d6o) : 2; in inittab_encode_e()
623 switch (ie->ds_type) { in inittab_encode_e()
898 if (n_entries % ie->ds_gran != 0) { in inittab_encode_e()
911 if (inet_pton(ie->ds_type == DSYM_IP ? AF_INET : in inittab_encode_e()
950 is_signed = (ie->ds_type == DSYM_SNUMBER64 || in inittab_encode_e()
951 ie->ds_type == DSYM_SNUMBER32 || in inittab_encode_e()
952 ie->ds_type == DSYM_SNUMBER16 || in inittab_encode_e()
[all …]
/illumos-gate/usr/src/cmd/tip/
H A Detc.remote5 :dv=/dev/term/b:br#9600:el=^C^S^Q^U^D:ie=%$:oe=^D:
12 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#300:tc=dialers:
14 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#1200:tc=dialers:
16 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#2400:tc=dialers:
18 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#9600:tc=dialers:
20 :el=^D^U^C^S^Q^O@:du:at=hayes:ie=#$%:oe=^D:br#19200:tc=dialers:
22 :el=^Z^U^C^S^Q^O:du:at=hayes:ie=$@:oe=^Z:br#300:tc=dialers:
24 :el=^Z^U^C^S^Q^O:du:at=hayes:ie=$@:oe=^Z:br#1200:tc=dialers:
36 ie input EOF marks (default is NULL)
/illumos-gate/usr/src/contrib/ast/src/lib/libpp/
H A Dppproto.c598 char* ie = 0; in lex() local
724 ie -= c; in lex()
1203 ie = ip; in lex()
1360 v = memcopy(v, im, ie - im); in lex()
1366 v = ie; in lex()
1367 while (ie < ip) in lex()
1368 if (*ie++ == '/' && *ie == '*') in lex()
1370 e = ie - 1; in lex()
1371 while (++ie < ip) in lex()
1373 if (*ie == '*') in lex()
[all …]
/illumos-gate/usr/src/contrib/ast/src/lib/libast/regex/
H A Dregdecomp.c83 int ie; in decomp() local
152 nb = ne = ib = ie = -2; in decomp()
191 ie = ib = m; in decomp()
192 else if (ie == (m - 1)) in decomp()
193 ie = m; in decomp()
196 if (ie == ib) in decomp()
197 *t++ = ie; in decomp()
202 *t++ = ie; in decomp()
204 ie = ib = m; in decomp()
219 if (ie != ib) in decomp()
[all …]
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Dproto.c2864 char* ie = 0; local
2990 ie -= c;
3469 ie = ip;
3626 v = memcopy(v, im, ie - im);
3632 v = ie;
3633 while (ie < ip)
3634 if (*ie++ == '/' && *ie == '*')
3636 e = ie - 1;
3637 while (++ie < ip)
3639 if (*ie == '*')
[all …]
/illumos-gate/usr/src/pkg/manifests/
H A Dsystem-test-elftest.p5m135 dir path=opt/elf-tests/tests/tls/amd64/ie
136 file path=opt/elf-tests/tests/tls/amd64/ie/Makefile.test mode=0444
137 file path=opt/elf-tests/tests/tls/amd64/ie/amd64-ie-test mode=0555
138 file path=opt/elf-tests/tests/tls/amd64/ie/style1-func-with-r12.s mode=0444
139 file path=opt/elf-tests/tests/tls/amd64/ie/style1-func-with-r13.s mode=0444
140 file path=opt/elf-tests/tests/tls/amd64/ie/style1-func.s mode=0444
141 file path=opt/elf-tests/tests/tls/amd64/ie/style1-main.s mode=0444
142 file path=opt/elf-tests/tests/tls/amd64/ie/style2-with-badness.s mode=0444
143 file path=opt/elf-tests/tests/tls/amd64/ie/style2-with-r12.s mode=0444
144 file path=opt/elf-tests/tests/tls/amd64/ie/style2-with-r13.s mode=0444
[all …]
/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/wpad/
H A Dwpa_supplicant.c239 struct wpa_ie_data ie; in wpa_supplicant_set_suites() local
257 if (wpa_parse_wpa_ie(wpa_s, ap_ie, ap_ie_len, &ie)) { in wpa_supplicant_set_suites()
269 sel = ie.group_cipher & ssid->group_cipher; in wpa_supplicant_set_suites()
283 sel = ie.pairwise_cipher & ssid->pairwise_cipher; in wpa_supplicant_set_suites()
296 sel = ie.key_mgmt & ssid->key_mgmt; in wpa_supplicant_set_suites()
386 struct wpa_ie_data ie; in wpa_supplicant_select_bss() local
414 bss->we_wpa_ie_len, &ie) == 0)) { in wpa_supplicant_select_bss()
419 if (!(ie.proto & ssid->proto)) { in wpa_supplicant_select_bss()
423 if (!(ie.pairwise_cipher & ssid->pairwise_cipher)) { in wpa_supplicant_select_bss()
427 if (!(ie.group_cipher & ssid->group_cipher)) { in wpa_supplicant_select_bss()
[all …]
/illumos-gate/usr/src/uts/common/io/net80211/
H A Dnet80211_ht.c874 ieee80211_parse_htcap(struct ieee80211_node *in, const uint8_t *ie) in ieee80211_parse_htcap() argument
878 if (ie[0] == IEEE80211_ELEMID_VENDOR) { in ieee80211_parse_htcap()
885 ie += 4; in ieee80211_parse_htcap()
889 in->in_htcap = *(uint16_t *)(ie + in ieee80211_parse_htcap()
891 in->in_htparam = ie[offsetof(struct ieee80211_ie_htcap, hc_param)]; in ieee80211_parse_htcap()
906 ieee80211_parse_htinfo(struct ieee80211_node *in, const uint8_t *ie) in ieee80211_parse_htinfo() argument
914 if (ie[0] == IEEE80211_ELEMID_VENDOR) in ieee80211_parse_htinfo()
915 ie += 4; in ieee80211_parse_htinfo()
916 htinfo = (const struct ieee80211_ie_htinfo *)ie; in ieee80211_parse_htinfo()
970 ieee80211_setup_htrates(struct ieee80211_node *in, const uint8_t *ie, int flags) in ieee80211_setup_htrates() argument
[all …]
H A Dnet80211_node.c1041 ieee80211_saveie(uint8_t **iep, const uint8_t *ie) in ieee80211_saveie() argument
1043 uint_t ielen = ie[1]+2; in ieee80211_saveie()
1047 if (*iep == NULL || (*iep)[1] != ie[1]) { in ieee80211_saveie()
1053 (void) memcpy(*iep, ie, ielen); in ieee80211_saveie()
1057 saveie(uint8_t **iep, const uint8_t *ie) in saveie() argument
1059 if (ie == NULL) { in saveie()
1065 ieee80211_saveie(iep, ie); in saveie()
1124 struct ieee80211_tim_ie *ie; in ieee80211_add_scan() local
1126 ie = (struct ieee80211_tim_ie *)sp->tim; in ieee80211_add_scan()
1127 in->in_dtim_count = ie->tim_count; in ieee80211_add_scan()
[all …]
/illumos-gate/usr/src/test/elf-tests/tests/tls/amd64/ie/
H A DMakefile17 PROG = amd64-ie-test
31 TESTDIR = $(ROOTOPTPKG)/tests/tls/amd64/ie
/illumos-gate/usr/src/cmd/lp/filter/postscript/font/
H A DREADME34 ./devpost/charlib. Characters that are assigned a code (ie. number in the fourth
38 while the second part (ie. the one that ends in .map) must be included every
55 2: Choose a unique internal name (ie. integer between 1 and 255). To find out
56 what internal names (ie. numbers) are already taken type,
67 (ie. numbers in column 2) are point size 10 widths assuming a resolution of
/illumos-gate/usr/src/test/elf-tests/runfiles/
H A Ddefault.run62 [/opt/elf-tests/tests/tls/amd64/ie]
64 tests = ['amd64-ie-test']
/illumos-gate/usr/src/uts/sun4v/sys/
H A Dpte.h55 unsigned int ie:1; /* <12> 1=invert endianness */ member
77 #define tte_ie tte_bit.ie /* XXX? */
228 (ttep)->tte_bit.ie = 1; \
/illumos-gate/usr/src/test/elf-tests/tests/tls/amd64/
H A DMakefile17 SUBDIRS = ie ld
/illumos-gate/usr/src/uts/sun4u/sys/
H A Dpte.h53 uint32_t ie:1; /* 1=invert endianness */ member
89 #define tte_ie tte_bit.ie /* XXX? */
269 (ttep)->tte_bit.ie = 1; \
/illumos-gate/usr/src/cmd/lp/filter/postscript/
H A DREADME47 /usr/lib/postscript/* ie. $(LIBDIR)/* in Makefile
48 /usr/lbin/postscript/* ie. $(BINDIR)/* in Makefile
49 /usr/lib/macros/pictures ie. $(MACRODIR)/pictures in Makefile
50 /usr/lib/macros/color ie. $(MACRODIR)/color in Makefile
51 /usr/lib/font/devpost/* ie. $(FONTDIR)/devpost/* in Makefile
52 /usr/lib/font/PDQ/devpost/* ie. $(FONTDIR)/PDQ/devpost/* in Makefile
143 TARGETS - The default group of things (ie. source directories) that make
276 others) are copied to /usr/lib/postscript (ie. $(LIBDIR)) when you do an
/illumos-gate/usr/src/cmd/ipf/examples/
H A Dexample.102 # pass ack packets (ie established connection)
H A Dexample.522 # allow packets through which have a non-standard IP header length (ie there
/illumos-gate/usr/src/test/util-tests/tests/ctf/
H A Dtest-enum.c99 } ie; variable
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/domain/pools/
H A DPoold.java750 } catch (InterruptedException ie) { in initialize()
771 } catch (InterruptedException ie) { in initialize()
857 } catch (InterruptedException ie) { in execute()

123