Searched refs:value (Results 426 - 450 of 2924) sorted by relevance

<<11121314151617181920>>

/freebsd-10.0-release/contrib/binutils/ld/
H A Dldctor.h46 asection *section; /* Section of value in set. */
47 bfd_vma value; /* Value in set. */ member in struct:set_element
/freebsd-10.0-release/contrib/dialog/samples/
H A Dform1-both19 value=`$DIALOG --ok-label "Submit" \
32 show=`echo "$value" |sed -e 's/^/ /'`
H A Dform1-extra19 value=`$DIALOG --ok-label "Submit" \
32 show=`echo "$value" |sed -e 's/^/ /'`
H A Dform1-help19 value=`$DIALOG --ok-label "Submit" \
32 show=`echo "$value" |sed -e 's/^/ /'`
H A Dform1-utf821 value=`$DIALOG --ok-label "Submit" \
34 show=`echo "$value" |sed -e 's/^/ /'`
H A Dform320 value=`$DIALOG --ok-label "Submit" \
33 show=`echo "$value" |sed -e 's/^/ /'`
H A Dform420 value=`$DIALOG --ok-label "Submit" \
34 show=`echo "$value" |sed -e 's/^/ /'`
H A Dform520 value=`$DIALOG --ok-label "Submit" \
35 show=`echo "$value" |sed -e 's/^/ /'`
H A Dform620 value=`$DIALOG --ok-label "Submit" \
35 show=`echo "$value" |sed -e 's/^/ /'`
H A Dpasswordform119 value=`$DIALOG --ok-label "Submit" \
32 show=`echo "$value" |sed -e 's/^/ /'`
H A Dpasswordform1-utf821 value=`$DIALOG --ok-label "Submit" \
34 show=`echo "$value" |sed -e 's/^/ /'`
/freebsd-10.0-release/contrib/libstdc++/include/ext/pb_ds/detail/gp_hash_table_map_/
H A Dstandard_policies.hpp70 Comb_Probe_Fn>::value,
/freebsd-10.0-release/contrib/telnet/telnet/
H A Dnetwork.c88 int value; local
93 value = select(net+1, (fd_set *)0, (fd_set *)0, &excepts, &timeout);
94 } while ((value == -1) && (errno == EINTR));
96 if (value < 0) {
127 * The return value indicates whether we did any
/freebsd-10.0-release/contrib/texinfo/info/
H A Dvariables.h28 /* A variable (in the Info sense) is an integer value with a user-visible
32 set the variable to a numeric value. */
38 int *value; /* Address of value. */ member in struct:__anon4403
43 address of a VARIABLE_ALIST member. A return value of NULL indicates
51 /* Set the value of an info variable. */
/freebsd-10.0-release/crypto/heimdal/appl/test/
H A Dnt_gss_common.c66 if (write (sock, buf->value, len) != len)
90 buf->value = malloc(len);
91 if (read (sock, buf->value, len) != len)
112 (char *)status_string.value);
/freebsd-10.0-release/crypto/heimdal/lib/gssapi/mech/
H A Dgss_buffer_set.c85 p->value = malloc(member_buffer->length);
86 if (p->value == NULL) {
90 memcpy(p->value, member_buffer->value, member_buffer->length);
H A Dgss_display_status.c178 status_string->value = buf;
190 oid.value = rk_UNCONST("unknown");
196 (int)oid.length, (char *)oid.value);
204 status_string->value = buf;
/freebsd-10.0-release/lib/libc/mips/sys/
H A Dcerror.S56 REG_S v0, CALLFRAME_S0(sp) # save errno value
63 INT_S t0, 0(v0) # update errno value
/freebsd-10.0-release/lib/libgssapi/
H A Dgss_buffer_set.c88 p->value = malloc(member_buffer->length);
89 if (p->value == NULL) {
93 memcpy(p->value, member_buffer->value, member_buffer->length);
/freebsd-10.0-release/lib/libthr/thread/
H A Dthr_sem.c56 extern int _libc_sem_init_compat(sem_t *sem, int pshared, unsigned int value);
65 int _sem_init_compat(sem_t *sem, int pshared, unsigned int value);
75 _sem_init_compat(sem_t *sem, int pshared, unsigned int value) argument
77 return _libc_sem_init_compat(sem, pshared, value);
/freebsd-10.0-release/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_atomic.c88 atomic_or_8(volatile uint8_t *target, uint8_t value) argument
91 *target |= value;
97 atomic_or_8_nv(volatile uint8_t *target, uint8_t value) argument
102 newval = (*target |= value);
/freebsd-10.0-release/sys/contrib/octeon-sdk/
H A Dcvmx-qlm.h110 * @return JTAG field value
120 * @param value Value of the field
122 extern void cvmx_qlm_jtag_set(int qlm, int lane, const char *name, uint64_t value);
H A Dcvmx-utils.h106 * This macro spins on a field waiting for it to reach a value. It
108 * to match a specific value. Conceptually this macro expands to:
111 * 2) Check if ("type".s."field" "op" "value")
114 #define CVMX_WAIT_FOR_FIELD64(address, type, field, op, value, timeout_usec)\
123 if ((c.s.field) op (value)) { \
164 * Perform mask and shift to place the supplied value into
167 * Example: cvmx_build_bits(39,24,value)
175 * @param high_bit Highest bit value can occupy (inclusive) 0-63
176 * @param low_bit Lowest bit value can occupy inclusive 0-high_bit
177 * @param value Valu
180 cvmx_build_bits(uint64_t high_bit, uint64_t low_bit, uint64_t value) argument
[all...]
/freebsd-10.0-release/sys/dev/speaker/
H A Dspkr.c59 static void playtone(int pitch, int value, int sustain);
143 static int value; /* whole divisor for note time, quarter note = 1 */ variable
154 #define DFLT_VALUE 4 /* default value (quarter-note) */
193 value = DFLT_VALUE;
202 playtone(int pitch, int value, int sustain) argument
213 if (value == 0 || sdenom == 0)
217 rest(whole * snum / (value * sdenom));
219 sound = (whole * snum) / (value * sdenom)
220 - (whole * (FILLTIME - fill)) / (value * FILLTIME);
221 silence = whole * (FILLTIME-fill) * snum / (FILLTIME * value * sdeno
[all...]
/freebsd-10.0-release/sys/powerpc/include/
H A Ddbdma.h103 * modify; if mask is 0x03 and value is 0, the lowest order 2 bits will be
111 uint8_t value);
130 * The condition is considered true if (status & mask) == value.
134 uint8_t value);
136 uint8_t value);
138 uint8_t value);

Completed in 111 milliseconds

<<11121314151617181920>>