Searched refs:value (Results 276 - 300 of 1663) sorted by relevance

<<11121314151617181920>>

/haiku/src/kits/debugger/value/value_nodes/
H A DPointerToMemberValueNode.cpp53 // get the value type
63 // load the value data
71 Value* value = new(std::nothrow) IntegerValue(valueData);
72 if (value == NULL)
77 _value = value;
/haiku/src/bin/debug/ltrace/
H A Dltrace_stub.cpp65 size_t Hash(PatchEntry* value) const
67 return HashKey(value->originalFunction);
70 bool Compare(const void* key, PatchEntry* value) const
72 return value->originalFunction == key;
75 PatchEntry*& GetLink(PatchEntry* value) const
77 return value->originalTableLink;
91 size_t Hash(PatchEntry* value) const
93 return HashKey(value->patchedFunction);
96 bool Compare(const void* key, PatchEntry* value) const
98 return value
[all...]
/haiku/src/apps/haikudepot/server/
H A DServerSettings.h27 static void SetPreferCache(bool value);
29 static void SetDropCache(bool value);
31 static void SetForceNoNetwork(bool value);
H A DJwtTokenHelper.cpp17 JwtTokenHelper::IsValid(const BString& value) argument
21 for (int i = 0; i < value.Length(); i++) {
22 char ch = value[i];
38 structured data. The JSON data contains key-value pairs which carry data
/haiku/src/apps/haikudepot/model/
H A DUserCredentials.h37 void SetNickname(const BString& value);
38 void SetPasswordClear(const BString& value);
39 void SetIsSuccessful(bool value);
H A DUserCredentials.cpp112 UserCredentials::SetNickname(const BString& value) argument
114 fNickname = value;
119 UserCredentials::SetPasswordClear(const BString& value) argument
121 fPasswordClear = value;
126 UserCredentials::SetIsSuccessful(bool value) argument
128 fIsSuccessful = value;
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A D_itoa.c169 _itoa (value, buflim, base, upper_case)
170 unsigned long long int value;
186 mp_limb_t work_hi = value >> (64 - BITS_PER_MP_LIMB); \
195 work_lo = value & 0xfffffffful; \
216 work_hi = value & 0xfffffffful; \
240 while (value != 0)
244 umul_ppmm (x, dummy, value, base_multiplier);
245 quo = (x + ((value - x) >> 1)) >> (brec->post_shift - 1);
246 rem = value - quo * base;
248 value
[all...]
/haiku/src/add-ons/kernel/drivers/audio/emuxki/
H A Dio.h40 void emuxki_reg_write_8(device_config *config, int regno, uint8 value);
41 void emuxki_reg_write_16(device_config *config, int regno, uint16 value);
42 void emuxki_reg_write_32(device_config *config, int regno, uint32 value);
56 void emuxki_codec_write(device_config *config, int regno, uint16 value);
58 void emuxki_inte_enable(device_config *config, uint32 value);
59 void emuxki_inte_disable(device_config *config, uint32 value);
/haiku/src/bin/debug/profile/
H A DSummaryProfileResult.h39 size_t Hash(SummaryImage* value) const
41 return HashKey(value->GetImage());
44 bool Compare(SharedImage* key, SummaryImage* value) const
46 return value->GetImage() == key;
49 SummaryImage*& GetLink(SummaryImage* value) const
51 return value->HashNext();
/haiku/src/tests/add-ons/print/ppd/model/
H A DStatementWrapper.cpp89 Value* value = GetValue(); local
90 if (value == NULL) return NULL;
91 BString* string = value->GetValue();
103 Value* value = GetValue(); local
104 if (value == NULL) return NULL;
105 BString* string = value->GetTranslation();
/haiku/src/add-ons/kernel/file_systems/packagefs/nodes/
H A DNodeListener.h110 size_t Hash(const NodeListener* value) const
112 return HashKey(value->ListenedNode());
115 bool Compare(Node* key, const NodeListener* value) const
117 return key == value->ListenedNode();
120 NodeListener*& GetLink(NodeListener* value) const
122 return value->NodeListenerHashLink();
/haiku/src/servers/package/
H A DPackageFile.h103 size_t Hash(const PackageFile* value) const
105 return HashKey(value->EntryRef());
108 bool Compare(const entry_ref& key, const PackageFile* value) const
110 return value->EntryRef() == key;
113 PackageFile*& GetLink(PackageFile* value) const
115 return value->EntryRefHashTableNext();
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DIndex.h50 // sets the iterator to the first value
64 // value >= key
111 size_t Hash(const Index* value) const
113 return value->Name().Hash();
116 bool Compare(const StringKey& key, const Index* value) const
118 return key == value->Name();
121 Index*& GetLink(Index* value) const
123 return value->IndexHashLink();
/haiku/headers/os/package/hpkg/
H A DPackageInfoAttributeValue.h91 uint8 value);
93 const char* value);
107 BPackageInfoAttributeValue::SetTo(BPackageInfoAttributeID id, uint8 value) argument
110 unsignedInt = value;
116 const char* value)
119 string = value;
115 SetTo(BPackageInfoAttributeID id, const char* value) argument
/haiku/src/add-ons/print/drivers/pcl6/
H A DPCL6Writer.cpp36 PCL6Writer::Append(uint8 value) argument
40 fBuffer[fIndex] = value;
56 PCL6Writer::Append(int16 value) argument
58 int16 v = B_HOST_TO_LENDIAN_INT16(value);
65 PCL6Writer::Append(uint16 value) argument
67 int16 v = B_HOST_TO_LENDIAN_INT16(value);
74 PCL6Writer::Append(int32 value) argument
76 int32 v = B_HOST_TO_LENDIAN_INT32(value);
85 PCL6Writer::Append(uint32 value) argument
87 int32 v = B_HOST_TO_LENDIAN_INT32(value);
96 Append(float value) argument
150 AppendData(uint8 value) argument
158 AppendData(int16 value) argument
166 AppendData(uint16 value) argument
174 AppendData(int32 value) argument
182 AppendData(uint32 value) argument
190 AppendData(float value) argument
[all...]
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamSensor.cpp110 CamSensor::GetParameterValue(int32 id, bigtime_t *last_change, void *value, size_t *size) argument
116 CamSensor::SetParameterValue(int32 id, bigtime_t when, const void *value, size_t size) argument
134 uint8 value = 0; local
136 len = Device()->ReadIIC8(regList[i], &value);
137 PRINT((CH ": ReadIIC8 = %" B_PRIdSSIZE " val = %d" CT, len, value));
140 if (value != matchList[i])
/haiku/src/add-ons/translators/hvif/
H A DHVIFView.cpp95 int32 value = fRenderSize->Value(); local
96 if (value <= 0 || value > 32)
99 value *= 8;
100 fSettings->SetGetInt32(HVIF_SETTING_RENDER_SIZE, &value);
104 newLabel << " " << value; local
/haiku/src/apps/devices/
H A DPropertyList.cpp20 PropertyRow::PropertyRow(const char* name, const char* value) argument
22 fName(name), fValue(value)
25 SetField(new BStringField(value), kValueColumn);
43 PropertyRow::SetValue(const char* value) argument
45 fValue = value;
46 SetField(new BStringField(value), kValueColumn);
/haiku/src/kits/locale/
H A DNumberFormat.cpp39 size_t maxSize, const double value);
41 const double value);
160 size_t maxSize, const double value)
163 status_t status = ApplyFormatter(formatter, fullString, value);
173 const double value)
179 formatter->format(value, icuString);
220 BNumberFormat::Format(char* string, size_t maxSize, const double value) argument
223 status_t status = Format(fullString, value);
232 BNumberFormat::Format(BString& string, const double value) argument
240 formatter->format(value, icuStrin
159 ApplyFormatter(NumberFormat* formatter, char* string, size_t maxSize, const double value) argument
172 ApplyFormatter(NumberFormat* formatter, BString& string, const double value) argument
251 Format(char* string, size_t maxSize, const int32 value) argument
263 Format(BString& string, const int32 value) argument
305 FormatMonetary(char* string, size_t maxSize, const double value) argument
313 FormatMonetary(BString& string, const double value) argument
321 FormatPercent(char* string, size_t maxSize, const double value) argument
329 FormatPercent(BString& string, const double value) argument
337 Parse(const BString& string, double& value) argument
[all...]
/haiku/headers/private/net/
H A DNetUtilities.h36 inline Checksum& operator<<(uint8 value) argument
39 fSum += value;
41 fSum += (uint16)value << 8;
46 inline Checksum& operator<<(uint16 value) argument
48 fSum += value;
52 inline Checksum& operator<<(uint32 value) argument
54 fSum += (value & 0xffff) + (value >> 16);
/haiku/src/add-ons/media/media-add-ons/opensound/
H A DOpenSoundDeviceMixer.h25 status_t GetMixerValue(oss_mixer_value *value);
26 status_t SetMixerValue(oss_mixer_value *value);
/haiku/src/add-ons/translators/wonderbrush/support/
H A Dblending.cpp37 convert_to_gamma(uint8 value) argument
39 return kGammaTable[value];
/haiku/src/apps/cortex/Persistence/
H A Dxml_export_utils.h66 // Writes the given key/value as an XML attribute (a newline
73 T value,
78 pad_with_spaces(stream, key, context) << " = '" << value << '\'';
71 write_attr( const char* key, T value, ostream& stream, ExportContext& context) argument
/haiku/src/apps/debuganalyzer/gui/table/
H A DTableColumn.cpp42 TableColumn::DrawValue(const BVariant& value, BRect rect, BView* targetView) argument
55 TableColumn::GetPreferredWidth(const BVariant& value, BView* parent) const argument
/haiku/src/apps/icon-o-matic/generic/property/
H A DPropertyObject.cpp63 BString value; local
64 p->GetValue(value);
65 ret = into->AddString(idString, value.String());
90 const char* value; local
91 if (archive->FindString(idString, &value) == B_OK)
92 if (p->SetValue(value))
258 PropertyObject::SetValue(uint32 propertyID, const char* value) argument
261 if (p->SetValue(value)) {
271 PropertyObject::GetValue(uint32 propertyID, BString& value) const
274 p->GetValue(value);
284 SetValue(uint32 propertyID, int32 value) argument
307 SetValue(uint32 propertyID, int64 value) argument
330 SetValue(uint32 propertyID, float value) argument
353 SetValue(uint32 propertyID, bool value) argument
[all...]

Completed in 142 milliseconds

<<11121314151617181920>>