Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 3866) sorted by relevance

12345678910>>...155

/NextBSD/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
HDtst.lquantzero.d.out4 value ------------- Distribution ------------- count
9 value ------------- Distribution ------------- count
14 value ------------- Distribution ------------- count
19 value ------------- Distribution ------------- count
24 value ------------- Distribution ------------- count
29 value ------------- Distribution ------------- count
34 value ------------- Distribution ------------- count
39 value ------------- Distribution ------------- count
44 value ------------- Distribution ------------- count
49 value ------------- Distribution ------------- count
[all …]
HDtst.negorder.d.out4 value ------------- Distribution ------------- count
10 value ------------- Distribution ------------- count
16 value ------------- Distribution ------------- count
22 value ------------- Distribution ------------- count
28 value ------------- Distribution ------------- count
34 value ------------- Distribution ------------- count
40 value ------------- Distribution ------------- count
46 value ------------- Distribution ------------- count
52 value ------------- Distribution ------------- count
58 value ------------- Distribution ------------- count
[all …]
HDtst.quantmany.d.out3 value ------------- Distribution ------------- count
10 value ------------- Distribution ------------- count
21 value ------------- Distribution ------------- count
34 value ------------- Distribution ------------- count
49 value ------------- Distribution ------------- count
66 value ------------- Distribution ------------- count
85 value ------------- Distribution ------------- count
106 value ------------- Distribution ------------- count
129 value ------------- Distribution ------------- count
154 value ------------- Distribution ------------- count
[all …]
/NextBSD/contrib/jansson/test/suites/api/
HDtest_simple.c15 json_t *value; in run_tests() local
17 value = json_boolean(1); in run_tests()
18 if(!json_is_true(value)) in run_tests()
20 json_decref(value); in run_tests()
22 value = json_boolean(-123); in run_tests()
23 if(!json_is_true(value)) in run_tests()
25 json_decref(value); in run_tests()
27 value = json_boolean(0); in run_tests()
28 if(!json_is_false(value)) in run_tests()
30 if(json_boolean_value(value) != 0) in run_tests()
[all …]
HDtest_pack.c22 json_t *value; in run_tests() local
31 value = json_pack("b", 1); in run_tests()
32 if(!json_is_true(value)) in run_tests()
34 if(value->refcount != (size_t)-1) in run_tests()
36 json_decref(value); in run_tests()
39 value = json_pack("b", 0); in run_tests()
40 if(!json_is_false(value)) in run_tests()
42 if(value->refcount != (size_t)-1) in run_tests()
44 json_decref(value); in run_tests()
47 value = json_pack("n"); in run_tests()
[all …]
HDtest_copy.c14 json_t *value, *copy; in test_copy_simple() local
20 value = json_true(); in test_copy_simple()
21 copy = json_copy(value); in test_copy_simple()
22 if(value != copy) in test_copy_simple()
24 json_decref(value); in test_copy_simple()
28 value = json_false(); in test_copy_simple()
29 copy = json_copy(value); in test_copy_simple()
30 if(value != copy) in test_copy_simple()
32 json_decref(value); in test_copy_simple()
36 value = json_null(); in test_copy_simple()
[all …]
/NextBSD/libexec/getty/
HDgettytab.h39 char *value; /* value that we find there */ member
45 long value; /* number we find there */ member
53 char value; /* true/false flag */ member
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
65 #define KL gettystrs[5].value
66 #define ET gettystrs[6].value
[all …]
/NextBSD/crypto/openssl/crypto/asn1/
HDa_utf8.c79 unsigned long value; in UTF8_getc() local
87 value = *p++ & 0x7f; in UTF8_getc()
94 value = (*p++ & 0x1f) << 6; in UTF8_getc()
95 value |= *p++ & 0x3f; in UTF8_getc()
96 if (value < 0x80) in UTF8_getc()
105 value = (*p++ & 0xf) << 12; in UTF8_getc()
106 value |= (*p++ & 0x3f) << 6; in UTF8_getc()
107 value |= *p++ & 0x3f; in UTF8_getc()
108 if (value < 0x800) in UTF8_getc()
118 value = ((unsigned long)(*p++ & 0x7)) << 18; in UTF8_getc()
[all …]
/NextBSD/sys/dev/sfxge/common/
HDhunt_mac.c377 efx_qword_t value; in hunt_mac_stats_update() local
390 HUNT_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_PKTS, &value); in hunt_mac_stats_update()
391 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_PKTS]), &value); in hunt_mac_stats_update()
393 HUNT_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_CONTROL_PKTS, &value); in hunt_mac_stats_update()
394 EFSYS_STAT_SUBR_QWORD(&(stat[EFX_MAC_TX_PKTS]), &value); in hunt_mac_stats_update()
396 HUNT_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_PAUSE_PKTS, &value); in hunt_mac_stats_update()
397 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_PAUSE_PKTS]), &value); in hunt_mac_stats_update()
399 HUNT_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_UNICAST_PKTS, &value); in hunt_mac_stats_update()
400 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_UNICST_PKTS]), &value); in hunt_mac_stats_update()
402 HUNT_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_MULTICAST_PKTS, &value); in hunt_mac_stats_update()
[all …]
HDsiena_mac.c240 efx_qword_t value; in siena_mac_stats_update() local
253 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_PKTS, &value); in siena_mac_stats_update()
254 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_PKTS]), &value); in siena_mac_stats_update()
255 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_CONTROL_PKTS, &value); in siena_mac_stats_update()
256 EFSYS_STAT_SUBR_QWORD(&(stat[EFX_MAC_TX_PKTS]), &value); in siena_mac_stats_update()
258 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_PAUSE_PKTS, &value); in siena_mac_stats_update()
259 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_PAUSE_PKTS]), &value); in siena_mac_stats_update()
261 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_UNICAST_PKTS, &value); in siena_mac_stats_update()
262 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_UNICST_PKTS]), &value); in siena_mac_stats_update()
264 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_MULTICAST_PKTS, &value); in siena_mac_stats_update()
[all …]
/NextBSD/contrib/gdb/gdb/
HDvalue.h42 struct value struct
139 struct value *next; argument
217 extern int value_fetch_lazy (struct value *val);
284 struct value *value; member
303 extern LONGEST value_as_long (struct value *val);
304 extern DOUBLEST value_as_double (struct value *val);
305 extern CORE_ADDR value_as_address (struct value *val);
314 extern struct value *value_from_longest (struct type *type, LONGEST num);
315 extern struct value *value_from_pointer (struct type *type, CORE_ADDR addr);
316 extern struct value *value_from_double (struct type *type, DOUBLEST num);
[all …]
HDax-gdb.c64 static struct value *const_var_ref (struct symbol *var);
65 static struct value *const_expr (union exp_element **pc);
66 static struct value *maybe_const_expr (union exp_element **pc);
81 struct axs_value *value, struct symbol *var);
85 struct axs_value *value,
89 static void require_rvalue (struct agent_expr *ax, struct axs_value *value);
90 static void gen_usual_unary (struct agent_expr *ax, struct axs_value *value);
100 struct axs_value *value);
102 struct axs_value *value, struct type *type);
106 struct axs_value *value,
[all …]
/NextBSD/contrib/netbsd-tests/lib/libbluetooth/
HDt_sdp_get.c59 sdp_data_t value, seq; in ATF_TC_BODY() local
65 ATF_REQUIRE(sdp_get_data(&test, &value)); in ATF_TC_BODY()
66 ATF_CHECK_EQ(sdp_data_type(&value), SDP_DATA_UINT16); in ATF_TC_BODY()
67 ATF_CHECK_EQ(sdp_data_size(&value), 3); in ATF_TC_BODY()
69 ATF_REQUIRE(sdp_get_data(&test, &value)); in ATF_TC_BODY()
70 ATF_CHECK_EQ(sdp_data_type(&value), SDP_DATA_SEQ8); in ATF_TC_BODY()
71 ATF_CHECK_EQ(sdp_data_size(&value), 7); in ATF_TC_BODY()
73 ATF_REQUIRE(sdp_get_data(&test, &value)); in ATF_TC_BODY()
74 ATF_CHECK_EQ(sdp_data_type(&value), SDP_DATA_SEQ16); in ATF_TC_BODY()
75 ATF_CHECK_EQ(sdp_data_size(&value), 4); in ATF_TC_BODY()
[all …]
/NextBSD/cddl/contrib/dtracetoolkit/Examples/
HDpy_calldist_example.txt25 value ------------- Distribution ------------- count
31 value ------------- Distribution ------------- count
37 value ------------- Distribution ------------- count
43 value ------------- Distribution ------------- count
49 value ------------- Distribution ------------- count
55 value ------------- Distribution ------------- count
61 value ------------- Distribution ------------- count
67 value ------------- Distribution ------------- count
73 value ------------- Distribution ------------- count
79 value ------------- Distribution ------------- count
[all …]
HDpy_cpudist_example.txt13 value ------------- Distribution ------------- count
19 value ------------- Distribution ------------- count
25 value ------------- Distribution ------------- count
31 value ------------- Distribution ------------- count
37 value ------------- Distribution ------------- count
43 value ------------- Distribution ------------- count
49 value ------------- Distribution ------------- count
55 value ------------- Distribution ------------- count
61 value ------------- Distribution ------------- count
67 value ------------- Distribution ------------- count
[all …]
HDj_objnew_example.txt16 value ------------- Distribution ------------- count
22 value ------------- Distribution ------------- count
28 value ------------- Distribution ------------- count
34 value ------------- Distribution ------------- count
40 value ------------- Distribution ------------- count
46 value ------------- Distribution ------------- count
52 value ------------- Distribution ------------- count
58 value ------------- Distribution ------------- count
64 value ------------- Distribution ------------- count
70 value ------------- Distribution ------------- count
[all …]
/NextBSD/contrib/binutils/opcodes/
HDmep-ibld.c81 unsigned long value, in insert_1() argument
98 x = (x & ~(mask << shift)) | ((value & mask) << shift); in insert_1()
123 long value, in insert_normal() argument
158 if ((value > 0 && (unsigned long) value > maxval) in insert_normal()
159 || value < minval) in insert_normal()
164 value, minval, maxval); in insert_normal()
171 unsigned long val = (unsigned long) value; in insert_normal()
177 if (sizeof (unsigned long) > 4 && ((value >> 32) == -1)) in insert_normal()
196 if (value < minval || value > maxval) in insert_normal()
201 value, minval, maxval); in insert_normal()
[all …]
/NextBSD/lib/libsdp/
HDutil.c294 } value; in sdp_print() local
313 SDP_GET8(value.uint8, start); in sdp_print()
314 printf("uint8 %u\n", value.uint8); in sdp_print()
317 SDP_GET16(value.uint16, start); in sdp_print()
318 printf("uint16 %u\n", value.uint16); in sdp_print()
321 SDP_GET32(value.uint32, start); in sdp_print()
322 printf("uint32 %u\n", value.uint32); in sdp_print()
325 SDP_GET64(value.uint64, start); in sdp_print()
326 printf("uint64 %ju\n", value.uint64); in sdp_print()
331 SDP_GET128(&value.int128, start); in sdp_print()
[all …]
/NextBSD/contrib/tcp_wrappers/
HDoptions.c140 char *value; local
154 if (*(value = curr_opt + strcspn(curr_opt, whitespace_eq))) {
155 if (*value != '=') {
156 *value++ = 0;
157 value += strspn(value, whitespace);
159 if (*value == '=') {
160 *value++ = 0;
161 value += strspn(value, whitespace);
164 if (*value == 0)
165 value = 0;
[all …]
/NextBSD/sys/contrib/octeon-sdk/
HDcvmx-fau.h94 int64_t value : 63; member
105 int32_t value : 31; member
116 int16_t value : 15; member
127 int8_t value : 7; member
179 static inline uint64_t __cvmx_fau_atomic_address(uint64_t tagwait, uint64_t reg, int64_t value) in __cvmx_fau_atomic_address() argument
182 cvmx_build_bits(CVMX_FAU_BITS_INEVAL, value) | in __cvmx_fau_atomic_address()
196 static inline int64_t cvmx_fau_fetch_and_add64(cvmx_fau_reg_64_t reg, int64_t value) in cvmx_fau_fetch_and_add64() argument
198 return cvmx_read64_int64(__cvmx_fau_atomic_address(0, reg, value)); in cvmx_fau_fetch_and_add64()
210 static inline int32_t cvmx_fau_fetch_and_add32(cvmx_fau_reg_32_t reg, int32_t value) in cvmx_fau_fetch_and_add32() argument
212 return cvmx_read64_int32(__cvmx_fau_atomic_address(0, reg, value)); in cvmx_fau_fetch_and_add32()
[all …]
/NextBSD/sys/contrib/dev/acpica/include/
HDacbuffer.h166 #define ACPI_PLD_SET_REVISION(dword,value) ACPI_SET_BITS (dword, 0, ACPI_7BIT_MASK, value) … argument
169 #define ACPI_PLD_SET_IGNORE_COLOR(dword,value) ACPI_SET_BITS (dword, 7, ACPI_1BIT_MASK, value) … argument
172 #define ACPI_PLD_SET_RED(dword,value) ACPI_SET_BITS (dword, 8, ACPI_8BIT_MASK, value) … argument
175 #define ACPI_PLD_SET_GREEN(dword,value) ACPI_SET_BITS (dword, 16, ACPI_8BIT_MASK, value) … argument
178 #define ACPI_PLD_SET_BLUE(dword,value) ACPI_SET_BITS (dword, 24, ACPI_8BIT_MASK, value) … argument
183 #define ACPI_PLD_SET_WIDTH(dword,value) ACPI_SET_BITS (dword, 0, ACPI_16BIT_MASK, value) … argument
186 #define ACPI_PLD_SET_HEIGHT(dword,value) ACPI_SET_BITS (dword, 16, ACPI_16BIT_MASK, value) … argument
191 #define ACPI_PLD_SET_USER_VISIBLE(dword,value) ACPI_SET_BITS (dword, 0, ACPI_1BIT_MASK, value) … argument
194 #define ACPI_PLD_SET_DOCK(dword,value) ACPI_SET_BITS (dword, 1, ACPI_1BIT_MASK, value) … argument
197 #define ACPI_PLD_SET_LID(dword,value) ACPI_SET_BITS (dword, 2, ACPI_1BIT_MASK, value) … argument
[all …]
/NextBSD/contrib/libc++/include/experimental/
Dtype_traits26 = is_void<T>::value;
28 = is_null_pointer<T>::value;
30 = is_integral<T>::value;
32 = is_floating_point<T>::value;
34 = is_array<T>::value;
36 = is_pointer<T>::value;
38 = is_lvalue_reference<T>::value;
40 = is_rvalue_reference<T>::value;
42 = is_member_object_pointer<T>::value;
44 = is_member_function_pointer<T>::value;
[all …]
/NextBSD/sys/dev/isci/scil/
HDscic_sds_controller_registers.h81 #define scic_sds_controller_smu_register_write(controller, reg, value) \ argument
85 (value) \
93 #define scu_afe_register_write(controller, reg, value) \ argument
97 (value) \
117 #define scu_sgpio_peg0_register_write(controller, reg, value) \ argument
121 (value) \
129 #define scu_controller_viit_register_write(controller, index, reg, value) \ argument
133 value \
146 #define scu_controller_scratch_ram_register_write(controller, index, value) \ argument
150 value \
[all …]
/NextBSD/contrib/bsnmp/snmp_mibII/
HDmibII_ip.c151 op_ip(struct snmp_context *ctx, struct snmp_value *value, in op_ip() argument
169 switch (value->var.subs[sub - 1]) { in op_ip()
173 ctx->scratch->int2 = value->v.integer; in op_ip()
174 if (value->v.integer == 1) { in op_ip()
178 } else if (value->v.integer == 2) { in op_ip()
188 ctx->scratch->int2 = value->v.integer; in op_ip()
189 if (value->v.integer < 1 || value->v.integer > 255) in op_ip()
191 if (ip_defttl != value->v.integer && in op_ip()
192 ip_setttl(value->v.integer, &old)) in op_ip()
200 switch (value->var.subs[sub - 1]) { in op_ip()
[all …]
/NextBSD/contrib/llvm/include/llvm/CodeGen/
HDValueTypes.td16 class ValueType<int size, int value> {
19 int Value = value;
22 def OtherVT: ValueType<0 , 0>; // "Other" value
23 def i1 : ValueType<1 , 1>; // One bit boolean value
24 def i8 : ValueType<8 , 2>; // 8-bit integer value
25 def i16 : ValueType<16 , 3>; // 16-bit integer value
26 def i32 : ValueType<32 , 4>; // 32-bit integer value
27 def i64 : ValueType<64 , 5>; // 64-bit integer value
28 def i128 : ValueType<128, 6>; // 128-bit integer value
29 def f16 : ValueType<16 , 7>; // 16-bit floating point value
[all …]

12345678910>>...155