Home
last modified time | relevance | path

Searched refs:ib (Results 1 – 25 of 101) sorted by relevance

12345

/titanic_44/usr/src/uts/common/kiconv/kiconv_sc/
H A Dkiconv_sc.c120 uchar_t *ib; in kiconv_fr_gb18030() local
141 ib = (uchar_t *)*inbuf; in kiconv_fr_gb18030()
143 ibtail = ib + *inbytesleft; in kiconv_fr_gb18030()
146 while (ib < ibtail) { in kiconv_fr_gb18030()
147 if (KICONV_IS_ASCII(*ib)) { in kiconv_fr_gb18030()
152 *ob++ = *ib++; in kiconv_fr_gb18030()
160 if (! KICONV_SC_IS_GBK_1st_BYTE(*ib)) { in kiconv_fr_gb18030()
164 isgbk4 = (ibtail - ib < 2) ? B_FALSE : in kiconv_fr_gb18030()
165 KICONV_SC_IS_GB18030_2nd_BYTE(*(ib + 1)); in kiconv_fr_gb18030()
168 if (ibtail - ib < 4) { in kiconv_fr_gb18030()
[all …]
H A Dkiconv_cck_common.c80 uchar_t *ib; in kiconv_utf8_to_cck() local
103 ib = (uchar_t *)*inbuf; in kiconv_utf8_to_cck()
105 ibtail = ib + *inbytesleft; in kiconv_utf8_to_cck()
108 KICONV_CHECK_UTF8_BOM(ib, ibtail); in kiconv_utf8_to_cck()
110 while (ib < ibtail) { in kiconv_utf8_to_cck()
111 sz = u8_number_of_bytes[*ib]; in kiconv_utf8_to_cck()
128 *ob++ = *ib++; in kiconv_utf8_to_cck()
144 if (ibtail - ib < sz) { in kiconv_utf8_to_cck()
153 oldib = ib; in kiconv_utf8_to_cck()
154 u8 = *ib++; in kiconv_utf8_to_cck()
[all …]
/titanic_44/usr/src/uts/common/sys/
H A DMakefile.syshdrs53 ib/%.check: ib/%.h
56 ib/clients/ibd/%.check: ib/clients/ibd/%.h
59 ib/clients/of/%.check: ib/clients/of/%.h
62 ib/clients/of/rdma/%.check: ib/clients/of/rdma/%.h
65 ib/clients/of/sol_ofs/%.check: ib/clients/of/sol_ofs/%.h
68 ib/clients/of/sol_uverbs/%.check: ib/clients/of/sol_uverbs/%.h
71 ib/clients/of/sol_umad/%.check: ib/clients/of/sol_umad/%.h
74 ib/clients/of/sol_ucma/%.check: ib/clients/of/sol_ucma/%.h
77 ib/ibtl/%.check: ib/ibtl/%.h
80 ib/ibtl/impl/%.check: ib/ibtl/impl/%.h
[all …]
H A Dkiconv_cck_common.h65 #define KICONV_CHECK_UTF8_BOM(ib, ibtail) \ argument
67 ((ibtail) - (ib)) >= 3 && *(ib) == 0xef && \
68 *((ib) + 1) == 0xbb && *((ib) + 2) == 0xbf) { \
69 (ib) += 3; \
76 #define KICONV_CHECK_UTF8_BOM_WITHOUT_STATE(ib, ibtail) \ argument
77 if (((ibtail) - (ib)) >= 3 && *(ib) == 0xef && \
78 *((ib) + 1) == 0xbb && *((ib) + 2) == 0xbf) { \
79 (ib) += 3; \
95 ib += (advance); \
116 typedef int8_t (*kiconv_utf8tocck_t)(uint32_t utf8, uchar_t **ib,
H A Dkiconv_tc.h55 #define KICONV_TC_IS_VALID_EUCTW_SEQ(ib) \ argument
56 ((isplane1 && (KICONV_IS_VALID_EUC_BYTE(*((ib) + 1)))) || \
58 KICONV_IS_VALID_EUC_BYTE(*((ib) + 2)) && \
59 KICONV_IS_VALID_EUC_BYTE(*((ib) + 3))))
/titanic_44/usr/src/uts/common/kiconv/kiconv_ko/
H A Dkiconv_ko.c88 uchar_t *ib; in kiconv_fr_euckr() local
108 ib = (uchar_t *)*inbuf; in kiconv_fr_euckr()
110 ibtail = ib + *inbufleft; in kiconv_fr_euckr()
113 while (ib < ibtail) { in kiconv_fr_euckr()
114 if (KICONV_IS_ASCII(*ib)) { in kiconv_fr_euckr()
119 *ob++ = *ib++; in kiconv_fr_euckr()
127 if (! KICONV_KO_IS_EUCKR_BYTE(*ib)) { in kiconv_fr_euckr()
135 if (ibtail - ib < 2) { in kiconv_fr_euckr()
143 if (! KICONV_KO_IS_EUCKR_BYTE(*(ib + 1))) { in kiconv_fr_euckr()
147 euckr_val = (uint32_t)(*ib) << 8 | *(ib + 1); in kiconv_fr_euckr()
[all …]
/titanic_44/usr/src/uts/common/kiconv/kiconv_tc/
H A Dkiconv_tc.c138 uchar_t *ib; in kiconv_fr_big5_common() local
158 ib = (uchar_t *)*inbuf; in kiconv_fr_big5_common()
160 ibtail = ib + *inbytesleft; in kiconv_fr_big5_common()
163 while (ib < ibtail) { in kiconv_fr_big5_common()
164 if (KICONV_IS_ASCII(*ib)) { in kiconv_fr_big5_common()
169 *ob++ = *ib++; in kiconv_fr_big5_common()
177 if (! KICONV_TC_IS_BIG5_1st_BYTE(*ib)) { in kiconv_fr_big5_common()
185 if (ibtail - ib < 2) { in kiconv_fr_big5_common()
193 if (! KICONV_TC_IS_BIG5_2nd_BYTE(*(ib + 1))) { in kiconv_fr_big5_common()
198 big5_val = (uint32_t)(*ib) << 8 | *(ib + 1); in kiconv_fr_big5_common()
[all …]
/titanic_44/usr/src/uts/common/os/
H A Dkiconv.c188 uchar_t *ib; in kiconv_to_sb() local
224 ib = (uchar_t *)*inbuf; in kiconv_to_sb()
226 ibtail = ib + *inbytesleft; in kiconv_to_sb()
241 if (((kiconv_state_t)kcd)->bom_processed == 0 && (ibtail - ib) >= 3 && in kiconv_to_sb()
242 *ib == 0xef && *(ib + 1) == 0xbb && *(ib + 2) == 0xbf) in kiconv_to_sb()
243 ib += 3; in kiconv_to_sb()
246 while (ib < ibtail) { in kiconv_to_sb()
247 sz = u8_number_of_bytes[*ib]; in kiconv_to_sb()
276 *ob++ = *ib++; in kiconv_to_sb()
284 if ((ibtail - ib) < sz) { in kiconv_to_sb()
[all …]
/titanic_44/usr/src/uts/intel/eoib/
H A DMakefile120 %.ll: $(UTSBASE)/common/io/ib/clients/eoib/eib_adm.c \
121 $(UTSBASE)/common/io/ib/clients/eoib/eib_chan.c \
122 $(UTSBASE)/common/io/ib/clients/eoib/eib_cmn.c \
123 $(UTSBASE)/common/io/ib/clients/eoib/eib_ctl.c \
124 $(UTSBASE)/common/io/ib/clients/eoib/eib_data.c \
125 $(UTSBASE)/common/io/ib/clients/eoib/eib_fip.c \
126 $(UTSBASE)/common/io/ib/clients/eoib/eib_ibt.c \
127 $(UTSBASE)/common/io/ib/clients/eoib/eib_log.c \
128 $(UTSBASE)/common/io/ib/clients/eoib/eib_mac.c \
129 $(UTSBASE)/common/io/ib/clients/eoib/eib_main.c \
[all …]
/titanic_44/usr/src/uts/sparc/eoib/
H A DMakefile126 %.ll: $(UTSBASE)/common/io/ib/clients/eoib/eib_adm.c \
127 $(UTSBASE)/common/io/ib/clients/eoib/eib_chan.c \
128 $(UTSBASE)/common/io/ib/clients/eoib/eib_cmn.c \
129 $(UTSBASE)/common/io/ib/clients/eoib/eib_ctl.c \
130 $(UTSBASE)/common/io/ib/clients/eoib/eib_data.c \
131 $(UTSBASE)/common/io/ib/clients/eoib/eib_fip.c \
132 $(UTSBASE)/common/io/ib/clients/eoib/eib_ibt.c \
133 $(UTSBASE)/common/io/ib/clients/eoib/eib_log.c \
134 $(UTSBASE)/common/io/ib/clients/eoib/eib_mac.c \
135 $(UTSBASE)/common/io/ib/clients/eoib/eib_main.c \
[all …]
/titanic_44/usr/src/uts/sparc/rdsv3/
H A DMakefile42 CONF_SRCDIR = $(UTSBASE)/common/io/ib/clients/rdsv3
133 %.ll: $(UTSBASE)/common/io/ib/clients/rdsv3/%.c \
134 $(UTSBASE)/common/sys/ib/clients/rdsv3/ib.h \
135 $(UTSBASE)/common/sys/ib/clients/rdsv3/info.h \
136 $(UTSBASE)/common/sys/ib/clients/rdsv3/loop.h \
137 $(UTSBASE)/common/sys/ib/clients/rdsv3/rdma.h \
138 $(UTSBASE)/common/sys/ib/clients/rdsv3/rdma_transport.h \
139 $(UTSBASE)/common/sys/ib/clients/rdsv3/rds.h \
140 $(UTSBASE)/common/sys/ib/clients/rdsv3/rds_rdma.h \
141 $(UTSBASE)/common/sys/ib/clients/rdsv3/rdsv3_atomic.h \
[all …]
/titanic_44/usr/src/common/mpi/
H A Dmpmontg.c136 mp_size ib; in s_mp_mul_mont() local
148 ib = MP_USED(a) + MP_MAX(MP_USED(b), MP_USED(&mmm->N)) + 2; in s_mp_mul_mont()
149 if((res = s_mp_pad(c, ib)) != MP_OKAY) in s_mp_mul_mont()
155 s_mp_setz(MP_DIGITS(c) + useda + 1, ib - (useda + 1)); in s_mp_mul_mont()
161 for (ib = 1; ib < usedb; ib++) { in s_mp_mul_mont()
166 s_mpv_mul_d_add_prop(MP_DIGITS(a), useda, b_i, MP_DIGITS(c) + ib); in s_mp_mul_mont()
167 m_i = MP_DIGIT(c, ib) * mmm->n0prime; in s_mp_mul_mont()
168 s_mp_mul_d_add_offset(&mmm->N, m_i, c, ib); in s_mp_mul_mont()
171 for (usedb = MP_USED(&mmm->N); ib < usedb; ++ib ) { in s_mp_mul_mont()
172 m_i = MP_DIGIT(c, ib) * mmm->n0prime; in s_mp_mul_mont()
[all …]
/titanic_44/usr/src/uts/common/kiconv/kiconv_emea/
H A Dkiconv_emea.c606 uchar_t *ib; in kiconv_to_sb() local
640 ib = (uchar_t *)*inbuf; in kiconv_to_sb()
642 ibtail = ib + *inbytesleft; in kiconv_to_sb()
666 if (((kiconv_state_t)kcd)->bom_processed == 0 && (ibtail - ib) >= 3 && in kiconv_to_sb()
667 *ib == 0xef && *(ib + 1) == 0xbb && *(ib + 2) == 0xbf) in kiconv_to_sb()
668 ib += 3; in kiconv_to_sb()
671 while (ib < ibtail) { in kiconv_to_sb()
672 sz = u8_number_of_bytes[*ib]; in kiconv_to_sb()
701 *ob++ = *ib++; in kiconv_to_sb()
709 if ((ibtail - ib) < sz) { in kiconv_to_sb()
[all …]
/titanic_44/usr/src/uts/intel/eibnx/
H A DMakefile44 CONF_SRCDIR = $(UTSBASE)/common/io/ib/clients/eoib
126 %.ll: $(UTSBASE)/common/io/ib/clients/eoib/enx_main.c \
127 $(UTSBASE)/common/io/ib/clients/eoib/enx_hdlrs.c \
128 $(UTSBASE)/common/io/ib/clients/eoib/enx_ibt.c \
129 $(UTSBASE)/common/io/ib/clients/eoib/enx_log.c \
130 $(UTSBASE)/common/io/ib/clients/eoib/enx_fip.c \
131 $(UTSBASE)/common/io/ib/clients/eoib/enx_misc.c \
132 $(UTSBASE)/common/io/ib/clients/eoib/enx_q.c \
133 $(UTSBASE)/common/io/ib/clients/eoib/enx_ctl.c \
134 $(UTSBASE)/common/sys/ib/clients/eoib/fip.h \
[all …]
/titanic_44/usr/src/uts/sparc/eibnx/
H A DMakefile44 CONF_SRCDIR = $(UTSBASE)/common/io/ib/clients/eoib
132 %.ll: $(UTSBASE)/common/io/ib/clients/eoib/enx_main.c \
133 $(UTSBASE)/common/io/ib/clients/eoib/enx_hdlrs.c \
134 $(UTSBASE)/common/io/ib/clients/eoib/enx_ibt.c \
135 $(UTSBASE)/common/io/ib/clients/eoib/enx_log.c \
136 $(UTSBASE)/common/io/ib/clients/eoib/enx_fip.c \
137 $(UTSBASE)/common/io/ib/clients/eoib/enx_misc.c \
138 $(UTSBASE)/common/io/ib/clients/eoib/enx_q.c \
139 $(UTSBASE)/common/io/ib/clients/eoib/enx_ctl.c \
140 $(UTSBASE)/common/sys/ib/clients/eoib/fip.h \
[all …]
/titanic_44/usr/src/uts/intel/ib/
H A DMakefile40 MODULE = ib
44 CONF_SRCDIR = $(UTSBASE)/common/io/ib/ibnex
127 $(WARLOCK_OK): $(WARLOCK_OUT) $(WLCMD_DIR)/ib.wlcmd ibdm_files
128 $(WARLOCK) -c $(WLCMD_DIR)/ib.wlcmd $(WARLOCK_OUT) \
132 %.ll: $(UTSBASE)/common/io/ib/ibnex/%.c \
133 $(UTSBASE)/common/sys/ib/ibnex/ibnex.h \
134 $(UTSBASE)/common/sys/ib/ibnex/ibnex_devctl.h
/titanic_44/usr/src/uts/sparc/ib/
H A DMakefile42 MODULE = ib
46 CONF_SRCDIR = $(UTSBASE)/common/io/ib/ibnex
131 $(WARLOCK_OK): $(WARLOCK_OUT) $(WLCMD_DIR)/ib.wlcmd ibdm_files warlock_ddi.files
132 $(WARLOCK) -c $(WLCMD_DIR)/ib.wlcmd $(WARLOCK_OUT) \
136 %.ll: $(UTSBASE)/common/io/ib/ibnex/%.c \
137 $(UTSBASE)/common/sys/ib/ibnex/ibnex.h \
138 $(UTSBASE)/common/sys/ib/ibnex/ibnex_devctl.h
/titanic_44/usr/src/lib/libbc/libc/gen/common/
H A D_base_sup.c274 int ib, iu; in _big_binary_to_unpacked() local
282 for (ib = pb->blength - 1; ((ib - 1) >= 0) && (iu < UNPACKED_SIZE); ib -= 2) { in _big_binary_to_unpacked()
283 pu->significand[iu++] = pb->bsignificand[ib] << 16 | pb->bsignificand[ib - 1]; in _big_binary_to_unpacked()
287 if (ib == 0) in _big_binary_to_unpacked()
288 pu->significand[iu++] = pb->bsignificand[ib] << 16; in _big_binary_to_unpacked()
293 while (pb->bsignificand[ib] == 0) in _big_binary_to_unpacked()
294 ib--; in _big_binary_to_unpacked()
295 if (ib >= 0) in _big_binary_to_unpacked()
/titanic_44/usr/src/common/unicode/
H A Du8_textprep.c339 uchar_t *ib; in u8_validate() local
356 ib = (uchar_t *)u8str; in u8_validate()
357 ibtail = ib + n; in u8_validate()
365 while (ib < ibtail) { in u8_validate()
372 sz = u8_number_of_bytes[*ib]; in u8_validate()
389 if ((ibtail - ib) < sz) { in u8_validate()
395 ib++; in u8_validate()
403 f = *ib++; in u8_validate()
408 if (*ib < u8_valid_min_2nd_byte[f] || in u8_validate()
409 *ib > u8_valid_max_2nd_byte[f]) { in u8_validate()
[all …]
/titanic_44/usr/src/lib/libast/common/regex/
H A Dregdecomp.c82 int ib; in decomp() local
152 nb = ne = ib = ie = -2; in decomp()
190 else if (ib < 0) in decomp()
191 ie = ib = m; in decomp()
196 if (ie == ib) in decomp()
200 *t++ = ib; in decomp()
204 ie = ib = m; in decomp()
216 if (ib >= 0) in decomp()
218 *t++ = ib; in decomp()
219 if (ie != ib) in decomp()
[all …]
/titanic_44/usr/src/uts/intel/daplt/
H A DMakefile39 CONF_SRCDIR = $(UTSBASE)/common/io/ib/clients/daplt
59 INCLUDE_PATH += -I$(UTSBASE)/common/sys/ib/clients/daplt
122 %.ll: $(UTSBASE)/common/io/ib/clients/daplt/%.c \
123 $(UTSBASE)/common/sys/ib/clients/daplt/daplt.h \
124 $(UTSBASE)/common/sys/ib/clients/daplt/daplt_if.h
/titanic_44/usr/src/uts/sparc/daplt/
H A DMakefile40 CONF_SRCDIR = $(UTSBASE)/common/io/ib/clients/daplt
61 INCLUDE_PATH += -I$(UTSBASE)/common/sys/ib/clients/daplt
133 %.ll: $(UTSBASE)/common/io/ib/clients/daplt/%.c \
134 $(UTSBASE)/common/sys/ib/clients/daplt/daplt.h \
135 $(UTSBASE)/common/sys/ib/clients/daplt/daplt_if.h
/titanic_44/usr/src/pkg/manifests/
H A Ddriver-network-ib.mf32 set name=pkg.fmri value=pkg:/driver/network/ib@$(PKGVERS)
47 driver name=ib perms="* 0644 root sys"
48 file path=kernel/drv/$(ARCH64)/ib group=sys
49 file path=kernel/drv/ib.conf group=sys original_name=SUNWib:kernel/drv/ib.conf \
55 file path=usr/share/man/man4/ib.4
57 file path=usr/share/man/man7d/ib.7d
/titanic_44/usr/src/uts/sparc/sol_ucma/
H A DMakefile39 CONF_SRCDIR = $(UTSBASE)/common/io/ib/clients/of/sol_ucma
59 INCLUDE_PATH += -I$(UTSBASE)/common/sys/ib/clients/ofv/sol_ucma
112 %.ll: $(UTSBASE)/common/io/ib/clients/of/sol_ucma/%.c \
113 $(UTSBASE)/common/sys/ib/clients/of/sol_ucma/sol_ucma.h
/titanic_44/usr/src/uts/intel/sol_ucma/
H A DMakefile39 CONF_SRCDIR = $(UTSBASE)/common/io/ib/clients/of/sol_ucma
59 INCLUDE_PATH += -I$(UTSBASE)/common/sys/ib/clients/ofv/sol_ucma
112 %.ll: $(UTSBASE)/common/io/ib/clients/of/sol_ucma/%.c \
113 $(UTSBASE)/common/sys/ib/clients/of/sol_ucma/sol_ucma.h

12345