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

1234567891011>>

/freebsd-11-stable/sys/ddb/
H A Ddb_access.h40 void db_put_value(db_addr_t addr, int size, db_expr_t value);
/freebsd-11-stable/lib/libc/stdlib/
H A Da64l.c28 int digit, i, value; local
30 value = 0;
42 value |= digit << shift;
45 return (value);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DReverseIteration.h12 return detail::IsPointerLike<T>::value;
/freebsd-11-stable/contrib/subversion/subversion/svnrdump/
H A Dutil.c45 const svn_string_t *value = apr_hash_this_val(hi);
49 SVN_ERR(svn_repos__normalize_prop(&value, NULL, key, value,
51 svn_hash_sets(*normal_props, key, svn_string_dup(value, result_pool));
44 const svn_string_t *value = apr_hash_this_val(hi); local
/freebsd-11-stable/contrib/ncurses/ncurses/widechar/
H A Dlib_get_wch.c53 int value = 0; local
70 code = _nc_wgetch(win, &value, TRUE EVENTLIST_2nd((_nc_eventlist
83 safe_ungetch(SP_PARM, value);
88 safe_ungetch(SP_PARM, value);
92 buffer[count++] = (char) UChar(value);
99 safe_ungetch(SP_PARM, value);
101 value = wch;
111 *result = (wint_t) value;
114 T(("result %#o", value));
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueEnumeration.h26 enum_type value; member in struct:lldb_private::OptionValueEnumeration::EnumeratorInfo
32 OptionValueEnumeration(const OptionEnumValues &enumerators, enum_type value);
44 SetValueFromString(llvm::StringRef value,
63 enum_type operator=(enum_type value) { argument
64 m_current_value = value;
72 void SetCurrentValue(enum_type value) { m_current_value = value; } argument
74 void SetDefaultValue(enum_type value) { m_default_value = value; } argument
H A DOptionValueChar.h18 OptionValueChar(char value) argument
19 : OptionValue(), m_current_value(value), m_default_value(value) {}
35 SetValueFromString(llvm::StringRef value,
58 void SetCurrentValue(char value) { m_current_value = value; } argument
60 void SetDefaultValue(char value) { m_default_value = value; } argument
H A DOptionValueFormat.h18 OptionValueFormat(lldb::Format value) argument
19 : OptionValue(), m_current_value(value), m_default_value(value) {}
35 SetValueFromString(llvm::StringRef value,
55 void SetCurrentValue(lldb::Format value) { m_current_value = value; } argument
57 void SetDefaultValue(lldb::Format value) { m_default_value = value; } argument
H A DOptionValueLanguage.h20 OptionValueLanguage(lldb::LanguageType value) argument
21 : OptionValue(), m_current_value(value), m_default_value(value) {}
38 SetValueFromString(llvm::StringRef value,
58 void SetCurrentValue(lldb::LanguageType value) { m_current_value = value; } argument
60 void SetDefaultValue(lldb::LanguageType value) { m_default_value = value; } argument
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-llm.h144 * Calculate the parity value of a number
146 * @param value
147 * @return parity value
149 static inline uint64_t cvmx_llm_parity(uint64_t value) argument
152 CVMX_DPOP(result, value);
160 * @param value
161 * @return ECC value
163 static inline int cvmx_llm_ecc(uint64_t value) argument
179 pop0 &= value;
183 pop1 &= value;
223 cvmx_llm_write_narrow(cvmx_llm_address_t address, uint64_t value, int set) argument
256 cvmx_llm_write_wide(cvmx_llm_address_t address, uint64_t value, int set) argument
284 cvmx_llm_data_t value; local
312 uint64_t value; local
[all...]
/freebsd-11-stable/lib/libdpv/
H A Ddialogrc.c108 * figpar call-back for interpreting value as .dialogrc `Attribute'
112 char *directive __unused, char *value)
114 char *cp = value;
126 if (option->value.str == NULL) {
127 if ((option->value.str = malloc(STR_BUFSIZE)) == NULL)
137 /* Copy the [current] value from the referenced color */
138 val = dialogrc_config_option(cp)->value.str;
140 snprintf(option->value.str, STR_BUFSIZE, "%s", val);
198 sprintf(option->value.str, "%s", attrbuf);
204 * figpar call-back for interpreting value a
111 setattr(struct figpar_config *option, uint32_t line __unused, char *directive __unused, char *value) argument
207 setbool(struct figpar_config *option, uint32_t line __unused, char *directive __unused, char *value) argument
230 setnum(struct figpar_config *option, uint32_t line __unused, char *directive __unused, char *value) argument
250 setstr(struct figpar_config *option, uint32_t line __unused, char *directive __unused, char *value) argument
348 char *value; local
[all...]
/freebsd-11-stable/contrib/llvm-project/libunwind/src/
H A DDwarfInstructions.hpp84 return (pint_t)addressSpace.getRegister(cfa + (pint_t)savedReg.value);
88 (pint_t)savedReg.value, addressSpace, registers, cfa));
91 return evaluateExpression((pint_t)savedReg.value, addressSpace,
95 return registers.getRegister((int)savedReg.value);
111 return addressSpace.getDouble(cfa + (pint_t)savedReg.value);
115 evaluateExpression((pint_t)savedReg.value, addressSpace,
134 return addressSpace.getVector(cfa + (pint_t)savedReg.value);
138 evaluateExpression((pint_t)savedReg.value, addressSpace,
209 prolog.savedRegisters[UNW_ARM64_RA_SIGN_STATE].value) {
301 pint_t value; local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h33 Flags(uint32_t value) : m_flags(value) {} argument
56 Flags &SetCascades(bool value = true) {
57 if (value)
69 Flags &SetSkipPointers(bool value = true) {
70 if (value)
82 Flags &SetSkipReferences(bool value = true) {
83 if (value)
95 Flags &SetNonCacheable(bool value = true) {
96 if (value)
105 SetValue(uint32_t value) argument
125 SetCascades(bool value) argument
127 SetSkipsPointers(bool value) argument
129 SetSkipsReferences(bool value) argument
131 SetNonCacheable(bool value) argument
135 SetOptions(uint32_t value) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DDataEncoder.cpp108 uint32_t DataEncoder::PutU8(uint32_t offset, uint8_t value) { argument
110 m_start[offset] = value;
116 uint32_t DataEncoder::PutU16(uint32_t offset, uint16_t value) { argument
117 if (ValidOffsetForDataOfSize(offset, sizeof(value))) {
119 write16be(m_start + offset, value);
121 write16le(m_start + offset, value);
123 return offset + sizeof(value);
128 uint32_t DataEncoder::PutU32(uint32_t offset, uint32_t value) { argument
129 if (ValidOffsetForDataOfSize(offset, sizeof(value))) {
131 write32be(m_start + offset, value);
140 PutU64(uint32_t offset, uint64_t value) argument
152 PutUnsigned(uint32_t offset, uint32_t byte_size, uint64_t value) argument
[all...]
/freebsd-11-stable/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-stable/usr.sbin/bluetooth/sdpcontrol/
H A Dsearch.c79 uint32_t type, len, value; local
118 SDP_GET16(value, start);
120 sdp_uuid2desc(value), value);
124 SDP_GET32(value, start);
125 fprintf(stdout, "\t%#8.8x\n", value);
174 } value; local
181 SDP_GET16(value.uint16, start);
182 fprintf(stdout, "\t%s (%#4.4x)\n", sdp_uuid2desc(value.uint16),
183 value
413 uint32_t type, len, value; local
533 int32_t n, type, value; local
[all...]
/freebsd-11-stable/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-stable/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-stable/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-stable/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-stable/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);
/freebsd-11-stable/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-stable/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-stable/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);

Completed in 350 milliseconds

1234567891011>>