Searched refs:val (Results 176 - 200 of 665) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dkdb_ldap.h146 #define STORE16_INT(ptr, val) store_16_be(val, ptr)
147 #define STORE32_INT(ptr, val) store_32_be(val, ptr)
148 #define UNSTORE16_INT(ptr, val) (val = load_16_be(ptr))
149 #define UNSTORE32_INT(ptr, val) (val = load_32_be(ptr))
/osnet-11/usr/src/grub/grub-0.97/stage2/
H A Ddisk_inode_ffs.h60 #define i_size ic_size.val[1]
62 #define i_size ic_size.val[0]
/osnet-11/usr/src/cmd/sendmail/libsm/
H A Dlocal.h134 ** val -- the timeout value to be converted
147 # define SM_CONVERT_TIME(fp, fd, val, time) { \
153 if ((val) == SM_TIME_DEFAULT) \
154 (val) = (fp)->f_timeout; \
155 if ((val) == SM_TIME_IMMEDIATE || (val) == SM_TIME_FOREVER) \
162 (time)->tv_sec = (val) / 1000; \
163 (time)->tv_usec = ((val) - ((time)->tv_sec * 1000)) * 1000; \
165 if ((val) == SM_TIME_FOREVER) \
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/
H A DExpireTest.pm40 my ($cache, $key, $val) = @_;
41 $cache->{$key} = $val;
/osnet-11/usr/src/lib/libast/common/string/
H A Dtokline.c58 spliceline(Sfio_t* s, int op, void* val, Sfdisc_t* ad) argument
69 NoP(val);
/osnet-11/usr/src/lib/libc/port/sys/
H A Dppriv.c76 setpflags(uint_t flag, uint_t val) argument
79 (priv_ptype_t)(uintptr_t)val, 0, 0));
/osnet-11/usr/src/lib/passwdutil/
H A Dutils.c158 int val = -1; /* -1 is a guard to catch undefined values */ local
161 val = atoi(p);
163 return (val >= 0 ? val : defvalue);
213 int val; local
217 val = defvalue;
219 val = def_getuint(name, defvalue, defp);
223 return (val);
/osnet-11/usr/src/lib/pyzfs/common/
H A Dholds.py67 val = {"name": ds.name, "tag": tag,
69 t.addline(ds.name, val)
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Dtg3.c98 static void tg3_write_indirect_reg32(uint32_t off, uint32_t val) argument
101 pci_write_config_dword(tg3.pdev, TG3PCI_REG_DATA, val);
104 #define tw32(reg,val) tg3_write_indirect_reg32((reg),(val))
105 #define tw32_mailbox(reg, val) writel(((val) & 0xffffffff), tg3.regs + (reg))
106 #define tw16(reg,val) writew(((val) & 0xffff), tg3.regs + (reg))
107 #define tw8(reg,val) writeb(((val)
112 tw32_carefully(uint32_t reg, uint32_t val) argument
119 tw32_mailbox2(uint32_t reg, uint32_t val) argument
125 tg3_write_mem(uint32_t off, uint32_t val) argument
134 tg3_read_mem(uint32_t off, uint32_t *val) argument
172 tg3_readphy(struct tg3 *tp, int reg, uint32_t *val) argument
212 tg3_writephy(struct tg3 *tp, int reg, uint32_t val) argument
248 tg3_writedsp(struct tg3 *tp, uint16_t addr, uint16_t val) argument
259 uint32_t val; local
580 tg3_aux_stat_to_speed_duplex( struct tg3 *tp __unused, uint32_t val, uint8_t *speed, uint8_t *duplex) argument
1415 uint32_t val; local
1515 uint32_t val; local
1585 uint32_t val; local
1604 uint32_t val; local
1744 uint32_t val, rdmac_mode; local
2246 tg3_nvram_read_using_eeprom( struct tg3 *tp __unused, uint32_t offset, uint32_t *val) argument
2282 tg3_nvram_read(struct tg3 *tp, uint32_t offset, uint32_t *val) argument
2379 uint32_t val; local
2575 unsigned char val = vpd_data[i]; local
[all...]
H A Dmisc.c280 int val; local
285 val = getdec (&p);
287 if (val < 0 || val > 255)
293 ip = (ip << 8) | val;
/osnet-11/usr/src/lib/libparted/common/lib/
H A Dquotearg.c681 char *val; member in struct:slotvec
697 free (sv[i].val);
698 if (sv[0].val != slot0)
700 free (sv[0].val);
702 slotvec0.val = slot0;
754 char *val = sv[n].val; local
757 size_t qsize = quotearg_buffer_restyled (val, size, arg, argsize,
766 if (val != slot0)
767 free (val);
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/kern/ieee1275/
H A Dinit.c233 char *val; local
247 val = grub_strchr (command, '=');
248 if (val)
250 *val = '\0';
251 grub_env_set (command, val + 1);
/osnet-11/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_cookie.c369 cookie->val.rmr.rmr = rmr;
370 cookie->val.rmr.cookie = user_cookie;
411 cookie->val.dto.type = type;
412 cookie->val.dto.cookie = user_cookie;
413 cookie->val.dto.size = 0;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Data/Dumper/
H A DDumper.xs10 static I32 DD_dump (pTHX_ SV *val, char *name, STRLEN namelen, SV *retval,
45 #define DD_is_integer(sv) (SvIOK(sv) && (SvIsUV(val) ? SvUV(sv) == SvNV(sv) : SvIV(sv) == SvNV(sv)))
238 DD_dump(pTHX_ SV *val, char *name, STRLEN namelen, SV *retval, HV *seenhv,
254 if (!val)
257 realtype = SvTYPE(val);
259 if (SvGMAGICAL(val))
260 mg_get(val);
261 if (SvROK(val)) {
263 if (SvOBJECT(SvRV(val)) && freezer &&
267 XPUSHs(val); PUTBAC
[all...]
/osnet-11/usr/src/lib/librestart/common/
H A Dlibrestart.c1072 const char *pname, scf_type_t ty, scf_value_t *val)
1122 r = scf_entry_add_value(ent, val);
1548 scf_value_t *val; local
1663 val = scf_value_create(h);
1664 if (val == NULL) {
1671 ret = scf_iter_next_value(iter, val);
1679 scf_value_destroy(val);
1692 ret = scf_value_get_count(val, &c);
1697 val);
1700 scf_value_destroy(val);
1071 tx_set_value(scf_transaction_t *tx, scf_transaction_entry_t *ent, const char *pname, scf_type_t ty, scf_value_t *val) argument
1845 scf_value_t *val; local
2153 get_astring_val(scf_propertygroup_t *pg, const char *name, char *buf, size_t bufsz, scf_property_t *prop, scf_value_t *val) argument
2179 get_boolean_val(scf_propertygroup_t *pg, const char *name, uint8_t *b, scf_property_t *prop, scf_value_t *val) argument
2545 get_profile(scf_propertygroup_t *methpg, scf_propertygroup_t *instpg, scf_property_t *prop, scf_value_t *val, const char *cmdline, struct method_context *ci, mc_error_t *merr) argument
2698 get_ids(scf_propertygroup_t *methpg, scf_propertygroup_t *instpg, scf_property_t *prop, scf_value_t *val, struct method_context *ci, mc_error_t *merr) argument
2876 get_environment(scf_handle_t *h, scf_propertygroup_t *pg, struct method_context *mcp, scf_property_t *prop, scf_value_t *val) argument
2991 scf_value_t *val = NULL; local
3996 scf_value_t *val; local
4045 scf_value_t *val; local
4134 scf_value_t *val; local
[all...]
/osnet-11/usr/src/grub/grub2/grub-core/normal/
H A Dmenu.c82 const char *val; local
85 val = grub_env_get ("timeout");
86 if (! val)
91 timeout = (int) grub_strtoul (val, 0, 0);
127 const char *val; local
131 val = grub_env_get (name);
132 if (! val)
137 entry = (int) grub_strtoul (val, &tail, 0);
443 const char *val; local
446 val
[all...]
/osnet-11/usr/src/lib/libscf/common/
H A Dnotify_params.c343 add_entry(scf_transaction_entry_t *te, scf_value_t *val) argument
345 if (scf_entry_add_value(te, val) != 0) {
346 scf_value_destroy(val);
356 scf_value_t *val = scf_value_create(h); local
358 if (val == NULL)
361 scf_value_set_boolean(val, v);
363 return (add_entry(te, val));
369 scf_value_t *val = scf_value_create(h); local
371 if (val == NULL)
374 scf_value_set_count(val,
382 scf_value_t *val = scf_value_create(h); local
395 scf_value_t *val = scf_value_create(h); local
411 scf_value_t *val = scf_value_create(h); local
906 get_value(scf_value_t *val, scf_values_t *v, int c, char *buf, int sz) argument
944 scf_value_t *val = scf_value_create(h); local
1172 get_mech_name(const char *name, char **mech, char **val) argument
1430 char *val; local
[all...]
/osnet-11/usr/src/lib/libdtrace/common/
H A Ddt_options.c517 dtrace_optval_t val = 0; local
535 val = DTRACEOPT_UNSET;
541 val = 1;
546 val = DTRACEOPT_UNSET;
552 val = strtoull(arg, &end, 0);
554 if (*end != '\0' || errno != 0 || val < 0)
559 dtp->dt_options[option] = val;
607 dtrace_optval_t val = 0; local
609 if (arg != NULL && dt_optval_parse(arg, &val) != 0)
612 dtp->dt_options[option] = val;
621 dtrace_optval_t mul = 1, val = 0; local
683 dtrace_optval_t val = dtp->dt_options[option]; local
960 dtrace_getopt(dtrace_hdl_t *dtp, const char *opt, dtrace_optval_t *val) argument
989 dtrace_setopt(dtrace_hdl_t *dtp, const char *opt, const char *val) argument
[all...]
/osnet-11/usr/src/lib/gss_mechs/mech_krb5/profile/
H A Dprof_solaris.c794 * char **val)
801 * (val returns realm validated)
804 * (val returns default realm configured)
807 * (val returns realm configured)
810 * (val returns realm not found)
813 * (val returns realm specified)
816 * (val returns realm specified)
819 * (val returns realm specified)
822 * (val returns realm specified)
825 * (val return
850 k5_profile_validate(profile_t profile, char *realm, int *val_err, char **val) argument
1068 k5_profile_validate_get_error_msg(profile_t profile, int err, char *val, char **err_msg) argument
[all...]
/osnet-11/usr/src/lib/libshell/common/bltins/
H A Denum.c131 static void put_enum(Namval_t* np,const char *val,int flags,Namfun_t *fp) argument
136 if(!val)
141 nv_putv(np, val, flags,fp);
146 nv_putv(np,val,flags,fp);
152 n = strcasecmp(v,val);
154 n = strcmp(v,val);
163 error(ERROR_exit(1), "%s: invalid value %s",nv_name(np),val); local
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Exacct/Catalog/
H A DCatalog.pm212 my ($self, $val) = @_;
226 my ($self, $val) = @_;
323 my $val = undef;
325 $val = $href->{$const};
327 $val = $_Constants{other}{name}{$const};
334 croak("Undefined constant \"$const\"") if (! defined($val));
335 my $sub = sub { return $val; };
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/XS/APItest/
H A DAPItest.pm59 print_double( $val );
85 print_nv( $val );
94 print_iv( $val );
103 print_uv( $val );
112 print_int( $val );
121 print_long( $val );
130 print_float( $val );
/osnet-11/usr/src/lib/libldap4/util/
H A Dline64.c272 put_type_and_value( char **out, char *t, char *val, int vlen ) argument
292 stop = (unsigned char *) (val + vlen);
293 if ( isascii( val[0] ) && isspace( val[0] ) || val[0] == ':' ) {
296 for ( byte = (unsigned char *) val; byte < stop;
316 for ( byte = (unsigned char *) val; byte < stop - 2;
368 ldif_type_and_value( char *type, char *val, int vlen ) argument
382 put_type_and_value( &p, type, val, vlen );
/osnet-11/usr/src/grub/grub2/grub-core/loader/i386/pc/
H A Dlinux.c220 char *val = argv[i] + 4; local
222 if (grub_strcmp (val, "normal") == 0)
224 else if (grub_strcmp (val, "ext") == 0)
226 else if (grub_strcmp (val, "ask") == 0)
229 vid_mode = (grub_uint16_t) grub_strtoul (val, 0, 0);
238 char *val = argv[i] + 4; local
240 linux_mem_size = grub_strtoul (val, &val, 0);
251 switch (grub_tolower (val[0]))
/osnet-11/usr/src/lib/libproject/common/
H A Dsetproject.c104 unsigned long long val; local
112 val = strtoull(component, &t, 10);
116 rctlblk_set_value(blk, (rctl_qty_t)val);
189 rctl_set(char *ctl_name, char *val, struct ps_prochandle *Pr, int flags) argument
213 remove_spaces(val);
223 for (tmp = val; *tmp != '\0'; tmp++) {
259 for (; ; val++) {
261 switch (*val) {
269 component_head = (char *)val + 1;
274 *val
[all...]

Completed in 44 milliseconds

1234567891011>>