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

1234567891011>>

/haiku/src/apps/haikudepot/util/
H A DCollector.h15 virtual void Add(T value) = 0;
28 virtual void Add(T value) { argument
29 fTarget.push_back(value);
/haiku/src/libs/icon/flat_icon/
H A DFlatIconFormat.cpp28 uint8 value; local
29 if (!buffer.Read(value))
32 if (value & 128) {
37 value &= 127;
38 uint16 coordValue = (value << 8) | lowValue;
42 coord = (float)value - 32.0;
60 uint8 value = (uint8)(coord + 32.0); local
61 return buffer.Write(value);
64 uint16 value = (uint16)((coord + 128.0) * 102.0); local
66 value |
[all...]
/haiku/src/add-ons/kernel/bus_managers/pci/
H A Dpci_io.cpp31 pci_write_io_8(int mapped_io_addr, uint8 value) argument
33 out8(value, mapped_io_addr);
45 pci_write_io_16(int mapped_io_addr, uint16 value) argument
47 out16(value, mapped_io_addr);
59 pci_write_io_32(int mapped_io_addr, uint32 value) argument
61 out32(value, mapped_io_addr);
93 pci_write_io_8(int mapped_io_addr, uint8 value) argument
100 *ptr = value;
117 pci_write_io_16(int mapped_io_addr, uint16 value) argument
124 *ptr = value;
141 pci_write_io_32(int mapped_io_addr, uint32 value) argument
[all...]
/haiku/headers/private/kernel/util/
H A DKMessage.h75 inline status_t AddBool(const char* name, bool value);
76 inline status_t AddInt8(const char* name, int8 value);
77 inline status_t AddInt16(const char* name, int16 value);
78 inline status_t AddInt32(const char* name, int32 value);
79 inline status_t AddInt64(const char* name, int64 value);
80 inline status_t AddPointer(const char* name, const void* value);
81 inline status_t AddString(const char* name, const char* value);
88 inline status_t FindBool(const char* name, bool* value) const;
90 bool* value) const;
91 inline status_t FindInt8(const char* name, int8* value) cons
292 AddBool(const char* name, bool value) argument
299 AddInt8(const char* name, int8 value) argument
306 AddInt16(const char* name, int16 value) argument
313 AddInt32(const char* name, int32 value) argument
320 AddInt64(const char* name, int64 value) argument
327 AddPointer(const char* name, const void* value) argument
335 AddString(const char* name, const char* value) argument
470 T value; local
569 const char* value; local
586 SetBool(const char* name, bool value) argument
593 SetInt8(const char* name, int8 value) argument
600 SetInt16(const char* name, int16 value) argument
607 SetInt32(const char* name, int32 value) argument
614 SetInt64(const char* name, int64 value) argument
621 SetPointer(const char* name, const void* value) argument
[all...]
/haiku/src/add-ons/kernel/drivers/audio/ac97/auich/
H A Dio.h40 void auich_reg_write_8(device_config *config, uint8 regno, uint8 value);
41 void auich_reg_write_16(device_config *config, uint8 regno, uint16 value);
42 void auich_reg_write_32(device_config *config, uint8 regno, uint32 value);
45 void auich_codec_write(device_config *config, uint8 regno, uint16 value);
/haiku/src/add-ons/kernel/drivers/audio/ac97/auvia/
H A Dio.h40 void auvia_reg_write_8(device_config *config, int regno, uint8 value);
41 void auvia_reg_write_16(device_config *config, int regno, uint16 value);
42 void auvia_reg_write_32(device_config *config, int regno, uint32 value);
45 void auvia_codec_write(device_config *config, int regno, uint16 value);
/haiku/src/add-ons/kernel/drivers/audio/ac97/es1370/
H A Dio.h20 void es1370_reg_write_8(device_config *config, int regno, uint8 value);
21 void es1370_reg_write_16(device_config *config, int regno, uint16 value);
22 void es1370_reg_write_32(device_config *config, int regno, uint32 value);
25 void es1370_codec_write(device_config *config, int regno, uint16 value);
/haiku/src/libs/posix_error_mapper/
H A Dpthread_specific.cpp23 (pthread_key_t key, const void *value),
24 return B_TO_POSITIVE_ERROR(sReal_pthread_setspecific(key, value));
/haiku/src/system/libroot/posix/glibc/include/arch/x86_64/
H A Dmath_ldbl.h10 long double value; member in union:__anon5458
26 ew_u.value = (d); \
40 (d) = iw_u.value; \
48 sh_u.value = (d); \
57 sh_u.value = (d); \
59 (d) = sh_u.value; \
67 ge_u.value = (d); \
76 se_u.value = (d); \
78 (d) = se_u.value; \
/haiku/src/kits/debugger/value/value_formatters/
H A DEnumerationValueFormatter.cpp29 EnumerationValue* value = dynamic_cast<EnumerationValue*>(_value); local
30 if (value == NULL)
34 = value->GetType()->ValueFor(value->GetValue())) {
/haiku/headers/private/media/
H A DTStack.h27 bool Push(const T & value) argument
37 fArray[fUsed++] = value;
41 bool Pop(T *value) argument
46 *value = fArray[--fUsed];
/haiku/src/bin/bfs_tools/lib/
H A DStack.h32 status_t Push(T value) argument
41 fArray[fUsed++] = value;
45 bool Pop(T *value) argument
50 *value = fArray[--fUsed];
/haiku/src/system/libroot/posix/glibc/include/arch/riscv64/
H A Dmath_ldbl.h10 long double value; member in union:__anon2004
26 ew_u.value = (d); \
40 (d) = iw_u.value; \
48 sh_u.value = (d); \
57 sh_u.value = (d); \
59 (d) = sh_u.value; \
67 ge_u.value = (d); \
76 se_u.value = (d); \
78 (d) = se_u.value; \
/haiku/src/apps/haikudepot/server/
H A DStandardMetaData.cpp42 StandardMetaData::SetCreateTimestamp(uint64_t value) argument
44 fCreateTimestamp = value;
56 StandardMetaData::SetDataModifiedTimestamp(uint64_t value) argument
58 fDataModifiedTimestamp = value;
/haiku/headers/private/drivers/
H A Drandom.h18 status_t (*queue_randomness)(uint64 value);
/haiku/headers/os/locale/
H A DNumberFormat.h27 ssize_t Format(char* string, size_t maxSize, const double value);
28 status_t Format(BString& string, const double value);
29 ssize_t Format(char* string, size_t maxSize, const int32 value);
30 status_t Format(BString& string, const int32 value);
34 ssize_t FormatMonetary(char* string, size_t maxSize, const double value);
35 status_t FormatMonetary(BString& string, const double value);
37 ssize_t FormatPercent(char* string, size_t maxSize, const double value);
38 status_t FormatPercent(BString& string, const double value);
40 status_t Parse(const BString& string, double& value);
/haiku/src/apps/haikudepot/model/
H A DCreateUserDetail.cpp103 CreateUserDetail::SetNickname(const BString& value) argument
105 fNickname = value;
110 CreateUserDetail::SetPasswordClear(const BString& value) argument
112 fPasswordClear = value;
117 CreateUserDetail::SetIsPasswordRepeated(bool value) argument
119 fIsPasswordRepeated = value;
124 CreateUserDetail::SetEmail(const BString& value) argument
126 fEmail = value;
131 CreateUserDetail::SetCaptchaToken(const BString& value) argument
133 fCaptchaToken = value;
138 SetCaptchaResponse(const BString& value) argument
145 SetLanguageId(const BString& value) argument
152 SetAgreedToUserUsageConditionsCode(const BString& value) argument
[all...]
/haiku/src/system/libroot/posix/glibc/misc/
H A Defgcvt_r.c58 APPEND (FUNC_PREFIX, fcvt_r) (value, ndigit, decpt, sign, buf, len)
59 FLOAT_TYPE value;
75 if (isfinite (value))
77 *sign = signbit (value) != 0;
79 value = -value;
86 FLOAT_TYPE new_value = value * 0.1;
94 value = new_value;
105 value);
125 if (*decpt == 1 && buf[0] == '0' && value !
[all...]
/haiku/headers/posix/
H A Dmath.h295 extern long double modfl(long double value, long double *iptr);
325 extern int isinff(float value);
326 extern int finitef(float value);
329 extern int isnanf(float value);
342 #define fpclassify(value) \
343 __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, (value))
344 #define signbit(value) __builtin_signbit((value))
345 #define isfinite(value) __builtin_isfinite((value))
[all...]
/haiku/src/kits/debugger/dwarf/
H A DDebugInfoEntries.cpp88 const AttributeValue& value)
90 fName = value.string;
97 const AttributeValue& value)
99 fCompilationDir = value.string;
106 const AttributeValue& value)
108 fLowPC = value.address;
115 const AttributeValue& value)
117 fHighPC = value.address;
127 const AttributeValue& value)
136 const AttributeValue& value)
87 AddAttribute_name(uint16 attributeName, const AttributeValue& value) argument
96 AddAttribute_comp_dir(uint16 attributeName, const AttributeValue& value) argument
105 AddAttribute_low_pc(uint16 attributeName, const AttributeValue& value) argument
114 AddAttribute_high_pc(uint16 attributeName, const AttributeValue& value) argument
126 AddAttribute_producer(uint16 attributeName, const AttributeValue& value) argument
135 AddAttribute_stmt_list(uint16 attributeName, const AttributeValue& value) argument
144 AddAttribute_macro_info(uint16 attributeName, const AttributeValue& value) argument
153 AddAttribute_base_types(uint16 attributeName, const AttributeValue& value) argument
162 AddAttribute_language(uint16 attributeName, const AttributeValue& value) argument
171 AddAttribute_identifier_case(uint16 attributeName, const AttributeValue& value) argument
180 AddAttribute_use_UTF8(uint16 attributeName, const AttributeValue& value) argument
189 AddAttribute_ranges(uint16 attributeName, const AttributeValue& value) argument
198 AddAttribute_main_subprogram(uint16 attributeName, const AttributeValue& value) argument
247 AddAttribute_name(uint16 attributeName, const AttributeValue& value) argument
256 AddAttribute_allocated(uint16 attributeName, const AttributeValue& value) argument
264 AddAttribute_associated(uint16 attributeName, const AttributeValue& value) argument
282 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
301 AddAttribute_address_class(uint16 attributeName, const AttributeValue& value) argument
353 AddAttribute_accessibility(uint16 attributeName, const AttributeValue& value) argument
362 AddAttribute_declaration(uint16 attributeName, const AttributeValue& value) argument
371 AddAttribute_description(uint16 attributeName, const AttributeValue& value) argument
380 AddAttribute_abstract_origin(uint16 attributeName, const AttributeValue& value) argument
389 AddAttribute_signature(uint16 attributeName, const AttributeValue& value) argument
415 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
470 AddAttribute_byte_size(uint16 attributeName, const AttributeValue& value) argument
478 AddAttribute_specification(uint16 attributeName, const AttributeValue& value) argument
554 AddAttribute_name(uint16 attributeName, const AttributeValue& value) argument
563 AddAttribute_description(uint16 attributeName, const AttributeValue& value) argument
622 AddAttribute_name(uint16 attributeName, const AttributeValue& value) argument
631 AddAttribute_description(uint16 attributeName, const AttributeValue& value) argument
640 AddAttribute_accessibility(uint16 attributeName, const AttributeValue& value) argument
649 AddAttribute_declaration(uint16 attributeName, const AttributeValue& value) argument
673 AddAttribute_bit_stride(uint16 attributeName, const AttributeValue& value) argument
681 AddAttribute_byte_size(uint16 attributeName, const AttributeValue& value) argument
689 AddAttribute_byte_stride(uint16 attributeName, const AttributeValue& value) argument
751 AddAttribute_ordering(uint16 attributeName, const AttributeValue& value) argument
760 AddAttribute_bit_stride(uint16 attributeName, const AttributeValue& value) argument
768 AddAttribute_stride_size(uint16 attributeName, const AttributeValue& value) argument
776 AddAttribute_byte_size(uint16 attributeName, const AttributeValue& value) argument
784 AddAttribute_specification(uint16 attributeName, const AttributeValue& value) argument
859 AddAttribute_specification(uint16 attributeName, const AttributeValue& value) argument
901 AddAttribute_abstract_origin(uint16 attributeName, const AttributeValue& value) argument
910 AddAttribute_artificial(uint16 attributeName, const AttributeValue& value) argument
919 AddAttribute_const_value(uint16 attributeName, const AttributeValue& value) argument
927 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
1009 AddAttribute_low_pc(uint16 attributeName, const AttributeValue& value) argument
1018 AddAttribute_high_pc(uint16 attributeName, const AttributeValue& value) argument
1030 AddAttribute_ranges(uint16 attributeName, const AttributeValue& value) argument
1039 AddAttribute_abstract_origin(uint16 attributeName, const AttributeValue& value) argument
1065 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
1074 AddAttribute_byte_size(uint16 attributeName, const AttributeValue& value) argument
1082 AddAttribute_bit_size(uint16 attributeName, const AttributeValue& value) argument
1090 AddAttribute_data_member_location(uint16 attributeName, const AttributeValue& value) argument
1098 AddAttribute_bit_offset(uint16 attributeName, const AttributeValue& value) argument
1106 AddAttribute_data_bit_offset(uint16 attributeName, const AttributeValue& value) argument
1138 AddAttribute_specification(uint16 attributeName, const AttributeValue& value) argument
1199 AddAttribute_byte_size(uint16 attributeName, const AttributeValue& value) argument
1255 AddAttribute_address_class(uint16 attributeName, const AttributeValue& value) argument
1265 AddAttribute_prototyped(uint16 attributeName, const AttributeValue& value) argument
1274 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
1397 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
1406 AddAttribute_data_member_location(uint16 attributeName, const AttributeValue& value) argument
1462 AddAttribute_address_class(uint16 attributeName, const AttributeValue& value) argument
1472 AddAttribute_containing_type(uint16 attributeName, const AttributeValue& value) argument
1486 AddAttribute_use_location(uint16 attributeName, const AttributeValue& value) argument
1526 AddAttribute_byte_size(uint16 attributeName, const AttributeValue& value) argument
1551 AddAttribute_count(uint16 attributeName, const AttributeValue& value) argument
1559 AddAttribute_lower_bound(uint16 attributeName, const AttributeValue& value) argument
1567 AddAttribute_upper_bound(uint16 attributeName, const AttributeValue& value) argument
1575 AddAttribute_threads_scaled(uint16 attributeName, const AttributeValue& value) argument
1608 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
1657 AddAttribute_encoding(uint16 attributeName, const AttributeValue& value) argument
1666 AddAttribute_byte_size(uint16 attributeName, const AttributeValue& value) argument
1674 AddAttribute_bit_size(uint16 attributeName, const AttributeValue& value) argument
1682 AddAttribute_bit_offset(uint16 attributeName, const AttributeValue& value) argument
1690 AddAttribute_data_bit_offset(uint16 attributeName, const AttributeValue& value) argument
1698 AddAttribute_endianity(uint16 attributeName, const AttributeValue& value) argument
1754 AddAttribute_const_value(uint16 attributeName, const AttributeValue& value) argument
1762 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
1786 AddAttribute_const_value(uint16 attributeName, const AttributeValue& value) argument
1816 AddAttribute_byte_size(uint16 attributeName, const AttributeValue& value) argument
1993 AddAttribute_low_pc(uint16 attributeName, const AttributeValue& value) argument
2002 AddAttribute_high_pc(uint16 attributeName, const AttributeValue& value) argument
2014 AddAttribute_ranges(uint16 attributeName, const AttributeValue& value) argument
2023 AddAttribute_specification(uint16 attributeName, const AttributeValue& value) argument
2032 AddAttribute_address_class(uint16 attributeName, const AttributeValue& value) argument
2042 AddAttribute_prototyped(uint16 attributeName, const AttributeValue& value) argument
2051 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
2060 AddAttribute_inline(uint16 attributeName, const AttributeValue& value) argument
2070 AddAttribute_abstract_origin(uint16 attributeName, const AttributeValue& value) argument
2079 AddAttribute_frame_base(uint16 attributeName, const AttributeValue& value) argument
2097 AddAttribute_artificial(uint16 attributeName, const AttributeValue& value) argument
2106 AddAttribute_calling_convention(uint16 attributeName, const AttributeValue& value) argument
2115 AddAttribute_main_subprogram(uint16 attributeName, const AttributeValue& value) argument
2141 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
2167 AddAttribute_const_value(uint16 attributeName, const AttributeValue& value) argument
2175 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
2201 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
2242 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
2293 AddAttribute_const_value(uint16 attributeName, const AttributeValue& value) argument
2301 AddAttribute_type(uint16 attributeName, const AttributeValue& value) argument
2310 AddAttribute_specification(uint16 attributeName, const AttributeValue& value) argument
2325 AddAttribute_abstract_origin(uint16 attributeName, const AttributeValue& value) argument
2334 AddAttribute_start_scope(uint16 attributeName, const AttributeValue& value) argument
2343 AddAttribute_external(uint16 attributeName, const AttributeValue& value) argument
2367 AddAttribute_decl_file(uint16 attributeName, const AttributeValue& value) argument
2376 AddAttribute_decl_line(uint16 attributeName, const AttributeValue& value) argument
2385 AddAttribute_decl_column(uint16 attributeName, const AttributeValue& value) argument
2476 AddAttribute_decl_file(uint16 attributeName, const AttributeValue& value) argument
2485 AddAttribute_decl_line(uint16 attributeName, const AttributeValue& value) argument
2494 AddAttribute_decl_column(uint16 attributeName, const AttributeValue& value) argument
2564 AddAttribute_count(uint16 attributeName, const AttributeValue& value) argument
2572 AddAttribute_decl_file(uint16 attributeName, const AttributeValue& value) argument
2581 AddAttribute_decl_line(uint16 attributeName, const AttributeValue& value) argument
2590 AddAttribute_decl_column(uint16 attributeName, const AttributeValue& value) argument
2653 AddAttribute_name(uint16 attributeName, const AttributeValue& value) argument
2686 AddAttribute_name(uint16 attributeName, const AttributeValue& value) argument
2731 AddAttribute_name(uint16 attributeName, const AttributeValue& value) argument
2776 AddAttribute_name(uint16 attributeName, const AttributeValue& value) argument
2822 AddAttribute_name(uint16 attributeName, const AttributeValue& value) argument
[all...]
/haiku/src/kits/shared/
H A DMessageBuilder.cpp110 /*! Gets the value of CountNames() from the current message.
137 BMessageBuilder::AddInt8(const char* name, int8 value) argument
139 return fCurrentMessage->AddInt8(name, value);
144 BMessageBuilder::AddUInt8(const char* name, uint8 value) argument
146 return fCurrentMessage->AddUInt8(name, value);
151 BMessageBuilder::AddInt16(const char* name, int16 value) argument
153 return fCurrentMessage->AddInt16(name, value);
158 BMessageBuilder::AddUInt16(const char* name, uint16 value) argument
160 return fCurrentMessage->AddUInt16(name, value);
165 BMessageBuilder::AddInt32(const char* name, int32 value) argument
172 AddUInt32(const char* name, uint32 value) argument
179 AddInt64(const char* name, int64 value) argument
186 AddUInt64(const char* name, uint64 value) argument
193 AddBool(const char* name, bool value) argument
200 AddFloat(const char* name, float value) argument
207 AddDouble(const char* name, double value) argument
[all...]
/haiku/src/apps/debugger/user_interface/gui/value/value_handlers/
H A DEnumerationValueHandler.cpp37 EnumerationValueHandler::SupportsValue(Value* value) argument
39 return dynamic_cast<EnumerationValue*>(value) != NULL ? 0.7f : 0;
47 EnumerationValue* value = dynamic_cast<EnumerationValue*>(_value); local
48 if (value == NULL)
52 status_t error = CreateIntegerFormatterConfig(value, config);
72 EnumerationValue* value = dynamic_cast<EnumerationValue*>(_value); local
73 if (value == NULL)
77 status_t error = CreateIntegerFormatterConfig(value, config);
89 TableCellEnumerationEditor(value, formatter);
107 EnumerationValue* value local
133 EnumerationValue* value = dynamic_cast<EnumerationValue*>(_value); local
151 EnumerationValue* value = dynamic_cast<EnumerationValue*>(_value); local
[all...]
H A DFloatValueHandler.cpp35 FloatValueHandler::SupportsValue(Value* value) argument
37 return dynamic_cast<FloatValue*>(value) != NULL ? 0.5f : 0;
42 FloatValueHandler::GetValueFormatter(Value* value, argument
45 if (dynamic_cast<FloatValue*>(value) == NULL)
58 FloatValueHandler::GetTableCellValueRenderer(Value* value, argument
61 if (dynamic_cast<FloatValue*>(value) == NULL)
65 status_t error = GetValueFormatter(value, formatter);
85 FloatValue* value = dynamic_cast<FloatValue*>(_value); local
86 if (value == NULL)
90 status_t error = GetValueFormatter(value, formatte
[all...]
/haiku/src/bin/package/
H A Dcommand_dump.cpp75 const BPackageAttributeValue& value, void* parentToken, void*& _token)
81 _PrintValue(value);
90 const BPackageAttributeValue& value, void* parentToken, void* token)
110 void _PrintValue(const BPackageAttributeValue& value) argument
112 switch (value.type) {
114 printf("%lld (%#llx)", (long long)value.signedInt,
115 (long long)value.signedInt);
118 printf("%llu (%#llx)", (unsigned long long)value.unsignedInt,
119 (unsigned long long)value.unsignedInt);
122 printf("\"%s\"", value
74 HandleAttribute(BHPKGAttributeID attributeID, const BPackageAttributeValue& value, void* parentToken, void*& _token) argument
89 HandleAttributeDone(BHPKGAttributeID attributeID, const BPackageAttributeValue& value, void* parentToken, void* token) argument
[all...]
/haiku/src/kits/debugger/settings/generic/
H A DSettings.cpp45 BVariant value; local
46 return value.SetFromMessage(fValues, setting->ID()) == B_OK
47 ? value : setting->DefaultValue();
56 BVariant value; local
57 if (value.SetFromMessage(fValues, settingID) == B_OK)
58 return value;
61 return setting != NULL ? setting->DefaultValue() : value;
66 Settings::SetValue(Setting* setting, const BVariant& value) argument
70 // remove the message field and re-add it with the new value
74 bool success = value
92 BVariant value; local
106 BVariant value = Value(setting); local
[all...]

Completed in 159 milliseconds

1234567891011>>