Searched refs:index (Results 76 - 100 of 1857) sorted by last modified time

1234567891011>>

/haiku/src/apps/webpositive/
H A DURLInputGroup.cpp114 virtual const BAutoCompleter::Choice* ChoiceAt(int32 index) const
117 fChoices.ItemAt(index));
/haiku/src/apps/mediaplayer/settings/
H A DSettingsWindow.cpp254 int32 index; local
255 if (message->FindInt32("key", &index) == B_OK && index == 1)
/haiku/src/apps/deskbar/
H A DSwitcher.cpp123 void Redraw(int32 index);
155 BRect FrameOf(int32 index) const;
191 void CenterOn(int32 index);
394 for (int32 index = 0; index < teamCount; index++) {
395 team_id team = (addr_t)TeamList()->ItemAt(index);
540 for (int32 index = 0; index < teamCount; index
664 int32 index; local
706 FindTeam(team_id teamID, int32* index) argument
1155 int32 index; local
1718 Redraw(int32 index) argument
2037 CenterOn(int32 index) argument
2137 int32 index = ItemAtPoint(where); local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/idualwifi7260/dev/pci/
H A Dif_iwm.c233 /* Convert an MCS index into an iwm_rates[] index. */
3268 uint16_t sn = 0, index = 0; local
3281 index = (buf->head_sn + i) % buf->buf_size;
3283 if (ml_empty(&entries[index].frames)) {
3291 timeradd(&entries[index].reorder_time, &timeout, &expiry);
3308 * If no frame expired and there are stored frames, index is now
5004 /* If this wasn't a part of an A-MSDU the sub-frame index will be 0 */
5056 int index = ssn % reorder_buf->buf_size; local
5063 chanidx = entries[index]
5173 int index; local
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwx.c224 /* Convert an MCS index into an iwx_rates[] index. */
3308 uint16_t sn = 0, index = 0; local
3321 index = (buf->head_sn + i) % buf->buf_size;
3323 if (ml_empty(&entries[index].frames)) {
3331 timeradd(&entries[index].reorder_time, &timeout, &expiry);
3348 * If no frame expired and there are stored frames, index is now
4794 /* If this wasn't a part of an A-MSDU the sub-frame index will be 0 */
4846 int index = ssn % reorder_buf->buf_size; local
4853 chanidx = entries[index]
4963 int index; local
[all...]
/haiku/src/add-ons/kernel/drivers/disk/nvme/
H A Dnvme_disk.cpp492 int32 index = request->iovec_i; local
493 if (index < 0 || index > request->iovec_count)
496 *address = request->iovecs[index].address + request->iovec_offset;
497 *length = request->iovecs[index].size - request->iovec_offset;
/haiku/src/add-ons/kernel/drivers/audio/hda/
H A Dhda_controller.cpp34 #define HDAC_INPUT_STREAM_OFFSET(controller, index) \
35 ((index) * HDAC_STREAM_SIZE)
36 #define HDAC_OUTPUT_STREAM_OFFSET(controller, index) \
37 (((controller)->num_input_streams + (index)) * HDAC_STREAM_SIZE)
38 #define HDAC_BIDIR_STREAM_OFFSET(controller, index) \
40 + (index)) * HDAC_STREAM_SIZE)
264 uint32 index)
303 ? controller->stream_positions[index * 2]
425 for (uint32 index = 0; index < HDA_MAX_STREAM
263 stream_handle_interrupt(hda_controller* controller, hda_stream* stream, uint32 index) argument
[all...]
/haiku/src/add-ons/kernel/busses/virtio/virtio_pci/
H A Dvirtio_pci.cpp664 int index = 0; local
679 index++;
/haiku/src/add-ons/kernel/busses/usb/
H A Dxhci.h120 status_t GetPortStatus(uint8 index,
122 status_t SetPortFeature(uint8 index, uint16 feature);
123 status_t ClearPortFeature(uint8 index, uint16 feature);
125 status_t GetPortSpeed(uint8 index, usb_speed *speed);
H A Dxhci.cpp885 uint8 index = 0; local
886 memcpy(&descriptor->trbs[index].address, requestData,
888 descriptor->trbs[index].status = TRB_2_IRQ(0) | TRB_2_BYTES(8);
889 descriptor->trbs[index].flags
892 descriptor->trbs[index].flags |=
896 index++;
900 descriptor->trbs[index].address = descriptor->buffer_addrs[0];
901 descriptor->trbs[index].status = TRB_2_IRQ(0)
904 descriptor->trbs[index].flags = TRB_3_TYPE(TRB_TYPE_DATA_STAGE)
914 index
2285 GetPortSpeed(uint8 index, usb_speed* speed) argument
2317 GetPortStatus(uint8 index, usb_port_status* status) argument
2377 SetPortFeature(uint8 index, uint16 feature) argument
2413 ClearPortFeature(uint8 index, uint16 feature) argument
[all...]
H A Duhci.h113 status_t GetPortStatus(uint8 index, usb_port_status *status);
114 status_t SetPortFeature(uint8 index, uint16 feature);
115 status_t ClearPortFeature(uint8 index, uint16 feature);
117 status_t ResetPort(uint8 index);
H A Duhci.cpp977 // in invalid index" to be printed, so apparently something is not right.
1865 UHCI::GetPortStatus(uint8 index, usb_port_status *status) argument
1867 if (index > 1)
1871 uint16 portStatus = ReadReg16(UHCI_PORTSC1 + index * 2);
1892 if (fPortResetChange & (1 << index))
1902 UHCI::SetPortFeature(uint8 index, uint16 feature) argument
1904 if (index > 1)
1909 return ResetPort(index);
1921 UHCI::ClearPortFeature(uint8 index, uint16 feature) argument
1923 if (index >
1948 ResetPort(uint8 index) argument
[all...]
H A Dohci.cpp794 OHCI::GetPortStatus(uint8 index, usb_port_status *status) argument
796 if (index >= fPortCount) {
797 TRACE_ERROR("get port status for invalid port %u\n", index);
802 uint32 portStatus = _ReadReg(OHCI_RH_PORT_STATUS(index));
832 TRACE("port %u status 0x%04x change 0x%04x\n", index,
839 OHCI::SetPortFeature(uint8 index, uint16 feature) argument
841 TRACE("set port feature index %u feature %u\n", index, feature);
842 if (index > fPortCount)
847 _WriteReg(OHCI_RH_PORT_STATUS(index), OHCI_RH_PORTSTATUS_PE
868 ClearPortFeature(uint8 index, uint16 feature) argument
1967 uint32 index = 0; local
[all...]
H A Dohci.h51 status_t GetPortStatus(uint8 index,
53 status_t SetPortFeature(uint8 index, uint16 feature);
54 status_t ClearPortFeature(uint8 index, uint16 feature);
56 status_t ResetPort(uint8 index);
H A Dehci.h79 status_t GetPortStatus(uint8 index, usb_port_status *status);
80 status_t SetPortFeature(uint8 index, uint16 feature);
81 status_t ClearPortFeature(uint8 index, uint16 feature);
83 status_t ResetPort(uint8 index);
84 status_t SuspendPort(uint8 index);
H A Dehci.cpp1369 EHCI::GetPortStatus(uint8 index, usb_port_status *status) argument
1371 if (index >= fPortCount)
1375 uint32 portStatus = ReadOpReg(EHCI_PORTSC + index * sizeof(uint32));
1404 if (fPortResetChange & (1 << index))
1406 if (fPortSuspendChange & (1 << index))
1414 EHCI::SetPortFeature(uint8 index, uint16 feature) argument
1416 if (index >= fPortCount)
1419 uint32 portRegister = EHCI_PORTSC + index * sizeof(uint32);
1424 return SuspendPort(index);
1427 return ResetPort(index);
1439 ClearPortFeature(uint8 index, uint16 feature) argument
1482 ResetPort(uint8 index) argument
1526 SuspendPort(uint8 index) argument
[all...]
/haiku/src/add-ons/kernel/bus_managers/pci/
H A Dpci.cpp37 pci_get_nth_pci_info(long index, pci_info *outInfo) argument
39 return gPCI->GetNthInfo(index, outInfo);
759 PCI::GetNthInfo(long index, pci_info *outInfo) argument
764 if (_GetNthInfo(fDomainData[domain].bus, &currentIndex, index, outInfo) >= B_OK)
2162 for (uint32 index = 0; index < count; index++) {
2163 volatile uint32 *entry = (uint32*)(info->table_address + 16 * index);
2350 for (uint8 index = 0; index < inf
[all...]
H A Dpci.h90 status_t GetNthInfo(long index, pci_info *outInfo);
227 long pci_get_nth_pci_info(long index, pci_info *outInfo);
/haiku/src/add-ons/control_look/BeControlLook/
H A DBeControlLook.cpp279 // Tweak ends to "include" the pixel at the index,
1610 uint32 borders, uint32 side, int32 index, int32 selected,
1616 bool isFirst = index == first;
1617 bool isFull = index != selected - 1;
1608 DrawInactiveTab(BView* view, BRect& rect, const BRect& updateRect, const rgb_color& base, uint32 flags, uint32 borders, uint32 side, int32 index, int32 selected, int32 first, int32 last) argument
/haiku/headers/os/drivers/bus/
H A DPCI.h93 status_t (*get_range)(void *cookie, uint32 index, pci_resource_range *range);
/haiku/headers/os/drivers/
H A DPCI.h130 long index, /* index into pci device table */
/haiku/src/kits/tracker/
H A DUtilities.cpp212 for (int32 index = 0; index < count; index++) {
213 if (fPoseList.ItemAt(index)->pose == pose) {
217 periodic_pose* periodic = fPoseList.RemoveItemAt(index);
237 for (int32 index = 0; index < count; index++) {
238 periodic_pose* periodic = fPoseList.ItemAt(index);
326 for (int32 index
1005 MatchArchivedVolume(BVolume* volume, const BMessage* message, int32 index) argument
1333 int32 index; local
[all...]
H A DPoseView.h192 void CheckPoseSortOrder(BPose*, int32 index);
241 BColumn* ColumnAt(int32 index) const;
253 BPose* PoseAtIndex(int32 index) const;
255 BPose* FindPose(BPoint where, int32* index = NULL) const;
259 BPose* FindPose(const Model*, int32* index = NULL) const;
260 BPose* FindPose(const node_ref*, int32* index = NULL) const;
261 BPose* FindPose(const entry_ref*, int32* index = NULL) const;
263 int32* index) const;
266 BPose* DeepFindPose(const node_ref* node, int32* index = NULL) const;
280 int32* index
[all...]
H A DTracker.cpp346 int32 index = 0; local
348 while ((window = WindowAt(index++)) != NULL) {
408 for (int32 index = 0;
409 message.FindString("paths", index, &target)
410 == B_OK; index++) {
632 for (int32 index = 0; index < count; index++) {
634 fWindowList.ItemAt(index));
722 for (int32 index
1722 int32 index; local
[all...]
H A DPoseView.cpp206 for (int32 index = 0; index < count; index++) {
208 index)->TargetModel()->EntryRef())));
466 for (int32 index = 0; ; index++) {
467 BColumn* column = BColumn::InstantiateFromMessage(message, index);
659 for (int32 index = 0; ; index++) {
660 const BColumn* column = ColumnAt(index);
1164 int32 index = fPoseList->IndexOf(ActivePose()); local
1619 int32 index; local
2065 MimeTypeAt(int32 index) argument
2116 InsertPoseAfter(BPose* pose, int32* index, int32 orientation, BRect* invalidRect) argument
3447 int32 index; local
3475 int32 index; local
3803 int32 index = FirstIndexAtOrBelow((int32)(poseRect.top - IconPoseHeight())); local
3844 int32 index = 0; local
3885 int32 index = FirstIndexAtOrBelow((int32)pose->Location(this).y, false); local
3899 int32 index = 0; local
4024 ScrollIntoView(BPose* pose, int32 index) argument
4059 SelectPose(BPose* pose, int32 index, bool scrollIntoView) argument
4072 AddPoseToSelection(BPose* pose, int32 index, bool scrollIntoView) argument
4435 int32 index = menu->IndexOf(resultingItem); local
4477 int32 index; local
5206 UpdateWasBrokenSymlinkBinder(BPose* pose, Model* model, int32 index, BPoseView* poseView, BObjectList<Model>* fBrokenLinks) argument
5242 PoseHandleDeviceUnmounted(BPose* pose, Model* model, int32 index, BPoseView* poseView, dev_t device) argument
5256 OneMetaMimeChanged(BPose* pose, Model* model, int32 index, BPoseView* poseView, const char* type) argument
5486 int32 index; local
5698 int32 index; local
5863 int32 index; local
6004 ConvertZombieToPose(Model* zombie, int32 index) argument
6099 int32 index; local
6132 int32 index = IndexOfPose(pose); local
6354 int32 index = IndexOfPose(pose); local
6397 int32 index = IndexOfPose(pose); local
6638 int32 index; local
6690 int32 index; local
6708 int32 index; local
6740 int32 index; local
6791 int32 index; local
6864 int32 index; local
6913 FindBestMatch(int32* index) argument
7341 int32 index; local
7415 int32 index; local
7473 int32 index; local
7507 WasClickInPath(const BPose* pose, int32 index, BPoint mouseLocation) const argument
7620 int32 index = CurrentPoseList()->IndexOf(pose); local
8000 int32 index = CurrentPoseList()->IndexOf(pose); local
8028 DeleteSymLinkPoseTarget(const node_ref* itemNode, BPose* pose, int32 index) argument
8045 DeletePose(const node_ref* itemNode, BPose* pose, int32 index) argument
8117 int32 index = (int32)(bounds.bottom / fListElemHeight); local
8167 int32 index = (int32)(point.y / fListElemHeight); local
8218 OpenSelection(BPose* clickedPose, int32* index) argument
8253 OpenSelectionUsing(BPose* clickedPose, int32* index) argument
8836 AddRemovePoseFromSelection(BPose* pose, int32 index, bool select) argument
9112 DrawPose(BPose* pose, int32 index, bool fullDraw) argument
9516 int32 index = poseList->IndexOf(searchResult); local
9750 int32 index = fColumnList->IndexOf(dest); local
9779 int32 index; local
10221 CalcPoseRect(const BPose* pose, int32 index, bool firstColumnOnly) const argument
10239 CalcPoseRectList(const BPose* pose, int32 index, bool firstColumnOnly) const argument
10384 RemoveFilteredPose(BPose* pose, int32 index) argument
[all...]

Completed in 363 milliseconds

1234567891011>>