Searched defs:value (Results 76 - 100 of 1381) sorted by relevance

1234567891011>>

/illumos-gate/usr/src/uts/intel/asm/
H A Dhtable.h47 atomic_orb(uint8_t *addr, uint8_t value) argument
52 : "d" (value), "m" (*addr)
57 atomic_andb(uint8_t *addr, uint8_t value) argument
62 : "d" (value), "m" (*addr)
/illumos-gate/usr/src/cmd/make/lib/vroot/
H A Dsetenv.cc35 char *setenv(char *name, char *value) argument
52 vl= strlen(value);
59 (void)strcpy(p, value);
60 return(value);
/illumos-gate/usr/src/boot/sys/boot/arm/at91/libat91/
H A Dat91rm9200_lowlevel.c53 register unsigned value; local
83 value = AT91C_BASE_CKGR->CKGR_PLLAR;
84 value &= ~(AT91C_CKGR_DIVA | AT91C_CKGR_OUTA | AT91C_CKGR_MULA);
85 value |= OSC_MAIN_FREQ_DIV | AT91C_CKGR_OUTA_2 | AT91C_CKGR_SRCA |
87 AT91C_BASE_CKGR->CKGR_PLLAR = value;
94 value = AT91C_BASE_PMC->PMC_MCKR;
95 value &= ~(AT91C_PMC_MDIV | AT91C_PMC_PRES);
96 value |= AT91C_PMC_MDIV_3 | AT91C_PMC_PRES_CLK;
97 AT91C_BASE_PMC->PMC_MCKR = value;
104 value
[all...]
/illumos-gate/usr/src/lib/libresolv2/common/resolv/
H A Dmtctxres.c94 __res_destroy_ctx(void *value) { argument
96 mtctxres_t *mt = (mtctxres_t *)value;
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_inttab.c69 dt_inttab_insert(dt_inttab_t *ip, uint64_t value, uint_t flags) argument
71 uint_t h = value & (ip->int_hashlen - 1);
76 if (hp->inh_value == value && hp->inh_flags == flags)
86 hp->inh_value = value;
/illumos-gate/usr/src/lib/libdtrace_jni/java/src/org/opensolaris/os/dtrace/
H A DAbstractAggregationValue.java34 * A numeric value generated by a D aggregating action such as {@code
47 private final Number value; field in class:AbstractAggregationValue
52 value = new Long(v);
58 value = new Double(v);
64 return value;
68 * Compares the specified object with this aggregation value for
70 * numeric value.
73 * aggregation value of the same {@code Class} as this value, and
81 return (value
[all...]
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwrefresh.c60 int value; local
63 value = clearok(__m_screen->_newscr, TRUE);
65 value = wnoutrefresh(w);
67 if (value == OK)
68 value = doupdate();
70 return (value);
82 int wy, wx, ny, nx, dx, value; local
89 value = (w->_flags & W_IS_PAD) ? ERR : OK;
91 if (value == OK) {
182 return (value);
[all...]
/illumos-gate/usr/src/lib/libnsl/netselect/
H A Dnetcspace.h47 unsigned int value; member in struct:nc_data
/illumos-gate/usr/src/lib/libprtdiag/common/
H A Dprom.c123 void *value; local
129 value = get_prop_val(find_prop(card_node, "class-code"));
130 if (value != NULL)
131 return (*(int *)value);
/illumos-gate/usr/src/lib/libbc/libc/compat/4.1/
H A Dvlimit.c48 vlimit(int limit, int value) argument
54 if (value == -1) {
59 rlim.rlim_cur = value;
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dconfstr.c40 char *value; member in struct:__anon2988
127 conf_length = strlen(entry->value) + 1;
129 (void) strncpy(buf, entry->value, length);
H A Dl64a.c58 l64a(long value) argument
61 int lg = (int)value;
/illumos-gate/usr/src/cmd/pools/poold/com/sun/solaris/service/pools/
H A DHRTime.java35 * hrtime_t-like (see gethrtime(3C)) uptime-based time value (i.e., resilient
41 * The native <code>hrtime_t</code> value.
43 private UnsignedInt64 value; field in class:HRTime
50 this.value = timestamp();
54 * Constructs a new HRTime with the value of the given
57 * @param value The timestamp to be used.
59 public HRTime(UnsignedInt64 value) argument
61 this.value = value;
74 if (older.compareTo(value) >
[all...]
H A DProperty.java73 * Put the supplied value as a property with the supplied name.
76 * @param value The value of the property to be updated.
79 public void putProperty(String name, Value value) throws PoolsException; argument
H A DUnsignedInt64.java35 * The minimum value is 0.
40 * The maximum value is 18446744073709551615.
46 * Constructs a UnsignedInt64 with the same value as the given
49 * @throws NumberFormatException if the given value is outside
59 * Constructs a UnsignedInt64 with the same value as the given
62 * @throws NumberFormatException if the given value is outside
73 * Constructs a UnsignedInt64 with the same value as the given
78 * @throws NumberFormatException if the given value is outside
88 * Constructs an UnsignedInt64 with the same value as the given
91 * @throws NumberFormatException if the given value i
94 UnsignedInt64(BigInteger value) argument
[all...]
/illumos-gate/usr/src/cmd/rexd/
H A Dmntent.c75 register int value = 0; local
82 value *= 10;
83 value += *cp - '0';
93 return (value);
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/rdist/
H A Dlookup.c43 struct namelist *value; local
50 value = NULL;
53 value = NULL;
56 value = makenl(cp);
81 value = nl = makenl(cp);
91 (void) lookup(name, REPLACE, value);
97 * INSERT - insert name with value, error if already defined.
98 * REPLACE - insert or replace name with value.
102 lookup(name, action, value)
105 struct namelist *value;
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/telnet/
H A Dnetwork.c95 int value; local
100 value = select(net+1, NULL, NULL, &excepts, &timeout);
101 } while ((value == -1) && (errno == EINTR));
103 if (value < 0) {
134 * The return value indicates whether we did any
/illumos-gate/usr/src/cmd/mdb/common/mdb/
H A Dmdb_addrvec.c52 mdb_addrvec_unshift(mdb_addrvec_t *adp, uintptr_t value) argument
65 adp->ad_data[adp->ad_nelems++] = value;
/illumos-gate/usr/src/cmd/scadm/sparc/mpxu/common/
H A Dxsem.c42 xsem_init(xsem_t *sem, int pshared, unsigned int value) argument
49 sem->semaphore = value;
/illumos-gate/usr/src/cmd/geniconvtbl/
H A Dhash.h48 itm_size_t value; local
50 value = *(ptr++);
53 value *= 27239;
54 value += *(ptr++);
56 return (value % hash_size);
/illumos-gate/usr/src/cmd/hal/hald-runner/
H A Dutils.c41 const char *value; local
43 dbus_message_iter_get_basic(iter, &value);
44 t = g_strdup(value);
/illumos-gate/usr/src/cmd/hal/utils/
H A Dadt_data.c33 uchar_t value; local
91 dbus_message_iter_get_basic (&subiter, &value);
92 buf[count++] = value;
/illumos-gate/usr/src/cmd/ipf/lib/common/
H A Dfacpri.c29 int value; member in struct:table
83 if (facs[j].value == fac)
86 if (fac == facs[i].value)
105 return facs[i].value;
130 return pris[i].value;
145 if (pris[pri].value == pri)
148 if (pri == pris[i].value)
/illumos-gate/usr/src/cmd/ldap/ns_ldap/
H A Dldapaddtsol.c82 char **value = NULL; local
84 value = __ns_ldap_getAttr(res->entry, "ipTnetNumber");
85 if (value && value[0])
86 (void) printf("%s", value[0]);
91 value = __ns_ldap_getAttr(res->entry, "ipTnetTemplateName");
92 if (value && value[0])
93 (void) printf("%s", value[0]);
129 char **value local
[all...]

Completed in 130 milliseconds

1234567891011>>