Searched refs:value (Results 101 - 125 of 3402) sorted by relevance

1234567891011>>

/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h44 Flags (uint32_t value) : argument
45 m_flags (value)
78 SetCascades (bool value = true)
80 if (value)
94 SetSkipPointers (bool value = true)
96 if (value)
110 SetSkipReferences (bool value = true)
112 if (value)
126 SetNonCacheable (bool value = true)
128 if (value)
142 SetValue(uint32_t value) argument
182 SetCascades(bool value) argument
188 SetSkipsPointers(bool value) argument
194 SetSkipsReferences(bool value) argument
200 SetNonCacheable(bool value) argument
212 SetOptions(uint32_t value) argument
[all...]
H A DTypeValidator.h43 Flags (uint32_t value) : argument
44 m_flags (value)
77 SetCascades (bool value = true)
79 if (value)
93 SetSkipPointers (bool value = true)
95 if (value)
109 SetSkipReferences (bool value = true)
111 if (value)
125 SetNonCacheable (bool value = true)
127 if (value)
141 SetValue(uint32_t value) argument
178 SetCascades(bool value) argument
184 SetSkipsPointers(bool value) argument
190 SetSkipsReferences(bool value) argument
196 SetNonCacheable(bool value) argument
208 SetOptions(uint32_t value) argument
[all...]
/freebsd-11.0-release/contrib/llvm/projects/libunwind/src/
H A DDwarfInstructions.hpp86 return addressSpace.getP(cfa + (pint_t)savedReg.value);
90 evaluateExpression((pint_t)savedReg.value, addressSpace,
94 return evaluateExpression((pint_t)savedReg.value, addressSpace,
98 return registers.getRegister((int)savedReg.value);
114 return addressSpace.getDouble(cfa + (pint_t)savedReg.value);
118 evaluateExpression((pint_t)savedReg.value, addressSpace,
137 return addressSpace.getVector(cfa + (pint_t)savedReg.value);
141 evaluateExpression((pint_t)savedReg.value, addressSpace,
240 pint_t value; local
244 // push immediate address sized value
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DDataEncoder.cpp24 WriteInt16(unsigned char* ptr, unsigned offset, uint16_t value) argument
26 *(uint16_t *)(ptr + offset) = value;
29 WriteInt32 (unsigned char* ptr, unsigned offset, uint32_t value) argument
31 *(uint32_t *)(ptr + offset) = value;
35 WriteInt64(unsigned char* ptr, unsigned offset, uint64_t value) argument
37 *(uint64_t *)(ptr + offset) = value;
41 WriteSwappedInt16(unsigned char* ptr, unsigned offset, uint16_t value) argument
43 *(uint16_t *)(ptr + offset) = llvm::ByteSwap_16(value);
47 WriteSwappedInt32 (unsigned char* ptr, unsigned offset, uint32_t value) argument
49 *(uint32_t *)(ptr + offset) = llvm::ByteSwap_32(value);
53 WriteSwappedInt64(unsigned char* ptr, unsigned offset, uint64_t value) argument
228 PutU8(uint32_t offset, uint8_t value) argument
239 PutU16(uint32_t offset, uint16_t value) argument
254 PutU32(uint32_t offset, uint32_t value) argument
269 PutU64(uint32_t offset, uint64_t value) argument
294 PutMaxU64(uint32_t offset, uint32_t byte_size, uint64_t value) argument
[all...]
/freebsd-11.0-release/sys/dev/isci/scil/
H A Dsati_util.h107 #define sati_set_ata_status(the_reg_fis, value) \
108 ((SATA_FIS_REG_D2H_T*)(the_reg_fis))->status = (value)
109 #define sati_set_sata_fis_type(the_reg_fis, value) \
110 ((SATA_FIS_REG_H2D_T*)(the_reg_fis))->fis_type = (value)
116 #define sati_set_ata_command(the_reg_fis, value) \
117 ((SATA_FIS_REG_H2D_T*)(the_reg_fis))->command = (value)
118 #define sati_set_ata_features(the_reg_fis, value) \
119 ((SATA_FIS_REG_H2D_T*)(the_reg_fis))->features = (value)
120 #define sati_set_ata_features_exp(the_reg_fis, value) \
121 ((SATA_FIS_REG_H2D_T*)(the_reg_fis))->features_exp = (value)
[all...]
/freebsd-11.0-release/tools/regression/geom_gpt/
H A Dtest.c42 char *value; member in struct:retval
51 fprintf(stdout, "usage: %s [-v] param[:len][=value] ...\n",
57 parse(char *arg, char **param, char **value, int *len) argument
88 *value = malloc(*len);
89 if (*value == NULL)
91 memset(*value, 0, *len);
95 strcpy(*value, equal);
102 *value = equal;
112 char *param, *value; local
133 if (!parse(argv[optind++], &param, &value,
[all...]
/freebsd-11.0-release/usr.sbin/bluetooth/sdpcontrol/
H A Dsearch.c77 uint32_t type, len, value; local
116 SDP_GET16(value, start);
118 sdp_uuid2desc(value), value);
122 SDP_GET32(value, start);
123 fprintf(stdout, "\t%#8.8x\n", value);
172 } value; local
179 SDP_GET16(value.uint16, start);
180 fprintf(stdout, "\t%s (%#4.4x)\n", sdp_uuid2desc(value.uint16),
181 value
411 uint32_t type, len, value; local
531 int32_t n, type, value; local
[all...]
/freebsd-11.0-release/tools/tools/nxge/
H A Dxge_log.c54 statsInfo[index].value =
59 statsInfo[index].value =
64 statsInfo[index].value =
71 statsInfo[index].value);
96 pciconfInfo[index].value = *((u16 *)((unsigned char *)pci_conf +
99 GET_OFFSET_PCICONF(index), pciconfInfo[index].value);
127 devconfInfo[index].value = *((u32 *)((unsigned char *)dev_conf +
130 devconfInfo[index].value);
158 regInfo[index].value = *((u64 *)((unsigned char *)registers +
161 regInfo[index].offset, regInfo[index].value);
178 xge_print_register(u64 offset, u64 value) argument
[all...]
/freebsd-11.0-release/contrib/bsnmp/snmp_mibII/
H A DmibII_tcp.c185 op_tcp(struct snmp_context *ctx __unused, struct snmp_value *value, argument
208 switch (value->var.subs[sub - 1]) {
211 value->v.integer = 4; /* Van Jacobson */
217 value->v.integer = 1000 * TCPTV_MIN / hz;
221 value->v.integer = 1000 * TCPTV_REXMTMAX / hz;
226 value->v.integer = -1;
230 value->v.uint32 = tcpstat.tcps_connattempt;
234 value->v.uint32 = tcpstat.tcps_accepts;
238 value->v.uint32 = tcpstat.tcps_conndrops;
242 value
273 op_tcpconn(struct snmp_context *ctx __unused, struct snmp_value *value, u_int sub, u_int iidx __unused, enum snmp_op op) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueArch.h40 OptionValueArch (const ArchSpec &value) : argument
42 m_current_value (value),
43 m_default_value (value)
73 SetValueFromString(llvm::StringRef value,
118 SetCurrentValue (const ArchSpec &value, bool set_value_was_set) argument
120 m_current_value = value;
126 SetDefaultValue (const ArchSpec &value) argument
128 m_default_value = value;
H A DOptionValueBoolean.h24 OptionValueBoolean (bool value) : argument
26 m_current_value (value),
27 m_default_value (value)
56 SetValueFromString(llvm::StringRef value,
119 SetCurrentValue (bool value) argument
121 m_current_value = value;
125 SetDefaultValue (bool value) argument
127 m_default_value = value;
H A DOptionValueFormat.h24 OptionValueFormat (lldb::Format value) : argument
26 m_current_value (value),
27 m_default_value (value)
57 SetValueFromString(llvm::StringRef value,
88 SetCurrentValue (lldb::Format value) argument
90 m_current_value = value;
94 SetDefaultValue (lldb::Format value) argument
96 m_default_value = value;
H A DOptionValueLanguage.h25 OptionValueLanguage (lldb::LanguageType value) : argument
27 m_current_value (value),
28 m_default_value (value)
58 SetValueFromString (llvm::StringRef value, VarSetOperationType op = eVarSetOperationAssign) override;
88 SetCurrentValue (lldb::LanguageType value) argument
90 m_current_value = value;
94 SetDefaultValue (lldb::LanguageType value) argument
96 m_default_value = value;
/freebsd-11.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dtoken.c2 * token.c : value/string-token functions
33 int value)
36 if (map->val == value)
48 int value = svn_token__from_word(map, word); local
50 if (value == SVN_TOKEN_UNKNOWN)
53 return value;
58 svn_token__from_word_err(int *value, argument
62 *value = svn_token__from_word(map, word);
64 if (*value == SVN_TOKEN_UNKNOWN)
32 svn_token__to_word(const svn_token_map_t *map, int value) argument
/freebsd-11.0-release/contrib/gcclibs/libgomp/config/linux/
H A Dsem.h37 static inline void gomp_sem_init (gomp_sem_t *sem, int value) argument
39 *sem = value;
/freebsd-11.0-release/contrib/gcclibs/libgomp/config/posix/
H A Dsem.c41 void gomp_sem_init (gomp_sem_t *sem, int value) argument
53 sem->value = value;
64 if (sem->value > 0)
66 sem->value--;
71 while (sem->value <= 0)
81 sem->value--;
94 sem->value++;
122 It is expected that the return value here is -1 and errno is EINTR. */
/freebsd-11.0-release/contrib/gdb/gdb/
H A Dcp-abi.h30 struct value;
54 Actually, return an `enum ctor_kind' value describing what *kind*
76 Actually, return an `enum dtor_kind' value describing what *kind*
90 /* Return an object's virtual function as a value.
92 VALUEP is a pointer to a pointer to a value, holding the object
106 extern struct value *value_virtual_fn_field (struct value **valuep,
134 extern struct type *value_rtti_type (struct value *value,
139 for value a
[all...]
H A Duser-regs.h54 /* Return the value of the frame register in the specified frame.
56 Note; These methods return a "struct value" instead of the raw
60 typedef struct value *(user_reg_read_ftype) (struct frame_info *frame);
61 extern struct value *value_of_user_reg (int regnum, struct frame_info *frame);
H A Djv-lang.h24 struct value;
47 extern int java_value_print (struct value *, struct ui_file *, int,
50 extern struct value *java_class_from_object (struct value *);
52 extern struct type *type_from_class (struct value *);
/freebsd-11.0-release/contrib/apr/include/
H A Dapr_env.h37 * Get the value of an environment variable
38 * @param value the returned value, allocated from @a pool
40 * @param pool where to allocate @a value and any temporary storage from
42 APR_DECLARE(apr_status_t) apr_env_get(char **value, const char *envvar,
46 * Set the value of an environment variable
48 * @param value the value to set
51 APR_DECLARE(apr_status_t) apr_env_set(const char *envvar, const char *value,
/freebsd-11.0-release/sys/dev/e1000/
H A De1000_osdep.c44 e1000_write_pci_cfg(struct e1000_hw *hw, u32 reg, u16 *value) argument
46 pci_write_config(((struct e1000_osdep *)hw->back)->dev, reg, *value, 2);
50 e1000_read_pci_cfg(struct e1000_hw *hw, u32 reg, u16 *value) argument
52 *value = pci_read_config(((struct e1000_osdep *)hw->back)->dev, reg, 2);
73 e1000_read_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value) argument
79 *value = pci_read_config(dev, offset + reg, 2);
87 e1000_write_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value) argument
93 pci_write_config(dev, offset + reg, *value, 2);
/freebsd-11.0-release/contrib/ntp/lib/isc/tests/
H A Dsymtab_test.c33 undefine(char *key, unsigned int type, isc_symvalue_t value, void *arg) { argument
38 isc_mem_free(mctx, value.as_pointer);
52 isc_symvalue_t value; local
77 value.as_pointer = isc_mem_strdup(mctx, str);
78 ATF_REQUIRE(value.as_pointer != NULL);
79 result = isc_symtab_define(st, key, 1, value, policy);
82 undefine(key, 1, value, NULL);
94 value.as_pointer = isc_mem_strdup(mctx, str);
95 ATF_REQUIRE(value.as_pointer != NULL);
96 result = isc_symtab_define(st, key, 1, value, polic
[all...]
/freebsd-11.0-release/crypto/heimdal/lib/hdb/
H A Dcommon.c62 hdb_entry2value(krb5_context context, const hdb_entry *ent, krb5_data *value) argument
67 ASN1_MALLOC_ENCODE(hdb_entry, value->data, value->length, ent, &len, ret);
68 if (ret == 0 && value->length != len)
74 hdb_value2entry(krb5_context context, krb5_data *value, hdb_entry *ent) argument
76 return decode_hdb_entry(value->data, value->length, ent, NULL);
82 krb5_data *value)
87 ASN1_MALLOC_ENCODE(hdb_entry_alias, value->data, value
80 hdb_entry_alias2value(krb5_context context, const hdb_entry_alias *alias, krb5_data *value) argument
95 hdb_value2entry_alias(krb5_context context, krb5_data *value, hdb_entry_alias *ent) argument
106 krb5_data key, value; local
173 krb5_data value; local
213 krb5_data key, value; local
254 krb5_data akey, value; local
284 krb5_data key, value; local
[all...]
/freebsd-11.0-release/sys/arm/amlogic/aml8726/
H A Daml8726_usb_phy-m3.c175 uint32_t value; local
244 value = CSR_READ_4(sc, AML_USB_PHY_CFG_REG);
246 value &= ~(AML_USB_PHY_CFG_CLK_DIV_MASK | AML_USB_PHY_CFG_CLK_SEL_MASK);
248 value &= ~(AML_USB_PHY_CFG_A_RST | AML_USB_PHY_CFG_B_RST);
249 value &= ~(AML_USB_PHY_CFG_A_PLL_RST | AML_USB_PHY_CFG_B_PLL_RST);
250 value &= ~(AML_USB_PHY_CFG_A_PHYS_RST | AML_USB_PHY_CFG_B_PHYS_RST);
251 value &= ~(AML_USB_PHY_CFG_A_POR | AML_USB_PHY_CFG_B_POR);
253 value |= AML_USB_PHY_CFG_CLK_SEL_XTAL;
254 value |= ((div - 1) << AML_USB_PHY_CFG_CLK_DIV_SHIFT) &
256 value |
381 uint32_t value; local
[all...]
/freebsd-11.0-release/crypto/heimdal/lib/gssapi/mech/
H A Dgss_display_name.c55 if (name->gn_value.value) {
56 output_name_buffer->value = malloc(name->gn_value.length);
57 if (!output_name_buffer->value) {
62 memcpy(output_name_buffer->value, name->gn_value.value,

Completed in 303 milliseconds

1234567891011>>