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

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_type_traits.cpp17 const bool true_type::value; member in class:__sanitizer::true_type
18 const bool false_type::value; member in class:__sanitizer::false_type
/freebsd-11-stable/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-11-stable/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
284 struct value *value; member in struct:internalvar
[all...]
/freebsd-11-stable/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-11-stable/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-11-stable/bin/sh/
H A Darith_yylex.c56 int value; local
62 value = *buf;
63 switch (value) {
143 value = ARITH_VAR;
146 value += ARITH_ASS - '=';
152 value += 11;
157 value += ARITH_GE - '>';
160 value += ARITH_RSHIFT - '>';
163 value += ARITH_GT - '>';
170 value
[all...]
/freebsd-11-stable/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;
59 _nc_setenv_num(const char *name, int value) argument
61 if (name != 0 && value >= 0) {
64 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer)) "%d", value);
68 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer)) "%s=%d", name, value);
[all...]
/freebsd-11-stable/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, nitems(mib), &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-11-stable/libexec/getty/
H A Dgettytab.h38 char *defalt; /* value we find by looking in defaults */
39 char *value; /* value that we find there */ member in struct:gettystrs
45 long value; /* number we find there */ member in struct:gettynums
53 char value; /* true/false flag */ member in struct:gettyflags
60 #define NX gettystrs[0].value
61 #define CL gettystrs[1].value
62 #define IM gettystrs[2].value
63 #define LM gettystrs[3].value
64 #define ER gettystrs[4].value
[all...]
/freebsd-11-stable/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
85 /* Check syntax and work out the encoded value (if correct) */
87 value = *p++ & 0x7f;
94 value = (*p++ & 0x1f) << 6;
95 value |= *p++ & 0x3f;
96 if (value < 0x80)
105 value = (*p++ & 0xf) << 12;
106 value |
173 UTF8_putc(unsigned char *str, int len, unsigned long value) argument
[all...]
/freebsd-11-stable/crypto/heimdal/appl/login/
H A Dconf.c49 char *value; local
52 if(cgetstr(confbuf, (char *)str, &value) < 0)
54 return value;
/freebsd-11-stable/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-11-stable/lib/libsdp/
H A Dutil.c294 } value; local
313 SDP_GET8(value.uint8, start);
314 printf("uint8 %u\n", value.uint8);
317 SDP_GET16(value.uint16, start);
318 printf("uint16 %u\n", value.uint16);
321 SDP_GET32(value.uint32, start);
322 printf("uint32 %u\n", value.uint32);
325 SDP_GET64(value.uint64, start);
326 printf("uint64 %ju\n", value.uint64);
331 SDP_GET128(&value
[all...]
/freebsd-11-stable/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.c87 static void setenv_option(); /* execute "setenv name value" */
89 static void severity_option(); /* execute "severity value" */
140 char *value; local
150 * Separate the option into name and value parts. For backwards
151 * compatibility we ignore exactly one '=' between name and value.
154 if (*(value = curr_opt + strcspn(curr_opt, whitespace_eq))) {
155 if (*value != '=') {
156 *value++ = 0;
157 value += strspn(value, whitespac
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dbufbn.c33 buffer_put_bignum_ret(Buffer *buffer, const BIGNUM *value) argument
37 if ((ret = sshbuf_put_bignum1(buffer, value)) != 0) {
45 buffer_put_bignum(Buffer *buffer, const BIGNUM *value) argument
47 if (buffer_put_bignum_ret(buffer, value) == -1)
52 buffer_get_bignum_ret(Buffer *buffer, BIGNUM *value) argument
56 if ((ret = sshbuf_get_bignum1(buffer, value)) != 0) {
64 buffer_get_bignum(Buffer *buffer, BIGNUM *value) argument
66 if (buffer_get_bignum_ret(buffer, value) == -1)
72 buffer_put_bignum2_ret(Buffer *buffer, const BIGNUM *value) argument
76 if ((ret = sshbuf_put_bignum2(buffer, value)) !
84 buffer_put_bignum2(Buffer *buffer, const BIGNUM *value) argument
91 buffer_get_bignum2_ret(Buffer *buffer, BIGNUM *value) argument
103 buffer_get_bignum2(Buffer *buffer, BIGNUM *value) argument
[all...]
/freebsd-11-stable/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-11-stable/sys/dev/amdsmn/
H A Damdsmn.h31 int amdsmn_read(device_t dev, uint32_t addr, uint32_t *value);
32 int amdsmn_write(device_t dev, uint32_t addr, uint32_t value);
/freebsd-11-stable/contrib/netbsd-tests/lib/libbluetooth/
H A Dt_sdp_data.c51 sdp_data_t value; local
53 ATF_REQUIRE(sdp_get_data(&test, &value));
54 ATF_CHECK_EQ(sdp_data_type(&value), SDP_DATA_NIL);
56 ATF_REQUIRE(sdp_get_data(&test, &value));
57 ATF_CHECK_EQ(sdp_data_type(&value), SDP_DATA_UINT8);
91 sdp_data_t value; local
93 ATF_REQUIRE(sdp_get_data(&test, &value));
94 ATF_CHECK_EQ(sdp_data_size(&value), 1);
96 ATF_REQUIRE(sdp_get_data(&test, &value));
97 ATF_CHECK_EQ(sdp_data_size(&value),
[all...]
/freebsd-11-stable/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-11-stable/sys/contrib/ck/src/
H A Dck_barrier_centralized.c36 unsigned int sense, value; local
45 value = ck_pr_faa_uint(&barrier->value, 1);
46 if (value == n_threads - 1) {
47 ck_pr_store_uint(&barrier->value, 0);
/freebsd-11-stable/sys/dev/sfxge/common/
H A Dsiena_mac.c274 efx_qword_t value; local
287 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_PKTS, &value);
288 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_PKTS]), &value);
289 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_CONTROL_PKTS, &value);
290 EFSYS_STAT_SUBR_QWORD(&(stat[EFX_MAC_TX_PKTS]), &value);
292 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_PAUSE_PKTS, &value);
293 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_PAUSE_PKTS]), &value);
295 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_UNICAST_PKTS, &value);
296 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_UNICST_PKTS]), &value);
298 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_MULTICAST_PKTS, &value);
[all...]

Completed in 363 milliseconds

1234567891011>>