Searched refs:value (Results 1 - 25 of 2924) sorted by relevance

1234567891011>>

/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/preprocessor/
H A Dtst.precondi.d38 #define value 5
44 /value == 5/
46 printf("The value is %d\n", value);
/freebsd-10.0-release/contrib/gdb/gdb/
H A Dwrapper.h23 struct value;
33 extern int gdb_evaluate_expression (struct expression *, struct value **);
35 extern int gdb_value_fetch_lazy (struct value *);
37 extern int gdb_value_equal (struct value *, struct value *, int *);
39 extern int gdb_value_assign (struct value *, struct value *, struct value **);
41 extern int gdb_value_subscript (struct value *, struct value *, struc
[all...]
H A Dinfcall.h25 struct value;
28 extern CORE_ADDR find_function_addr (struct value *function,
34 is a value, the function to be called. Returns a value
40 extern struct value *call_function_by_hand (struct value *function, int nargs,
41 struct value **args);
H A Dvalue.h37 /* The structure which defines the type of a value. It should never
38 be possible for a program lval value to survive over a call to the
42 struct value struct
44 /* Type of value; either not an lval, or one of the various
51 /* Location of value (if lval). */
66 /* Describes offset of a value within lval of a structure in bytes.
81 /* Frame value is relative to. In practice, this ID is only used if
82 the value is stored in several registers in other than the
88 /* Type of the value. */
91 /* If a value represent
281 struct value *value; member in struct:internalvar
[all...]
/freebsd-10.0-release/sys/sys/
H A Dassym.h35 #define ASSYM_ABS(value) ((value) < 0 ? -((value) + 1) + 1ULL : (value))
37 #define ASSYM(name, value) \
38 char name ## sign[((value) < 0 ? 1 : 0) + ASSYM_BIAS]; \
39 char name ## w0[(ASSYM_ABS(value) & 0xFFFFU) + ASSYM_BIAS]; \
40 char name ## w1[((ASSYM_ABS(value) & 0xFFFF0000UL) >> 16) + ASSYM_BIAS]; \
41 char name ## w2[((ASSYM_ABS(value) & 0xFFFF00000000ULL) >> 32) + ASSYM_BIAS]; \
42 char name ## w3[((ASSYM_ABS(value)
[all...]
/freebsd-10.0-release/contrib/ncurses/ncurses/tinfo/
H A Dgetenv_num.c46 long value; local
49 || (value = strtol(src, &dst, 0)) < 0
52 || (int) value < value)
53 value = -1;
55 return (int) value;
/freebsd-10.0-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/
H A Dtst.charconstants.d55 printf("decimal value = %d; character value = %c\n", char_1, char_1);
56 printf("decimal value = %d; character value = %c\n", char_2, char_2);
57 printf("decimal value = %d; character value = %c\n", char_3, char_3);
58 printf("decimal value = %d; character value = %c\n", char_4, char_4);
59 printf("decimal value = %d; character value
[all...]
/freebsd-10.0-release/bin/sh/
H A Darith_yylex.c58 int value; local
64 value = *buf;
65 switch (value) {
145 value = ARITH_VAR;
148 value += ARITH_ASS - '=';
154 value += 11;
159 value += ARITH_GE - '>';
162 value += ARITH_RSHIFT - '>';
165 value += ARITH_GT - '>';
172 value
[all...]
/freebsd-10.0-release/lib/libc/gen/
H A Dgetpagesize.c57 static int value; local
61 if (value != 0)
62 return (value);
64 error = _elf_aux_info(AT_PAGESZ, &value, sizeof(value));
65 if (error == 0 && value != 0)
66 return (value);
70 size = sizeof value;
71 if (sysctl(mib, 2, &value, &size, NULL, 0) == -1)
74 return (value);
[all...]
H A Dgetosreldate.c47 int value; local
51 value = atoi(temp);
52 return (value);
57 size = sizeof value;
58 if (sysctl(mib, 2, &value, &size, NULL, 0) == -1)
60 return (value);
/freebsd-10.0-release/libexec/getty/
H A Dgettytab.h42 char *defalt; /* value we find by looking in defaults */
43 char *value; /* value that we find there */ member in struct:gettystrs
49 long value; /* number we find there */ member in struct:gettynums
57 char value; /* true/false flag */ member in struct:gettyflags
64 #define NX gettystrs[0].value
65 #define CL gettystrs[1].value
66 #define IM gettystrs[2].value
67 #define LM gettystrs[3].value
68 #define ER gettystrs[4].value
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/asn1/
H A Da_utf8.c67 * to the string and the length of the string. It sets 'value' to the value of
79 unsigned long value; local
84 /* Check syntax and work out the encoded value (if correct) */
86 value = *p++ & 0x7f;
91 value = (*p++ & 0x1f) << 6;
92 value |= *p++ & 0x3f;
93 if(value < 0x80) return -4;
99 value = (*p++ & 0xf) << 12;
100 value |
155 UTF8_putc(unsigned char *str, int len, unsigned long value) argument
[all...]
/freebsd-10.0-release/crypto/heimdal/appl/login/
H A Dconf.c49 char *value; local
52 if(cgetstr(confbuf, (char *)str, &value) < 0)
54 return value;
/freebsd-10.0-release/contrib/ncurses/ncurses/widechar/
H A Dlib_erasewchar.c47 int value; local
51 if ((value = erasechar()) != ERR) {
52 *wch = value;
68 int value; local
72 if ((value = killchar()) != ERR) {
73 *wch = value;
/freebsd-10.0-release/sys/boot/arm/at91/libat91/
H A Dmemset.c32 p_memset(char *buffer, char value, int size) argument
35 *buffer++ = value;
/freebsd-10.0-release/tools/tools/genericize/
H A Dgenericize.pl50 foreach my $value (split(/,\s*/, $values)) {
52 $machine = $value;
54 $ident = $value;
55 } elsif ($keyword eq 'options' && $value =~ m/(\w+)=(.+)/) {
58 $config{$keyword}->{$value} = \&EMPTY;
87 my ($keyword, $value) = split(' ', $_);
89 die("$generic is for $value, not $machine\n")
90 unless ($value eq $machine);
92 $line =~ s/$value/$ident/;
93 } elsif ($keyword eq 'options' && $value
[all...]
/freebsd-10.0-release/lib/libsdp/
H A Dutil.c293 } value; local
312 SDP_GET8(value.uint8, start);
313 printf("uint8 %u\n", value.uint8);
316 SDP_GET16(value.uint16, start);
317 printf("uint16 %u\n", value.uint16);
320 SDP_GET32(value.uint32, start);
321 printf("uint32 %u\n", value.uint32);
324 SDP_GET64(value.uint64, start);
325 printf("uint64 %ju\n", value.uint64);
330 SDP_GET128(&value
[all...]
/freebsd-10.0-release/contrib/tcp_wrappers/
H A Dsetenv.c17 /* setenv - update or insert environment (name,value) pair */
19 int setenv(name, value, clobber)
21 char *value;
30 if ((cp = malloc(strlen(name) + strlen(value) + 2)) == 0)
32 sprintf(cp, "%s=%s", name, value);
H A Doptions.c85 static void setenv_option(); /* execute "setenv name value" */
87 static void severity_option(); /* execute "severity value" */
138 char *value; local
148 * Separate the option into name and value parts. For backwards
149 * compatibility we ignore exactly one '=' between name and value.
152 if (*(value = curr_opt + strcspn(curr_opt, whitespace_eq))) {
153 if (*value != '=') {
154 *value++ = 0;
155 value += strspn(value, whitespac
[all...]
/freebsd-10.0-release/lib/libc/compat-43/
H A Dgethostid.c46 long value; local
50 size = sizeof value;
51 if (sysctl(mib, 2, &value, &size, NULL, 0) == -1)
53 return (value);
/freebsd-10.0-release/crypto/heimdal/lib/gssapi/ntlm/
H A Dinquire_sec_context_by_oid.c53 gss_buffer_desc value; local
55 value.length = ctx->sessionkey.length;
56 value.value = ctx->sessionkey.data;
59 &value,
72 gss_buffer_desc value; local
80 value.length = sizeof(num);
81 value.value = &num;
84 &value,
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DThreadSafeValue.h34 ThreadSafeValue(const T& value) : argument
35 m_value (value),
47 T value; local
50 value = m_value;
52 return value;
64 SetValue (const T& value) argument
67 m_value = value;
73 SetValueNoLock (const T& value) argument
75 m_value = value;
/freebsd-10.0-release/contrib/ncurses/menu/
H A Dm_item_val.c44 | Function : int set_item_value(ITEM *item, int value)
46 | Description : Programmatically set the item's selection value. This is
56 set_item_value(ITEM * item, bool value) argument
60 T((T_CALLED("set_item_value(%p,%d)"), item, value));
69 if (item->value ^ value)
71 item->value = value ? TRUE : FALSE;
83 _nc_Default_Item.value = value;
[all...]
/freebsd-10.0-release/contrib/xz/src/xz/
H A Dutil.c48 str_to_uint64(const char *name, const char *value, uint64_t min, uint64_t max) argument
53 while (*value == ' ' || *value == '\t')
54 ++value;
56 // Accept special value "max". Supporting "min" doesn't seem useful.
57 if (strcmp(value, "max") == 0)
60 if (*value < '0' || *value > '9')
62 "decimal integer"), value);
72 const uint32_t add = *value
151 uint64_to_str(uint64_t value, uint32_t slot) argument
167 uint64_to_nicestr(uint64_t value, enum nicestr_unit unit_min, enum nicestr_unit unit_max, bool always_also_bytes, uint32_t slot) argument
[all...]
/freebsd-10.0-release/contrib/libstdc++/include/ext/pb_ds/detail/
H A Dtype_utils.hpp87 value = is_const<T>::value && is_pointer<T>::value enumerator in enum:pb_ds::detail::is_const_pointer::__anon1754
96 value = is_const<T>::value && is_reference<T>::value enumerator in enum:pb_ds::detail::is_const_reference::__anon1755
105 value = is_fundamental<typename remove_const<T>::type>::value enumerator in enum:pb_ds::detail::is_simple::__anon1756
106 || is_pointer<typename remove_const<T>::type>::value
107 || is_member_pointer<T>::value
120 value = 0 enumerator in enum:pb_ds::detail::is_pair::is_pair_imp::__anon1757
129 value = 1 enumerator in enum:pb_ds::detail::is_pair::is_pair_imp::__anon1758
136 value = is_pair_imp<T>::value enumerator in enum:pb_ds::detail::is_pair::__anon1759
[all...]

Completed in 327 milliseconds

1234567891011>>