Home
last modified time | relevance | path

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

12345678910>>...212

/freebsd/usr.sbin/moused/moused/
H A Devent-names.h871 unsigned int value; member
875 { .name = "MT_TOOL_DIAL", .value = MT_TOOL_DIAL },
876 { .name = "MT_TOOL_FINGER", .value = MT_TOOL_FINGER },
877 { .name = "MT_TOOL_MAX", .value = MT_TOOL_MAX },
878 { .name = "MT_TOOL_PALM", .value = MT_TOOL_PALM },
879 { .name = "MT_TOOL_PEN", .value = MT_TOOL_PEN },
883 { .name = "EV_ABS", .value = EV_ABS },
884 { .name = "EV_FF", .value = EV_FF },
885 { .name = "EV_FF_STATUS", .value = EV_FF_STATUS },
886 { .name = "EV_KEY", .value = EV_KEY },
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/
H A Dtst.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 …]
H A Dtst.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 …]
H A Dtst.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 …]
H A Dtst.quantzero.d.out3 value ------------- Distribution ------------- count
9 value ------------- Distribution ------------- count
15 value ------------- Distribution ------------- count
21 value ------------- Distribution ------------- count
27 value ------------- Distribution ------------- count
33 value ------------- Distribution ------------- count
39 value ------------- Distribution ------------- count
45 value ------------- Distribution ------------- count
51 value ------------- Distribution ------------- count
57 value ------------- Distribution ------------- count
[all …]
/freebsd/libexec/getty/
H A Dgettytab.h38 char *value; /* value that we find there */ member
44 long value; /* number we find there */ member
52 char value; /* true/false flag */ member
59 #define NX gettystrs[0].value
60 #define CL gettystrs[1].value
61 #define IM gettystrs[2].value
62 #define LM gettystrs[3].value
63 #define ER gettystrs[4].value
64 #define KL gettystrs[5].value
65 #define ET gettystrs[6].value
[all …]
/freebsd/sys/contrib/dev/rtw88/
H A Dfw.h400 #define SET_PKT_H2C_CATEGORY(h2c_pkt, value) \ argument
401 le32p_replace_bits((__le32 *)(h2c_pkt) + 0x00, value, GENMASK(6, 0))
402 #define SET_PKT_H2C_CMD_ID(h2c_pkt, value) \ argument
403 le32p_replace_bits((__le32 *)(h2c_pkt) + 0x00, value, GENMASK(15, 8))
404 #define SET_PKT_H2C_SUB_CMD_ID(h2c_pkt, value) \ argument
405 le32p_replace_bits((__le32 *)(h2c_pkt) + 0x00, value, GENMASK(31, 16))
406 #define SET_PKT_H2C_TOTAL_LEN(h2c_pkt, value) \ argument
407 le32p_replace_bits((__le32 *)(h2c_pkt) + 0x01, value, GENMASK(15, 0))
416 #define FW_OFFLOAD_H2C_SET_SEQ_NUM(h2c_pkt, value) \ argument
417 le32p_replace_bits((__le32 *)(h2c_pkt) + 0x01, value, GENMASK(31, 16))
[all …]
/freebsd/sys/dev/cxgbe/cudbg/
H A Dcudbg_wtp.c259 u32 value; in read_sge_debug_data() local
264 value = t4_read_reg(padap, A_SGE_DEBUG_DATA_LOW); in read_sge_debug_data()
266 sge_dbg_reg[(i << 1) | 1] = HTONL_NIBBLE(value); in read_sge_debug_data()
267 value = t4_read_reg(padap, A_SGE_DEBUG_DATA_HIGH); in read_sge_debug_data()
269 sge_dbg_reg[(i << 1)] = HTONL_NIBBLE(value); in read_sge_debug_data()
281 t4_tp_mib_read(padap, &tp_mib[i].value, 1, in read_tp_mib_data()
299 u32 value = 0; in t5_wtp_data() local
332 value = t4_read_reg(padap, A_PCIE_CMDR_REQ_CNT); in t5_wtp_data()
334 wtp->pcie_core_cmd_req.sop[0] = ((value >> 0) & 0xFF); /*bit 0:7*/ in t5_wtp_data()
335 wtp->pcie_core_cmd_req.sop[1] = ((value >> 8) & 0xFF); /*bit 8:15*/ in t5_wtp_data()
[all …]
/freebsd/contrib/netbsd-tests/lib/libbluetooth/
H A Dt_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 …]
H A Dt_sdp_data.c51 sdp_data_t value; in ATF_TC_BODY() local
53 ATF_REQUIRE(sdp_get_data(&test, &value)); in ATF_TC_BODY()
54 ATF_CHECK_EQ(sdp_data_type(&value), SDP_DATA_NIL); in ATF_TC_BODY()
56 ATF_REQUIRE(sdp_get_data(&test, &value)); in ATF_TC_BODY()
57 ATF_CHECK_EQ(sdp_data_type(&value), SDP_DATA_UINT8); in ATF_TC_BODY()
91 sdp_data_t value; in ATF_TC_BODY() local
93 ATF_REQUIRE(sdp_get_data(&test, &value)); in ATF_TC_BODY()
94 ATF_CHECK_EQ(sdp_data_size(&value), 1); in ATF_TC_BODY()
96 ATF_REQUIRE(sdp_get_data(&test, &value)); in ATF_TC_BODY()
97 ATF_CHECK_EQ(sdp_data_size(&value), 2); in ATF_TC_BODY()
[all …]
/freebsd/sys/dev/sfxge/common/
H A Def10_mac.c612 efx_qword_t value; in ef10_mac_stats_update() local
651 EF10_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_PKTS, &value); in ef10_mac_stats_update()
652 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_PKTS]), &value); in ef10_mac_stats_update()
654 EF10_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_CONTROL_PKTS, &value); in ef10_mac_stats_update()
655 EFSYS_STAT_SUBR_QWORD(&(stat[EFX_MAC_TX_PKTS]), &value); in ef10_mac_stats_update()
657 EF10_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_PAUSE_PKTS, &value); in ef10_mac_stats_update()
658 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_PAUSE_PKTS]), &value); in ef10_mac_stats_update()
660 EF10_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_UNICAST_PKTS, &value); in ef10_mac_stats_update()
661 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_UNICST_PKTS]), &value); in ef10_mac_stats_update()
663 EF10_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_MULTICAST_PKTS, &value); in ef10_mac_stats_update()
[all …]
H A Dsiena_mac.c277 efx_qword_t value; in siena_mac_stats_update() local
299 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_PKTS, &value); in siena_mac_stats_update()
300 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_PKTS]), &value); in siena_mac_stats_update()
301 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_CONTROL_PKTS, &value); in siena_mac_stats_update()
302 EFSYS_STAT_SUBR_QWORD(&(stat[EFX_MAC_TX_PKTS]), &value); in siena_mac_stats_update()
304 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_PAUSE_PKTS, &value); in siena_mac_stats_update()
305 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_PAUSE_PKTS]), &value); in siena_mac_stats_update()
307 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_UNICAST_PKTS, &value); in siena_mac_stats_update()
308 EFSYS_STAT_SET_QWORD(&(stat[EFX_MAC_TX_UNICST_PKTS]), &value); in siena_mac_stats_update()
310 SIENA_MAC_STAT_READ(esmp, MC_CMD_MAC_TX_MULTICAST_PKTS, &value); in siena_mac_stats_update()
[all …]
/freebsd/lib/libsdp/
H A Dutil.c295 } value; in sdp_print() local
314 SDP_GET8(value.uint8, start); in sdp_print()
315 printf("uint8 %u\n", value.uint8); in sdp_print()
318 SDP_GET16(value.uint16, start); in sdp_print()
319 printf("uint16 %u\n", value.uint16); in sdp_print()
322 SDP_GET32(value.uint32, start); in sdp_print()
323 printf("uint32 %u\n", value.uint32); in sdp_print()
326 SDP_GET64(value.uint64, start); in sdp_print()
327 printf("uint64 %ju\n", value.uint64); in sdp_print()
332 SDP_GET128(&value.int128, start); in sdp_print()
[all …]
/freebsd/crypto/openssl/crypto/asn1/
H A Da_utf8.c31 unsigned long value; in UTF8_getc() local
39 value = *p++ & 0x7f; in UTF8_getc()
46 value = (*p++ & 0x1f) << 6; in UTF8_getc()
47 value |= *p++ & 0x3f; in UTF8_getc()
48 if (value < 0x80) in UTF8_getc()
57 value = (*p++ & 0xf) << 12; in UTF8_getc()
58 value |= (*p++ & 0x3f) << 6; in UTF8_getc()
59 value |= *p++ & 0x3f; in UTF8_getc()
60 if (value < 0x800) in UTF8_getc()
62 if (is_unicode_surrogate(value)) in UTF8_getc()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dendian_test.cpp35 uint64_t value = 1; in TEST() local
36 for (std::size_t i = 0; i <= sizeof(value); ++i) { in TEST()
37 uint8_t original_uint8 = static_cast<uint8_t>(value); in TEST()
40 uint16_t original_uint16 = static_cast<uint16_t>(value); in TEST()
44 uint32_t original_uint32 = static_cast<uint32_t>(value); in TEST()
48 uint64_t original_uint64 = static_cast<uint64_t>(value); in TEST()
52 value = (value << 8) | 0x55; // binary 0101 0101. in TEST()
59 uint64_t value = 1; in TEST() local
60 for (std::size_t i = 0; i <= sizeof(value); ++i) { in TEST()
61 int8_t original_int8 = static_cast<int8_t>(value); in TEST()
[all …]
/freebsd/contrib/libcbor/src/cbor/internal/
H A Dencoders.c12 size_t _cbor_encode_uint8(uint8_t value, unsigned char* buffer, in _cbor_encode_uint8() argument
14 if (value <= 23) { in _cbor_encode_uint8()
16 buffer[0] = value + offset; in _cbor_encode_uint8()
22 buffer[1] = value; in _cbor_encode_uint8()
29 size_t _cbor_encode_uint16(uint16_t value, unsigned char* buffer, in _cbor_encode_uint16() argument
37 memcpy(buffer + 1, &value, 2); in _cbor_encode_uint16()
39 buffer[1] = (unsigned char)(value >> 8); in _cbor_encode_uint16()
40 buffer[2] = (unsigned char)value; in _cbor_encode_uint16()
46 size_t _cbor_encode_uint32(uint32_t value, unsigned char* buffer, in _cbor_encode_uint32() argument
54 memcpy(buffer + 1, &value, 4); in _cbor_encode_uint32()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DValueTypes.td14 class ValueType<int size, int value> {
18 int Value = value;
33 class VTAny<int value> : ValueType<0, value> {
37 class VTInt<int size, int value>
38 : ValueType<size, value> {
42 class VTFP<int size, int value>
43 : ValueType<size, value> {
47 class VTVec<int nelem, ValueType elt, int value>
48 : ValueType<!mul(nelem, elt.Size), value> {
56 class VTScalableVec<int nelem, ValueType elt, int value>
[all …]
/freebsd/contrib/tcp_wrappers/
H A Doptions.c98 void (*func) (char *value, struct request_info *request);
139 char *value; in process_options() local
153 if (*(value = curr_opt + strcspn(curr_opt, whitespace_eq))) { in process_options()
154 if (*value != '=') { in process_options()
155 *value++ = 0; in process_options()
156 value += strspn(value, whitespace); in process_options()
158 if (*value == '=') { in process_options()
159 *value++ = 0; in process_options()
160 value += strspn(value, whitespace); in process_options()
163 if (*value == 0) in process_options()
[all …]
/freebsd/sys/kern/
H A Dsubr_filter.c97 tf->entries[i].value = set_val; in setup_time_filter()
128 tf->entries[i].value = set_val; in setup_time_filter_small()
136 check_update_times(struct time_filter *tf, uint64_t value, uint32_t now) in check_update_times() argument
148 tf->entries[i].value = tf->entries[j].value; in check_update_times()
156 tf->entries[i].value = value; in check_update_times()
165 tf->entries[i].value = value; in check_update_times()
171 check_update_times_small(struct time_filter_small *tf, uint32_t value, uint32_t now) in check_update_times_small() argument
183 tf->entries[i].value = tf->entries[j].value; in check_update_times_small()
191 tf->entries[i].value = value; in check_update_times_small()
200 tf->entries[i].value = value; in check_update_times_small()
[all …]
/freebsd/sys/contrib/dev/acpica/include/
H A Dacbuffer.h274 #define ACPI_PLD_SET_REVISION(dword,value) ACPI_SET_BITS (dword, 0, ACPI_7BIT_MASK, value) … argument
277 #define ACPI_PLD_SET_IGNORE_COLOR(dword,value) ACPI_SET_BITS (dword, 7, ACPI_1BIT_MASK, value) … argument
280 #define ACPI_PLD_SET_RED(dword,value) ACPI_SET_BITS (dword, 8, ACPI_8BIT_MASK, value) … argument
283 #define ACPI_PLD_SET_GREEN(dword,value) ACPI_SET_BITS (dword, 16, ACPI_8BIT_MASK, value) … argument
286 #define ACPI_PLD_SET_BLUE(dword,value) ACPI_SET_BITS (dword, 24, ACPI_8BIT_MASK, value) … argument
291 #define ACPI_PLD_SET_WIDTH(dword,value) ACPI_SET_BITS (dword, 0, ACPI_16BIT_MASK, value) … argument
294 #define ACPI_PLD_SET_HEIGHT(dword,value) ACPI_SET_BITS (dword, 16, ACPI_16BIT_MASK, value) … argument
299 #define ACPI_PLD_SET_USER_VISIBLE(dword,value) ACPI_SET_BITS (dword, 0, ACPI_1BIT_MASK, value) … argument
302 #define ACPI_PLD_SET_DOCK(dword,value) ACPI_SET_BITS (dword, 1, ACPI_1BIT_MASK, value) … argument
305 #define ACPI_PLD_SET_LID(dword,value) ACPI_SET_BITS (dword, 2, ACPI_1BIT_MASK, value) … argument
[all …]
/freebsd/sys/dev/isci/scil/
H A Dscic_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 …]
/freebsd/bin/sh/
H A Darith_yylex.c84 int value; in yylex() local
90 value = *buf; in yylex()
91 switch (value) { in yylex()
171 value = ARITH_VAR; in yylex()
174 value += ARITH_ASS - '='; in yylex()
180 value += 11; in yylex()
185 value += ARITH_GE - '>'; in yylex()
188 value += ARITH_RSHIFT - '>'; in yylex()
191 value += ARITH_GT - '>'; in yylex()
198 value += ARITH_LE - '<'; in yylex()
[all …]
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/llquantize/
H A Dtst.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 …]
/freebsd/contrib/bsnmp/snmp_mibII/
H A DmibII_interfaces.c159 op_interfaces(struct snmp_context *ctx __unused, struct snmp_value *value, in op_interfaces() argument
178 switch (value->var.subs[sub - 1]) { in op_interfaces()
181 value->v.integer = mib_if_number; in op_interfaces()
191 op_ifentry(struct snmp_context *ctx, struct snmp_value *value, in op_ifentry() argument
202 if ((ifp = NEXT_OBJECT_INT(&mibif_list, &value->var, sub)) == NULL) in op_ifentry()
204 value->var.len = sub + 1; in op_ifentry()
205 value->var.subs[sub] = ifp->index; in op_ifentry()
209 if (value->var.len - sub != 1) in op_ifentry()
211 if ((ifp = mib_find_if(value->var.subs[sub])) == NULL) in op_ifentry()
216 if (value->var.len - sub != 1) in op_ifentry()
[all …]
H A DmibII_ip.c163 op_ip(struct snmp_context *ctx, struct snmp_value *value, in op_ip() argument
181 switch (value->var.subs[sub - 1]) { in op_ip()
185 ctx->scratch->int2 = value->v.integer; in op_ip()
186 if (value->v.integer == 1) { in op_ip()
190 } else if (value->v.integer == 2) { in op_ip()
200 ctx->scratch->int2 = value->v.integer; in op_ip()
201 if (value->v.integer < 1 || value->v.integer > 255) in op_ip()
203 if (ip_defttl != value->v.integer && in op_ip()
204 ip_setttl(value->v.integer, &old)) in op_ip()
212 switch (value->var.subs[sub - 1]) { in op_ip()
[all …]

12345678910>>...212