HomeSort by relevance Sort by last modified time
    Searched refs:ival (Results 1 - 25 of 56) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/x2p/
walk.c 70 type = ops[node].ival;
91 str = walk(0,level,ops[node+1].ival,&numarg,P_MIN);
127 if (ops[node+2].ival) {
128 str_scat(str,fstr=walk(0,level,ops[node+2].ival,&numarg,P_MIN));
132 fstr = walk(0,level+1,ops[node+3].ival,&numarg,P_MIN);
155 if (ops[node+4].ival) {
159 str_scat(str,fstr=walk(0,level,ops[node+4].ival,&numarg,P_MIN));
224 str = walk(0,level,ops[node+1].ival,&numarg,P_MIN);
225 str_scat(str,fstr=walk(0,level,ops[node+2].ival,&numarg,P_MIN));
228 str_scat(str,fstr=walk(0,level,ops[node+3].ival,&numarg,P_MIN))
    [all...]
a2py.c 153 type = ops[i].ival;
161 printf("\t%d",ops[i].ival),i++;
919 ops[mop++].ival = OSTRING + (1<<8);
937 ops[mop++].ival = type;
950 ops[mop++].ival = type + (1<<8);
951 ops[mop++].ival = arg1;
964 ops[mop++].ival = type + (2<<8);
965 ops[mop++].ival = arg1;
966 ops[mop++].ival = arg2;
979 ops[mop++].ival = type + (3<<8)
    [all...]
a2p.c     [all...]
  /onnv/onnv-gate/usr/src/uts/common/io/audio/ac97/
ac97_cmi.c 163 int ival; local
175 ival = ac_get_prop(ac, AC97_PROP_LINEIN_FUNC, 0);
176 if ((ival >= 1) && (ival <= 2)) {
177 cp.cp_initval = ival;
182 ival = ac_get_prop(ac, AC97_PROP_MIC_FUNC, 0);
183 if ((ival >= 1) && (ival <= 2)) {
184 cp.cp_initval = ival;
217 int ival; local
    [all...]
ac97_alc.c 179 int ival; local
182 ival = ac_get_prop(ac, AC97_PROP_LINEIN_FUNC, 0);
183 if ((ival >= 1) && (ival <= 2)) {
184 cp.cp_initval = ival;
189 ival = ac_get_prop(ac, AC97_PROP_MIC_FUNC, 0);
190 if ((ival >= 1) && (ival <= 2)) {
191 cp.cp_initval = ival;
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/
perly.c 40 I32 ival;
    [all...]
perly.h 66 I32 ival; member in union:__anon1076
toke.c 139 # define REPORT2(x,retval) tokereport(x,s, yylval.ival),
152 #define LOOPX(f) return(yylval.ival=f, REPORT("loopx",f) PL_expect = XTERM,PL_bufptr = s,(int)LOOPEX)
153 #define FTST(f) return(yylval.ival=f, REPORT("ftst",f) PL_expect = XTERM,PL_bufptr = s,(int)UNIOP)
154 #define FUN0(f) return(yylval.ival = f, REPORT("fun0",f) PL_expect = XOPERATOR,PL_bufptr = s,(int)FUNC0)
155 #define FUN1(f) return(yylval.ival = f, REPORT("fun1",f) PL_expect = XOPERATOR,PL_bufptr = s,(int)FUNC1)
156 #define BOop(f) return ao((yylval.ival=f, REPORT("bitorop",f) PL_expect = XTERM,PL_bufptr = s,(int)BITOROP))
157 #define BAop(f) return ao((yylval.ival=f, REPORT("bitandop",f) PL_expect = XTERM,PL_bufptr = s,(int)BITANDOP))
158 #define SHop(f) return ao((yylval.ival=f, REPORT("shiftop",f) PL_expect = XTERM,PL_bufptr = s,(int)SHIFTOP))
159 #define PWop(f) return ao((yylval.ival=f, REPORT("powop",f) PL_expect = XTERM,PL_bufptr = s,(int)POWOP))
160 #define PMop(f) return(yylval.ival=f, REPORT("matchop",f) PL_expect = XTERM,PL_bufptr = s,(int)MATCHOP
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Time/HiRes/t/
HiRes.t 225 my $ival = Time::HiRes::tv_interval ($r);
226 print "# Select returned! $i $ival\n";
227 print "# ", abs($ival/3 - 1), "\n";
233 if (abs($ival/3.3 - 1) < $limit) {
240 if (abs($ival/$exp - 1) > 3*$limit) {
241 my $ratio = abs($ival/$exp);
242 $not = "while: $exp sleep took $ival ratio $ratio";
251 my $ival = Time::HiRes::tv_interval ($r);
252 print "# Tick! $i $ival\n";
255 if (abs($ival/$exp - 1) > 3*$limit)
    [all...]
  /onnv/onnv-gate/usr/src/common/smbsrv/
smb_msgbuf.c 215 uint32_t ival; local
322 ival = strlen((const char *)mb->scan) + 1;
323 if (smb_msgbuf_has_space(mb, ival) == 0)
326 if ((cvalp = smb_msgbuf_malloc(mb, ival * 2)) == 0)
329 if ((ival = smb_stombs((char *)cvalp,
330 (char *)mb->scan, ival * 2)) ==
337 mb->scan += (ival+1);
448 uint32_t ival; local
554 ival = strlen((const char *)cvalp) + 1;
556 if (smb_msgbuf_has_space(mb, ival) == 0
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsmbfs/
cflib.h 64 int ival; /* int/bool values, or max len for str value */ member in struct:opt_args
66 int min; /* min for ival */
67 int max; /* max for ival */
  /onnv/onnv-gate/usr/src/grub/grub-0.97/netboot/
grub.h 90 typedef int (*reply_t)(int ival, void *ptr, unsigned short ptype, struct iphdr *ip, struct udphdr *udp);
91 extern int await_reply P((reply_t reply, int ival, void *ptr, long timeout));
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/
syncinit.c 293 int ival; local
295 for (ival = 0; *table != 0; ival++, table++)
297 return (ival);
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Data/Dumper/
Dumper.xs 247 SV *sv, *ipad, *ival;
279 ival = SvRV(val);
280 realtype = SvTYPE(ival);
281 (void) sprintf(id, "0x%"UVxf, PTR2UV(ival));
283 if (SvOBJECT(ival))
284 realpack = HvNAME(SvSTASH(ival));
412 DD_dump(aTHX_ ival, SvPVX(namesv), SvCUR(namesv), retval, seenhv,
420 DD_dump(aTHX_ ival, SvPVX(namesv), SvCUR(namesv), retval, seenhv,
432 DD_dump(aTHX_ ival, SvPVX(namesv), SvCUR(namesv), retval, seenhv,
441 I32 ixmax = av_len((AV *)ival);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/iscsi/iscsitgtd/
isns.c 188 print_attr(isns_tlv_t *attr, void *pval, uint32_t ival)
214 pf_type = (ival == sizeof (in6_addr_t))
260 void *pval, uint32_t ival)
308 if (len && ival == sizeof (in_addr_t)) {
312 bcopy(pval, ((attr->attr_value) + 12), ival);
313 } else if (len && ival == sizeof (in6_addr_t)) {
315 bcopy(pval, attr->attr_value, ival);
322 val = htonl(ival);
isns_client.h 168 void print_attr(isns_tlv_t *attr, void *pval, uint32_t ival);
  /onnv/onnv-gate/usr/src/cmd/pools/poolcfg/
poolcfg.l 172 yylval.ival = strtoll(yytext, NULL, 0);
  /onnv/onnv-gate/usr/src/cmd/filebench/common/
parser_lex.l 230 yylval.ival = strtoll(yytext, NULL, 10);
241 yylval.ival = KB * strtoll(yytext, NULL, 10);
252 yylval.ival = MB * strtoll(yytext, NULL, 10);
263 yylval.ival = GB * strtoll(yytext, NULL, 10);
  /onnv/onnv-gate/usr/src/lib/libpool/common/
pool_value.c 293 int64_t ival; local
318 if (nvpair_value_int64(pn, &ival) != 0) {
322 pool_value_set_int64(pv, ival);
  /onnv/onnv-gate/usr/src/lib/libsasl/lib/
seterror.c 125 int ival; local
294 ival = va_arg(ap, int); /* get the next arg */
296 snprintf(tempbuf,20,frmt,ival); /* have snprintf do the work */
  /onnv/onnv-gate/usr/src/cmd/svc/svccfg/
svccfg_internal.c 879 value_t *ival; local
907 ival = internal_value_new();
908 ival->sc_type = scf_value_type(load_val);
909 assert(ival->sc_type != SCF_TYPE_INVALID);
911 switch (ival->sc_type) {
918 ival->sc_u.sc_count = b;
923 r = scf_value_get_count(load_val, &ival->sc_u.sc_count);
930 &ival->sc_u.sc_integer);
942 ival->sc_u.sc_string = strdup(loadbuf);
943 if (ival->sc_u.sc_string == NULL)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sendmail/libsm/
clock.c 97 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);
  /onnv/onnv-gate/usr/src/cmd/picl/plugins/sun4v/lib/snmp/
asn1.c 131 int ival, i; local
143 ival = val;
168 valp = (uchar_t *)&ival;
448 asn_parse_int(uchar_t *buf, size_t *bufsz_p, int *ival)
481 *ival = (*p & ASN_BIT8) ? -1 : 0;
483 *ival <<= 8;
484 *ival |= *p++;
  /onnv/onnv-gate/usr/src/cmd/eject/
eject.c 422 int ival = 0; local
426 if (ioctl(fd, FDGETCHANGE, &ival) >= 0) {
427 if (!(ival & FDGC_CURRENT)) {
  /onnv/onnv-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/asn.1/
ldap_key_seq.c 359 unsigned int ival; local
372 ret = decode_tagged_octetstring (&kbuf, 1, &ival,
374 key->key_data_length[0] = ival; /* XXX range check? */

Completed in 11218 milliseconds

1 2 3