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

12

/haiku/src/add-ons/kernel/file_systems/websearchfs/
H A Dattr2c8 /bin/catattr "$1" "$2" | tail +2 | cut -c 10-57 | sed 's/,/, 0x/g;s/ / 0x/;s/ *//;s/$/,/'
10 #catattr "$1" "$2" | tail +2 | cut -c 10-57 | sed 's/,/, 0x/g;s/ / 0x/;s/ *//;s/$/,/'
/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/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/headers/private/kernel/util/
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);
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;
/haiku/src/system/libroot/posix/arch/riscv64/
H A Dsigsetjmp.S29 tail __setjmp_save_sigs
37 tail sigsetjmp
H A Dsiglongjmp.S31 tail __longjmp_return
/haiku/src/system/libnetwork/netresolv/include/isc/
H A Dlist.h24 #define LIST(type) struct { type *head, *tail; }
26 do { (list).head = NULL; (list).tail = NULL; } while (/*CONSTCOND*/0)
40 #define TAIL(list) ((list).tail)
49 (list).tail = (elt); \
58 if ((list).tail != NULL) \
59 (list).tail->link.next = (elt); \
62 (elt)->link.prev = (list).tail; \
64 (list).tail = (elt); \
73 INSIST((list).tail == (elt)); \
74 (list).tail
[all...]
/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/build/scripts/
H A Dgenerate_CountryFlags.sh16 tail -n +3 "$file" >> $destination
/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/system/kernel/lib/arch/x86/
H A Darch_string.S25 je .tail
27 je .tail
42 .tail:
/haiku/src/system/libroot/posix/musl/string/
H A Dstpncpy.c19 if (!n || !*s) goto tail;
27 tail:
/haiku/src/system/libroot/posix/musl/math/
H A Dexp2.c74 double_t kd, r, r2, scale, tail, tmp; local
103 /* 2^(k/N) ~= scale * (1 + tail). */
106 tail = asdouble(T[idx]);
109 /* exp2(x) = 2^(k/N) * 2^r ~= scale + scale * (tail + 2^r - 1). */
114 tmp = tail + r * C1 + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5);
H A Dexp.c76 double_t kd, z, r, r2, scale, tail, tmp; local
116 /* 2^(k/N) ~= scale * (1 + tail). */
119 tail = asdouble(T[idx]);
122 /* exp(x) = 2^(k/N) * exp(r) ~= scale + scale * (tail + exp(r) - 1). */
127 tmp = tail + r + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5);
H A Dpow.c36 static inline double_t log_inline(uint64_t ix, double_t *tail) argument
99 *tail = hi - y + lo;
171 double_t kd, z, r, r2, scale, tail, tmp; local
213 /* 2^(k/N) ~= scale * (1 + tail). */
216 tail = asdouble(T[idx]);
219 /* exp(x) = 2^(k/N) * exp(r) ~= scale + scale * (tail + exp(r) - 1). */
224 tmp = tail + r + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5);
/haiku/src/tests/system/kernel/scheduler/
H A Doverride_types.h48 struct thread *tail; member in struct:thread_queue
/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_power.c143 qhead->tail = NULL;
195 qhead->tail = NULL;
248 qhead->tail = NULL;
368 if (qhead->tail == NULL) {
391 qhead->tail->m_nextpkt = m;
397 qhead->tail = m;
437 qhead->head = qhead->tail = NULL;
446 qhead->head = qhead->tail = NULL;
/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/kits/mail/
H A Dmail_util.cpp379 char *head, *tail; local
400 for (head = tail = string;
401 ((charset = strstr(tail, "=?")) != NULL)
407 tail = end)
409 // Copy non-encoded text (from tail up to charset) to the output.
415 for (int i = 0; i < charset-tail; i++) {
416 if (!isspace (tail[i])) {
422 if (string != tail && tail != charset)
423 memmove(string, tail, charse
[all...]
/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/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/headers/private/kernel/vm/
H A Dvm_page.h41 void vm_page_requeue(struct vm_page *page, bool tail);

Completed in 292 milliseconds

12