Searched refs:tail (Results 1 - 25 of 49) sorted by path

12

/haiku/3rdparty/pulkomandy/
H A Dcatmerge.sh16 # Ignore diff header and headlines from both files (tail), remove diff's
20 tail -n +3|cut -b2- > $TEMPFILE
26 # Exclude the headline from that (tail -n +2)
28 sort -u -t"$TAB" -k 1,2 <(tail -n +2 $OLD) <(tail -n +2 $NEW)|\
/haiku/build/scripts/
H A Dgenerate_CountryFlags.sh16 tail -n +3 "$file" >> $destination
/haiku/headers/libs/agg/
H A Dagg_arrowhead.h48 void tail(double d1, double d2, double d3, double d4) function in class:agg::arrowhead
57 void tail() { m_tail_flag = true; } function in class:agg::arrowhead
/haiku/headers/private/graphics/radeon/
H A Dradeon_interface.h453 uint32 tail, tail_mask; // next write position in dwords; mask for wrap-arounds member in struct:__anon28::__anon29
/haiku/headers/private/kernel/util/
H A DSinglyLinkedList.h255 // Neither list is empty -- find the tail of this list.
256 Element* tail = fFirst; local
257 while (Element* next = sGetLink(tail)->next)
258 tail = next;
260 sGetLink(tail)->next = fromList->fFirst;
H A Dqueue.h16 void *tail; member in struct:queue
29 int tail; member in struct:fixed_queue
H A DDoublyLinkedList.h657 Element* tail = Head(); local
658 while (tail != NULL) {
659 Element* leastElement = tail;
660 Element* element = tail;
666 if (leastElement != tail) {
668 InsertBefore(tail, leastElement);
670 tail = GetNext(tail);
/haiku/headers/private/kernel/vm/
H A Dvm_page.h41 void vm_page_requeue(struct vm_page *page, bool tail);
/haiku/src/add-ons/accelerants/radeon/
H A DCP.c58 - cp->ring.tail;
59 //space = INREG( ai->regs, RADEON_CP_RB_RPTR ) - cp->ring.tail;
68 SHOW_FLOW( 3, "head=%ld, tail=%ld, space=%ld",
71 cp->ring.tail, space );
241 ring_tail = cp->ring.tail; \
255 cp->ring.tail = ring_tail; \
341 //SHOW_FLOW( 3, "new tail: %d", cp->ring.tail );
347 OUTREG( ai->regs, RADEON_CP_RB_WPTR, cp->ring.tail );
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi3945/dev/wpi/
H A Dif_wpi.c1913 struct wpi_rx_tail *tail; local
1932 tail = (struct wpi_rx_tail *)((caddr_t)(head + 1) + len);
1933 flags = le32toh(tail->flags);
1938 head->plcp, head->chan, (uintmax_t)le64toh(tail->tstamp));
2012 sc->rx_tstamp = tail->tstamp;
2022 tap->wr_tsft = tail->tstamp;
/haiku/src/add-ons/kernel/generic/dpc/
H A Ddpc.c35 int tail; member in struct:__anon5
95 queue->head = queue->tail = 0;
179 queue->slots[queue->tail].function = function;
180 queue->slots[queue->tail].arg = arg;
181 queue->tail = (queue->tail + 1) % queue->size;
/haiku/src/bin/pcmcia-cs/
H A Dyacc_cis.y98 tuple_info_t *tail = $1;
99 while (tail->next != NULL) tail = tail->next;
100 tail->next = $2;
/haiku/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_power.h59 struct mbuf *tail; member in struct:ieee80211_psq::ieee80211_psq_head
H A Dieee80211_superg.h64 struct mbuf *tail; /* last frame in queue */ member in struct:ieee80211_stageq
/haiku/src/system/kernel/lib/arch/x86/
H A Darch_string.S25 je .tail
27 je .tail
42 .tail:
/haiku/src/system/kernel/util/
H A Dqueue.cpp19 queue_element *tail; member in struct:queue_typed
27 q->head = q->tail = NULL;
48 if (q->tail == temp)
49 q->tail = last;
67 if (q->tail == NULL) {
68 q->tail = elem;
71 q->tail->next = elem;
72 q->tail = elem;
89 if (q->tail == elem)
90 q->tail
[all...]
/haiku/src/system/kernel/vm/
H A DVMPageQueue.h38 inline void Requeue(vm_page* page, bool tail);
45 inline void RequeueUnlocked(vm_page* page, bool tail);
167 VMPageQueue::Requeue(vm_page* page, bool tail) argument
177 fPages.Add(page, tail);
237 VMPageQueue::RequeueUnlocked(vm_page* page, bool tail) argument
240 Requeue(page, tail);
/haiku/src/tests/system/kernel/scheduler/
H A Doverride_types.h48 struct thread *tail; member in struct:thread_queue
/haiku/headers/private/runtime_loader/
H A Druntime_loader.h165 image_t *tail; member in struct:image_queue_t
/haiku/src/add-ons/accelerants/intel_extreme/
H A Dengine.cpp50 // benaphore does), but it must happen before writing the new tail...
253 uint32 head, tail; local
257 tail = read32(ring.register_base + RING_BUFFER_TAIL)
260 if (head == tail)
/haiku/src/add-ons/kernel/busses/usb/
H A Dohci.cpp1025 // the current tail will become the first descriptor
1081 // the current tail will become the first descriptor
1221 // are canceled by setting the head pointer to the tail pointer
1666 // fill in the information of the first descriptor into the current tail
1667 ohci_general_td *tail = (ohci_general_td *)endpoint->tail_logical_descriptor; local
1668 tail->flags = first->flags;
1669 tail->buffer_physical = first->buffer_physical;
1670 tail->next_physical_descriptor = first->next_physical_descriptor;
1671 tail->last_physical_byte_address = first->last_physical_byte_address;
1672 tail
1707 ohci_isochronous_td *tail local
1913 ohci_isochronous_td *tail = _CreateIsochronousDescriptor(0); local
1919 ohci_general_td *tail = _CreateGeneralDescriptor(0); local
[all...]
/haiku/src/add-ons/kernel/drivers/graphics/radeon/
H A DCP_setup.c274 si->cp.ring.tail = cur_read_ptr;
370 cp->ring.tail = 0;
/haiku/src/add-ons/kernel/drivers/network/wlan/iaxwifi200/dev/pci/
H A Dif_iwx.c2046 ring->tail = 0;
2165 ring->tail = 0;
5345 txd = &ring->data[ring->tail];
5347 iwx_clear_tx_desc(sc, ring, ring->tail);
5348 iwx_tx_update_byte_tbl(sc, ring, ring->tail, 0, 0);
5352 ring->tail = (ring->tail + 1) % IWX_TX_RING_COUNT;
11280 * some dummy TR/CR tail pointers - which shouldn't be
H A Dif_iwxvar.h251 int tail; member in struct:iwx_tx_ring
/haiku/src/add-ons/kernel/drivers/network/wlan/idualwifi7260/dev/pci/
H A Dif_iwm.c1435 ring->tail = 0;
1538 ring->tail = 0;
2468 ring->tail = idx;
5713 while (ring->tail != idx) {
5714 txd = &ring->data[ring->tail];
5716 iwm_reset_sched(sc, ring->qid, ring->tail, IWM_STATION_ID);
5720 ring->tail = (ring->tail + 1) % IWM_TX_RING_COUNT;
8002 struct iwm_scan_req_umac_tail_v2 *tail; local
8085 tail
[all...]

Completed in 280 milliseconds

12