Searched refs:values (Results 51 - 75 of 119) sorted by relevance

12345

/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DInode.cpp87 AttrValue* values; local
89 result = reply.GetAttr(&values, &count);
94 if (count < 5 || values[4].fAttribute != FATTR4_FILEID)
97 inode->fInfo.fFileId = values[4].fData.fValue64;
102 inode->fType = values[0].fData.fValue32;
109 inode->fChange = values[1].fData.fValue64;
112 size = values[2].fData.fValue64;
117 = reinterpret_cast<FileSystemId*>(values[3].fData.fPointer);
119 delete[] values;
123 delete[] values;
510 AttrValue* values; local
[all...]
H A DFileSystem.cpp198 AttrValue* values;
200 result = reply.GetAttr(&values, &count);
205 memcpy(fs->fSupAttrs, &values[0].fData.fValue64, sizeof(fs->fSupAttrs));
208 fs->fExpireType = values[1].fData.fValue32;
212 = reinterpret_cast<FileSystemId*>(values[2].fData.fPointer);
214 if (count == 4 && values[3].fAttribute == FATTR4_FS_LOCATIONS) {
216 = reinterpret_cast<FSLocations*>(values[3].fData.fLocations);
233 delete[] values;
238 delete[] values;
308 AttrValue* values;
[all...]
H A DNFS4Inode.cpp48 AttrValue* values; local
50 result = reply.GetAttr(&values, &count);
55 *change = values[0].fData.fValue64;
56 delete[] values;
162 AttrValue* values; local
165 result = reply.GetAttr(&values, &count);
169 *change = values[0].fData.fValue64;
170 delete[] values;
183 result = reply.GetAttr(&values, &count);
189 = reinterpret_cast<FileSystemId*>(values[
282 GetStat(AttrValue** values, uint32* count, OpenAttrCookie* cookie) argument
519 AttrValue* values; local
858 AttrValue* values; local
936 AttrValue* values; local
[all...]
H A DNFS4Server.cpp174 AttrValue* values; local
176 result = reply.GetAttr(&values, &count);
179 ArrayDeleter<AttrValue> valuesDeleter(values);
182 if (count < 1 || values[0].fAttribute != FATTR4_LEASE_TIME)
185 fLeaseTime = values[0].fData.fValue32;
/haiku/src/tests/add-ons/kernel/file_systems/bfs/array/
H A Darray.cpp60 if (!gList.HasItem((void *)array->values[i])) {
61 printf("Could not find entry %lld at %ld in list!\n",array->values[i],i);
/haiku/src/kits/device/
H A DJoystick.cpp230 variable_joystick *values local
232 if (values == NULL)
235 ssize_t result = read_pos(fFD, i, values->data,
236 values->data_size);
240 if ((size_t)result != values->data_size)
246 // fill in the legacy values for the first stick
247 timestamp = *values->timestamp;
249 if (values->axis_count >= 1)
250 horizontal = values->axes[0];
254 if (values
[all...]
/haiku/src/bin/
H A Dget_driver_settings.cpp25 printf(" '%s',", p->values[i]);
/haiku/src/apps/debugger/user_interface/gui/model/
H A DVariablesViewState.h68 void SetValues(StackFrameValues* values);
72 void SetExpressionValues(ExpressionValues* values);
/haiku/src/servers/launch/
H A DSettingsParser.cpp31 const char* condition = parameter.values[index];
35 parameter.values[index]);
53 // Parse values directly following "if", with special
60 && strcmp(parameter.values[0], "not") == 0;
79 message.AddString("args", parameter.values[index]);
97 // Parse values directly following "on"
104 message.AddString("args", parameter.values[index]);
121 return target.AddString("target", parameter.values[index]);
/haiku/src/kits/shared/
H A DDriverSettingsMessageAdapter.cpp220 status = message.AddString(name, parameter.values[i]);
223 status = message.AddInt32(name, atoi(parameter.values[i]));
227 bool value=!strcasecmp(parameter.values[i], "true")
228 || !strcasecmp(parameter.values[i], "on")
229 || !strcasecmp(parameter.values[i], "yes")
230 || !strcasecmp(parameter.values[i], "enabled")
231 || !strcasecmp(parameter.values[i], "1");
/haiku/src/add-ons/kernel/drivers/audio/ac97/sis7018/
H A DMixer.cpp626 int32 Id= Info->values[i].id;
638 Info->values[i].enable = (RegValue & mask) == mask;
640 Reg, Info->values[i].enable, RegValue);
645 Info->values[i].mux = (RegValue | (RegValue >> 8)) & 0x7;
647 Reg, Info->values[i].mux, RegValue);
656 Info->values[i].gain = mult * gain - base;
658 Reg, Info->values[i].gain, mult, base, gain);
664 Info->values[i].gain = mult * gain - base;
666 Reg, Info->values[i].gain, mult, base, gain);
679 int32 Id = Info->values[
[all...]
/haiku/src/add-ons/kernel/drivers/audio/hda/
H A Dhda_multi_audio.cpp698 id = mmvi->values[i].id - MULTI_CONTROL_FIRSTID;
711 mmvi->values[i].enable = (resp[0] & AMP_MUTE) != 0;
713 mmvi->values[i].enable);
720 mmvi->values[i].gain = (0.0 + value - AMP_CAP_OFFSET(control->capabilities))
723 control->nid, mmvi->values[i].gain, value);
729 mmvi->values[i].mux = 0;
740 mmvi->values[i].mux = j;
748 control->nid, mmvi->values[i].mux);
754 mmvi->values[i].mux = resp & 0xff;
756 control->nid, mmvi->values[
[all...]
/haiku/src/kits/interface/layouter/
H A DLayoutOptimizer.cpp114 double* values = new(nothrow) double[m * n]; local
115 if (!values) {
120 double* row = values;
504 double ActualValue(double* values) const
508 result = values[right];
510 result -= values[left];
649 The \a values array must contain a feasible solution when called and will
653 LayoutOptimizer::Solve(const double* desired, double size, double* values) argument
655 if (fVariables == NULL || desired == NULL|| values == NULL)
672 bool success = _Solve(desired, values);
685 _Solve(const double* desired, double* values) argument
952 _SetResult(const double* x, double* values) argument
[all...]
/haiku/src/add-ons/kernel/busses/scsi/usb/
H A Dsettings.c156 strncpy(to, dp->values[0], size);
173 char *value = dp->values[0];
208 uint16 id = strtoul(dp->values[0], NULL, 0) & 0xffff;
260 } /*enumerate parameter values (product ids) */
279 if(dp && dp->value_count > 0 && dp->values[0]){
280 uint16 id = strtoul(dp->values[0], NULL, 0) & 0xffff;
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DSettings.cpp61 return param.values[0];
140 PRINT((" value: `%s'\n", parameter->values[0]));
142 && !strcmp(parameter->values[0], name)) {
270 int command = atoi(parameter->values[0]);
/haiku/headers/private/shared/
H A DExpressionParser.h65 void _InitArguments(MAPM values[],
/haiku/src/kits/interface/
H A DChannelControl.cpp451 const int32* values)
453 return StuffValues(fromChannel, channelCount, values);
458 BChannelControl::SetAllValue(int32 values) argument
462 int32 limitedValue = max_c(values, MinLimitList()[i]);
651 const int32* values)
653 if (values == NULL)
662 if (values[i] <= fChannelMax[fromChannel + i]
663 && values[i] >= fChannelMin[fromChannel + i]) {
664 fChannelValues[fromChannel + i] = values[i];
450 SetValue(int32 fromChannel, int32 channelCount, const int32* values) argument
650 StuffValues(int32 fromChannel, int32 channelCount, const int32* values) argument
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBPlusTree.cpp39 off_t values[0]; member in struct:BFS::duplicate_array
53 return BFS_ENDIAN_TO_HOST_INT64(values[index]);
58 values[index] = HOST_ENDIAN_TO_BFS_INT64(value);
566 // SetToWritable() below needs the new values in the tree's header
1058 Unaligned<off_t>* values = node->Values(); local
1086 *_next = BFS_ENDIAN_TO_HOST_INT64(values[i]);
1097 *_next = BFS_ENDIAN_TO_HOST_INT64(values[saveIndex]);
1160 Unaligned<off_t>* values = node->Values(); local
1162 off_t value = BFS_ENDIAN_TO_HOST_INT64(values[i]);
1202 Unaligned<off_t>* values local
1832 Unaligned<off_t>* values = node->Values(); local
2043 Unaligned<off_t>* values = node->Values(); local
2360 Unaligned<off_t>* values = parent->Values(); local
[all...]
/haiku/src/libs/linprog/
H A DLayoutOptimizer.cpp128 double* values = new(nothrow) double[m * n]; local
129 if (!values) {
134 double* row = values;
566 LayoutOptimizer::_ActualValue(Constraint* constraint, double* values) const
573 value += values[variable] * summand->Coeff();
626 The \a values array must contain a feasible solution when called and will
630 LayoutOptimizer::Solve(double* values) argument
632 if (values == NULL)
645 bool success = _Solve(values);
652 LayoutOptimizer::_Solve(double* values) argument
925 _SetResult(const double* x, double* values) argument
[all...]
/haiku/src/kits/tracker/
H A DSettings.cpp115 const char* defaultValue, const char* const* values,
120 fValues(values)
129 // must be one of the enumerated values
114 EnumeratedStringValueSetting(const char* name, const char* defaultValue, const char* const* values, const char* valueExpectedErrorString, const char* wrongValueErrorString) argument
H A DSettings.h70 // string setting, values that do not match string enumeration
74 const char* const* values, const char* valueExpectedErrorString,
/haiku/src/apps/haikudepot/model/
H A DModel.h101 std::vector<CategoryRef>& values);
107 std::vector<RatingStabilityRef>& values);
/haiku/headers/os/interface/
H A DChannelControl.h10 // independent values, with minima and maxima.
83 const int32* values);
84 status_t SetAllValue(int32 values);
151 int32 channelCount, const int32* values);
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DSettings.cpp163 // get the global values
185 fHiddenEntries.AddItem(parameter->values[i]);
186 PRINT((" hidden entry: `%s'\n", parameter->values[i]));
190 // check the values
217 && !strcmp(parameter->values[0], name)) {
/haiku/src/apps/activitymonitor/
H A DActivityView.cpp98 /*! Stores the interpolated on screen view values. This is done so that the
238 // Check if we need to invalidate the existing values
248 // Compute how many new values we need to retrieve
800 DataHistory* values = new(std::nothrow) DataHistory(10 * 60000000LL, local
802 ListAddDeleter<DataHistory> valuesDeleter(fValues, values, insert);
811 values->SetScale(_ScaleFor(source->ScaleType()));
868 DataHistory* values = fValues.RemoveItemAt(index); local
869 delete values;
1305 ActivityView::_PositionForValue(DataSource* source, DataHistory* values, argument
1311 int64 adaptiveMax = int64(values
1392 DataHistory* values = fValues.ItemAt(i); local
1486 DataHistory* values = fValues.ItemAt(i); local
1545 DataHistory* values = fValues.ItemAt(i); local
[all...]

Completed in 627 milliseconds

12345