Searched refs:value (Results 1 - 25 of 1663) sorted by last modified time

1234567891011>>

/haiku/headers/private/file_systems/
H A DQueryParser.h109 union value { union in namespace:QueryParser
221 /*! An Equation object represents an "attribute-equation operator-value" pair.
226 The type/size of the value, the score, and if it has an index or not.
276 bool CompareTo(const uint8* value, size_t size);
282 union value<QueryPolicy> fValue;
481 // at this point, "start" will point to the first character of the value,
483 // whitespace character after the value string
615 QUERY_FATAL("query value conversion to 0x%x requested!\n",
636 Equation<QueryPolicy>::CompareTo(const uint8* value, size_t size) argument
646 compare = matchString(fValue.String, (char*)value)
715 union value<QueryPolicy> value; local
[all...]
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DIMAPFolder.cpp190 // TODO: delete all mails that have the same UID validity value we had
756 uint32 value; local
758 &value, sizeof(uint32));
760 return value;
767 IMAPFolder::_WriteUInt32(BNode& node, const char* attribute, uint32 value) const
770 &value, sizeof(uint32));
/haiku/src/servers/app/font/
H A DFontManager.cpp372 delisted.Next().value->_SetFontFamily(NULL, -1);
377 referenced.Next().value->_SetFontFamily(NULL, -1);
/haiku/src/servers/app/
H A DServerApp.cpp271 \param value The new status of the ServerApp.
277 ServerApp::Activate(bool value) argument
279 if (fIsActive == value)
282 fIsActive = value;
341 // value everytime a window has closed or changed workspaces
371 // value everytime a window has closed or changed workspaces
/haiku/src/kits/tracker/
H A DWidgetAttributeText.cpp85 TruncFileSizeBase(BString* outString, int64 value, const View* view, argument
88 // format file size value
89 if (value == kUnknownSize) {
95 BString buffer = string_for_size(value, sizeBuffer, sizeof(sizeBuffer));
97 if (value < kKBSize) {
100 (long long int)value);
159 TruncTimeBase(BString* outString, int64 value, const View* view, float width) argument
163 time_t timeValue = (time_t)value;
344 WidgetAttributeText::TruncFileSize(BString* outString, int64 value, argument
347 return TruncFileSizeBase(outString, value, vie
352 TruncTime(BString* outString, int64 value, const BPoseView* view, float width) argument
395 int64 value; local
467 SetDirty(bool value) argument
1603 bool value = strncasecmp(textView->Text(), "0", 1) != 0 local
[all...]
/haiku/src/apps/mediaplayer/
H A DController.cpp759 Controller::SetVolume(float value) argument
761 // printf("Controller::SetVolume %.4f\n", value);
764 value = max_c(0.0, min_c(2.0, value));
766 if (fVolume != value) {
770 fVolume = value;
820 Controller::SetPosition(float value) argument
824 return SetFramePosition(_FrameDuration() * value);
829 Controller::SetFramePosition(int64 value) argument
834 fRequestedSeekFrame = max_c(0, min_c(_FrameDuration(), value));
865 SetTimePosition(bigtime_t value) argument
[all...]
/haiku/src/apps/diskprobe/
H A DProbeView.cpp108 // this is the maximum value that BSlider seem to work with fine
138 off_t value);
581 HeaderView::FormatValue(char* buffer, size_t bufferSize, off_t value) argument
584 B_PRIdOFF, value);
/haiku/src/apps/activitymonitor/
H A DDataSource.cpp148 DataSource::Print(BString& text, int64 value) const
151 fNumberFormat.Format(text, (int32)value);
294 MemoryDataSource::Print(BString& text, int64 value) const
297 string_for_size(value, buffer, sizeof(buffer));
851 CPUFrequencyDataSource::Print(BString& text, int64 value) const
854 fNumberFormat.Format(printedFrequency, (int32)(value / 1000000));
862 int64 value = info.CPUCurrentFrequency(fCPU); local
864 if (value > fMaximum)
865 SetLimits(0, value);
867 return value;
[all...]
/haiku/src/add-ons/kernel/network/stack/
H A Dnet_socket.cpp77 const void* value, int length);
467 int value; local
470 || user_memcpy(&value, data, sizeof(int)) != B_OK) {
474 value = *(int*)data;
476 return socket_setsockopt(socket, SOL_SOCKET, SO_NONBLOCK, &value,
504 int value = op == B_SET_NONBLOCKING_IO; local
505 return socket_setsockopt(socket, SOL_SOCKET, SO_NONBLOCK, &value,
868 socket_notify(net_socket* _socket, uint8 event, int32 value) argument
875 if ((ssize_t)socket->receive.low_water_mark > value
876 && value >
1021 socket_get_option(net_socket* socket, int level, int option, void* value, int* _length) argument
1135 socket_getsockopt(net_socket* socket, int level, int option, void* value, int* _length) argument
1446 socket_set_option(net_socket* socket, int level, int option, const void* value, int length) argument
1569 socket_setsockopt(net_socket* socket, int level, int option, const void* value, int length) argument
[all...]
/haiku/headers/compatibility/bsd/
H A Dsignal.h25 int pthread_sigqueue(pthread_t thread, int sig, const union sigval value);
/haiku/src/kits/interface/
H A DSpinner.cpp25 "Returns the maximum value of the spinner.",
33 "Sets the maximum value of the spinner.",
42 "Returns the minimum value of the spinner.",
50 "Sets the minimum value of the spinner.",
59 "Returns the value of the spinner.",
67 "Sets the value of the spinner.",
223 BSpinner::SetValue(int32 value) argument
226 if (value < fMinValue)
227 value = fMinValue;
228 else if (value > fMaxValu
233 valueString << value; local
[all...]
H A DColumnTypes.cpp426 double value = ((BSizeField*)_field)->Size(); local
439 while (index < B_COUNT_OF(kFormats) - 1 && value >= 1024.0) {
440 value /= 1024.0;
447 formatter.Format(format, value);
451 fNumberFormat.Format(printedSize, value);
457 formatter.Format(format, value);
464 fNumberFormat.Format(printedSize, value);
503 BIntegerField::SetValue(int32 value) argument
505 fInteger = value;
574 double value local
[all...]
/haiku/src/add-ons/kernel/network/protocols/l2cap/
H A Dl2cap_command.cpp89 uint16 value; member in struct:config_option_mtu
96 option->header.length = sizeof(option->value);
97 option->value = htole16(*mtu);
103 uint16 value; member in struct:config_option_flush_timeout
110 option->header.length = sizeof(option->value);
111 option->value = htole16(*flush_timeout);
117 l2cap_qos value; member in struct:config_option_flow
124 option->header.length = sizeof(option->value);
125 option->value.flags = flow->flags;
126 option->value
[all...]
H A Dl2cap_signal.cpp91 l2cap_configuration_option_value value; local
92 if (gBufferModule->read(buffer, offset + sizeof(option), &value,
93 min_c(sizeof(value), option.length)) != B_OK) {
102 options.mtu = le16toh(value.mtu);
107 options.flush_timeout = le16toh(value.flush_timeout);
112 options.qos.flags = value.qos.flags;
113 options.qos.service_type = value.qos.service_type;
114 options.qos.token_rate = le32toh(value.qos.token_rate);
115 options.qos.token_bucket_size = le32toh(value.qos.token_bucket_size);
116 options.qos.peak_bandwidth = le32toh(value
[all...]
H A Dl2cap.cpp100 l2cap_control(net_protocol* protocol, int level, int option, void* value, argument
110 void* value, int* _length)
113 return gSocketModule->get_option(protocol->socket, level, option, value,
109 l2cap_getsockopt(net_protocol* protocol, int level, int option, void* value, int* _length) argument
H A DL2capEndpointManager.h32 AVLTreeNode* GetAVLTreeNode(Value* value) const
34 return value;
/haiku/src/tests/add-ons/accelerants/intel_extreme/
H A Dintel_reg.cpp76 uint32 value = 0; local
125 value = strtol(val + 2, (char **)NULL, 16);
127 value = strtol(val, (char **)NULL, 10);
128 if (value == 0 && errno != 0)
144 *(uint32*)addr = value;
/haiku/headers/private/kernel/util/
H A DVectorMap.h48 references to the entry's key/value. This allows EntryStrategy::Entry
79 status_t Insert(const Key &key, const Value &value);
80 status_t Put(const Key &key, const Value &value);
283 /*! \brief Associates a key with a value.
285 If there is already a value associated with the key, the old entry
288 \param key The key to which a value shall be associated.
289 \param value The value to be associated with the key.
294 relationship between key and value, that \a key and \a value have
299 Insert(const Key &key, const Value &value) argument
318 Put(const Key &key, const Value &value) argument
688 Entry(const Key &key, const Value &value) argument
692 Value value; member in class:VectorMapEntryStrategy::Pair::Entry
[all...]
/haiku/src/add-ons/kernel/drivers/audio/sb16/
H A Dsb16_hw.c21 hw_codec_write_byte(sb16_dev_t* dev, uint8 value) argument
32 gISA->write_io_8(dev->port + SB16_CODEC_WRITE_DATA, value);
52 hw_codec_reg_write(sb16_dev_t* dev, uint8 index, uint8 value) argument
56 gISA->write_io_8(dev->port + SB16_MIXER_DATA, value);
/haiku/src/add-ons/kernel/drivers/audio/emuxki/
H A Dmulti.c52 uint16 value, mask; local
57 value = emuxki_codec_read(&dev->config, info->reg);
58 //PRINT(("B_MIX_GAIN value : %u\n", value));
61 gain = ((value & mask) >> 8) * info->granularity;
68 gain = (value & mask) * info->granularity;
75 gain = (value & mask) * info->granularity;
84 value = emuxki_codec_read(&dev->config, info->reg);
85 //PRINT(("B_MIX_MUTE value : %u\n", value));
110 uint16 value, mask; local
190 int32 value; local
197 int32 value; local
[all...]
H A Demuxki.h275 uint16 blkmod; /* Modulo value to wrap trigblk */
428 void emuxki_parameter_set(emuxki_dev *card, const void*, int32 type, int32 *value);
429 void emuxki_parameter_get(emuxki_dev *card, const void*, int32 type, int32 *value);
H A Demuxki.c1816 uint32 value; local
1821 value = emuxki_read_gpr(&card->config, pc);
1822 LOG(("dsp_gpr pc=%x, value=%x\n", pc, value));
1867 emuxki_parameter_set(emuxki_dev *card, const void* cookie, int32 type, int32 *value) argument
1875 card->digital_enabled = *value == 1;
1899 if (*value!=0 && *value!=1 && *value!=2) {
1900 PRINT(("emuxki_parameter_set error value unexpecte
1921 emuxki_parameter_get(emuxki_dev *card, const void* cookie, int32 type, int32 *value) argument
2882 uint32 value; local
[all...]
/haiku/src/add-ons/kernel/drivers/audio/echo/
H A Dmulti.cpp980 uint32 value; local
984 value = strtoul (item, &end, 0);
985 if (*end == '\0') current_settings.channels = value;
991 value = strtoul (item, &end, 0);
992 if (*end == '\0') current_settings.bitsPerSample = value;
998 value = strtoul (item, &end, 0);
999 if (*end == '\0') current_settings.sample_rate = value;
1005 value = strtoul (item, &end, 0);
1006 if (*end == '\0') current_settings.buffer_frames = value;
1012 value
[all...]
/haiku/src/add-ons/kernel/drivers/audio/cmedia/
H A Dmixer.c164 lev->value = ((float)val)*the_mixers[ix].div+the_mixers[ix].sub;
200 int value; local
205 value = (lev->value-the_mixers[selector].sub)/the_mixers[selector].div;
206 if (value < the_mixers[selector].minval) {
207 value = the_mixers[selector].minval;
209 if (value > the_mixers[selector].maxval) {
210 value = the_mixers[selector].maxval;
212 value <<= the_mixers[selector].leftshift;
216 value |
[all...]
H A Dcm.c77 PCI_IO_RD_32 - read a 32 bit value from pci i/o space
140 void set_direct(cmedia_pci_dev * card, int regno, uchar value, uchar mask) argument
147 value = (value&mask)|(old&~mask);
149 PCI_IO_WR(card->enhanced+regno, value);
150 ddprintf(("cmedia_pci: CM%02x = %02x\n", regno, value));
162 void set_indirect(cmedia_pci_dev * card, int regno, uchar value, uchar mask) argument
171 value = (value&mask)|(old&~mask);
173 PCI_IO_WR(card->enhanced+0x22, value);
[all...]

Completed in 98 milliseconds

1234567891011>>