Home
last modified time | relevance | path

Searched refs:ival (Results 1 – 25 of 44) sorted by relevance

12

/titanic_41/usr/src/lib/libmvec/common/vis/
H A D__vlogf.S194 ! int ival, iy, i, ind, iexp;
203 ! ival = *(int*)(x);
204 ! if (ival >= 0x7f800000) goto spec;
205 ! if (ival <= 0x7fffff) goto spec;
208 ! iy = ival & 0x007fffff;
209 ! ival = iy + 0x20000;
210 ! ival = ival & 0xfffc0000;
211 ! i = ival >> 14;
213 ! iy = iy - ival;
232 ! if ((ival & 0x7fffffff) >= 0x7f800000) { /* X = NaN or Inf */
[all …]
/titanic_41/usr/src/uts/common/io/audio/ac97/
H A Dac97_cmi.c162 int ival; in cmi_setup_jack_funcs() local
174 ival = ac_get_prop(ac, AC97_PROP_LINEIN_FUNC, 0); in cmi_setup_jack_funcs()
175 if ((ival >= 1) && (ival <= 2)) { in cmi_setup_jack_funcs()
176 cp.cp_initval = ival; in cmi_setup_jack_funcs()
181 ival = ac_get_prop(ac, AC97_PROP_MIC_FUNC, 0); in cmi_setup_jack_funcs()
182 if ((ival >= 1) && (ival <= 2)) { in cmi_setup_jack_funcs()
183 cp.cp_initval = ival; in cmi_setup_jack_funcs()
216 int ival; in cmi_setup_jack_func_9738() local
228 ival = ac_get_prop(ac, AC97_PROP_LINEIN_FUNC, 0); in cmi_setup_jack_func_9738()
229 if ((ival >= 1) && (ival <= 2)) { in cmi_setup_jack_func_9738()
[all …]
H A Dac97_alc.c179 int ival; in alc650_init() local
182 ival = ac_get_prop(ac, AC97_PROP_LINEIN_FUNC, 0); in alc650_init()
183 if ((ival >= 1) && (ival <= 2)) { in alc650_init()
184 cp.cp_initval = ival; in alc650_init()
189 ival = ac_get_prop(ac, AC97_PROP_MIC_FUNC, 0); in alc650_init()
190 if ((ival >= 1) && (ival <= 2)) { in alc650_init()
191 cp.cp_initval = ival; in alc650_init()
/titanic_41/usr/src/lib/libmvec/common/
H A D__vlogf.c106 iy##N = ival##N & 0x007fffff; \
107 ival##N = (iy##N + 0x20000) & 0xfffc0000; \
108 i##N = ival##N >> 17; \
109 iy##N = iy##N - ival##N; \
117 ival##N = *(int*)x; \
120 exp##N = (ival##N >> 23) - 127; \
121 if ((ival##N & 0x7fffffff) >= 0x7f800000) /* X = NaN or Inf */ \
126 if (ival##N < 0x00800000) \
128 if (ival##N > 0) /* X = denormal */ \
130 value = (float) ival##N; \
[all …]
/titanic_41/usr/src/common/smbsrv/
H A Dsmb_msgbuf.c217 uint32_t ival; in buf_decode() local
324 ival = strlen((const char *)mb->scan) + 1; in buf_decode()
325 if (smb_msgbuf_has_space(mb, ival) == 0) in buf_decode()
328 if ((cvalp = smb_msgbuf_malloc(mb, ival * 2)) == 0) in buf_decode()
331 if ((ival = smb_stombs((char *)cvalp, in buf_decode()
332 (char *)mb->scan, ival * 2)) == in buf_decode()
339 mb->scan += (ival+1); in buf_decode()
450 uint32_t ival; in buf_encode() local
556 ival = strlen((const char *)cvalp) + 1; in buf_encode()
558 if (smb_msgbuf_has_space(mb, ival) == 0) in buf_encode()
[all …]
/titanic_41/usr/src/cmd/mandoc/
H A Dman_term.c524 int ival; in pre_HP() local
543 ival = -1; in pre_HP()
548 if ((ival = a2width(p, nn->string)) >= 0) in pre_HP()
549 len = (size_t)ival; in pre_HP()
558 if (ival >= 0) in pre_HP()
559 mt->lmargin[mt->lmargincur] = (size_t)ival; in pre_HP()
609 int savelit, ival; in pre_IP() local
627 ival = -1; in pre_IP()
632 if ((ival = a2width(p, nn->string)) >= 0) in pre_IP()
633 len = (size_t)ival; in pre_IP()
[all …]
/titanic_41/usr/src/cmd/cmd-inet/usr.sbin/
H A Dsyncinit.c293 int ival; in lookup() local
295 for (ival = 0; *table != 0; ival++, table++) in lookup()
297 return (ival); in lookup()
/titanic_41/usr/src/cmd/picl/plugins/sun4v/lib/snmp/
H A Dasn1.c131 int ival, i; in asn_build_int() local
143 ival = val; in asn_build_int()
168 valp = (uchar_t *)&ival; in asn_build_int()
448 asn_parse_int(uchar_t *buf, size_t *bufsz_p, int *ival) in asn_parse_int() argument
481 *ival = (*p & ASN_BIT8) ? -1 : 0; in asn_parse_int()
483 *ival <<= 8; in asn_parse_int()
484 *ival |= *p++; in asn_parse_int()
/titanic_41/usr/src/cmd/svc/svccfg/
H A Dsvccfg_internal.c886 value_t *ival; in load_property() local
914 ival = internal_value_new(); in load_property()
915 ival->sc_type = scf_value_type(load_val); in load_property()
916 assert(ival->sc_type != SCF_TYPE_INVALID); in load_property()
918 switch (ival->sc_type) { in load_property()
925 ival->sc_u.sc_count = b; in load_property()
930 r = scf_value_get_count(load_val, &ival->sc_u.sc_count); in load_property()
937 &ival->sc_u.sc_integer); in load_property()
949 ival->sc_u.sc_string = strdup(loadbuf); in load_property()
950 if (ival->sc_u.sc_string == NULL) { in load_property()
[all …]
/titanic_41/usr/src/cmd/sendmail/libsm/
H A Dclock.c97 auto struct timeval now, nowi, ival; local
110 ival.tv_sec = intvl / 1000;
111 ival.tv_usec = (intvl - ival.tv_sec * 1000) * 10;
114 timeradd(&now, &ival, &nowi);
/titanic_41/usr/src/lib/libsasl/lib/
H A Dseterror.c125 int ival; in sasl_seterror() local
294 ival = va_arg(ap, int); /* get the next arg */ in sasl_seterror()
296 snprintf(tempbuf,20,frmt,ival); /* have snprintf do the work */ in sasl_seterror()
/titanic_41/usr/src/uts/common/fs/smbclnt/smbfs/
H A Dsmbfs_node.c78 smbfs_hash(uint32_t ival, const char *name, int nmlen) in smbfs_hash() argument
82 for (v = ival; nmlen; name++, nmlen--) { in smbfs_hash()
/titanic_41/usr/src/grub/grub-0.97/netboot/
H A Dgrub.h90 typedef int (*reply_t)(int ival, void *ptr, unsigned short ptype, struct iphdr *ip, struct udphdr *…
91 extern int await_reply P((reply_t reply, int ival, void *ptr, long timeout));
H A Dnic.c278 static int await_arp(int ival, void *ptr, in await_arp() argument
292 memcpy(arptable[ival].node, arpreply->shwaddr, ETH_ALEN); in await_arp()
432 static int await_qdrain(int ival __unused, void *ptr __unused, in await_qdrain()
455 static int await_rarp(int ival, void *ptr, unsigned short ptype, in await_rarp() argument
524 static int await_bootp(int ival __unused, void *ptr __unused, in await_bootp()
621 static int await_dhcp(int ival __unused, void *ptr __unused, in await_dhcp()
881 int await_reply(reply_t reply, int ival, void *ptr, long timeout) in await_reply() argument
969 result = reply(ival, ptr, ptype, ip, udp); in await_reply()
/titanic_41/usr/src/lib/libpool/common/
H A Dpool_value.c293 int64_t ival; in pool_value_from_nvpair() local
318 if (nvpair_value_int64(pn, &ival) != 0) { in pool_value_from_nvpair()
322 pool_value_set_int64(pv, ival); in pool_value_from_nvpair()
/titanic_41/usr/src/stand/lib/fs/nfs/
H A Dmount.c668 int ival; in boot_nfs_mountroot() local
678 ival = atoi(val); in boot_nfs_mountroot()
679 wait.tv_sec = ival / 10; in boot_nfs_mountroot()
680 wait.tv_usec = (ival % 10) * 100000; in boot_nfs_mountroot()
/titanic_41/usr/src/lib/libsmbfs/
H A Dcflib.h64 int ival; /* int/bool values, or max len for str value */ member
/titanic_41/usr/src/cmd/cmd-inet/usr.sbin/nwamcfg/
H A Dnwamcfg_grammar.y44 int ival; member
72 %type <ival> resource1_type LOC NCP ENM WLAN
73 %type <ival> resource2_type NCU
74 %type <ival> ncu_class_type PHYS IP
75 %type <ival> property_type UNKNOWN ACTIVATION_MODE CONDITIONS ENABLED
/titanic_41/usr/src/cmd/eject/
H A Deject.c422 int ival = 0; in floppy_in_drive() local
426 if (ioctl(fd, FDGETCHANGE, &ival) >= 0) { in floppy_in_drive()
427 if (!(ival & FDGC_CURRENT)) { in floppy_in_drive()
/titanic_41/usr/src/lib/libldap5/sources/ldap/common/
H A Dsearch.c801 int escape, firstdigit, ival; in unescape_filterval() local
810 if (( ival = hexchar2int( *s )) < 0 ) { in unescape_filterval()
822 *d = ( ival<<4 ); in unescape_filterval()
825 *d++ |= ival; in unescape_filterval()
/titanic_41/usr/src/cmd/fm/modules/common/ses-log-transport/
H A Dses_log_transport.c293 int ival; in access_fmri() local
352 ival = atoi(target_val); in access_fmri()
353 ival = (ival + 1) % 2; in access_fmri()
355 (void) snprintf(ivs, sizeof (ivs), "%d", ival); in access_fmri()
/titanic_41/usr/src/lib/pyzfs/common/
H A Dioctl.c85 uint64_t ival; in nvl2py() local
96 (void) nvpair_value_uint64(nvp, &ival); in nvl2py()
97 pyval = Py_BuildValue("K", ival); in nvl2py()
/titanic_41/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
H A Dldap_key_seq.c359 unsigned int ival; in asn1_decode_key() local
372 ret = decode_tagged_octetstring (&kbuf, 1, &ival, in asn1_decode_key()
374 key->key_data_length[0] = ival; /* XXX range check? */ in asn1_decode_key()
/titanic_41/usr/src/lib/libsmbfs/smb/
H A Dconnect.c86 int ival; in smb_setopt_int() member
94 opts.ival = val; in smb_setopt_int()
/titanic_41/usr/src/cmd/pools/poolcfg/
H A Dpoolcfg.y199 int64_t ival; member
219 %type <ival> PCV_VAL_INT
227 %type <ival> PCC_INFO
228 %type <ival> PCE_SYSTEM PCE_POOL PCE_PSET PCE_CPU
229 %type <ival> entity proptype info_entity modify_entity
239 %type <ival> resource component

12