Searched refs:comp (Results 1 - 25 of 29) sorted by relevance

12

/haiku/src/kits/mail/
H A Db_mail_message.cpp42 BTextMailComponent *comp = new BTextMailComponent; local
44 comp->SetDecodedData(&io);
46 comp->SetEncoding(quoted_printable,encoding);
49 ((BEmailMessage *)(fFields))->AddComponent(comp);
57 BTextMailComponent *comp = new BTextMailComponent(); local
59 comp->SetDecodedData(&io);
73 comp->SetEncoding(quoted_printable,encode);
76 ((BEmailMessage *)(fFields))->AddComponent(comp);
/haiku/headers/cpp/
H A Dstl_queue.h129 _Compare comp; member in class:priority_queue
132 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {}
134 : c(__s), comp(__x)
135 { make_heap(c.begin(), c.end(), comp); }
140 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); }
145 : c(__first, __last), comp(__x)
146 { make_heap(c.begin(), c.end(), comp); }
151 : c(__s), comp(__x)
154 make_heap(c.begin(), c.end(), comp);
159 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); }
[all...]
/haiku/src/bin/
H A Dcomm.c72 int comp, file1done = 0, file2done = 0, read1, read2; local
145 comp = stricoll(line1, line2);
147 comp = strcoll(line1, line2);
149 if (!comp) {
157 if (comp < 0) {
/haiku/headers/libs/print/libprint/
H A DPrintUtils.h78 void SortItems(int (*comp)(const T**, const T**));
128 void TList<T>::SortItems(int (*comp)(const T**, const T**)) {
129 sort_func sort = (sort_func)comp;
/haiku/src/libs/compat/openbsd_wlan/
H A Dsubr_tree.c407 int comp = 0; local
414 comp = (*t->t_compare)(elm, node);
415 if (comp < 0)
417 else if (comp > 0)
426 if (comp < 0)
446 int comp; local
450 comp = (*t->t_compare)(key, node);
451 if (comp < 0)
453 else if (comp > 0)
469 int comp; local
[all...]
/haiku/src/add-ons/translators/ppm/
H A Dcolorspace.cpp243 int comp = 255 - in_data[2] - in_data[3]; local
244 out_buf[0] = comp < 0 ? 0 : comp;
245 comp = 255 - in_data[1] - in_data[3];
246 out_buf[1] = comp < 0 ? 0 : comp;
247 comp = 255 - in_data[0] - in_data[3];
248 out_buf[2] = comp < 0 ? 0 : comp;
/haiku/src/add-ons/translators/png/
H A DPNGTranslator.cpp578 int32 comp; local
581 comp = 255 - pbits[2] - pbits[3];
582 ppng[0] = (comp < 0) ? 0 : comp;
584 comp = 255 - pbits[1] - pbits[3];
585 ppng[1] = (comp < 0) ? 0 : comp;
587 comp = 255 - pbits[0] - pbits[3];
588 ppng[2] = (comp < 0) ? 0 : comp;
[all...]
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DExtentAllocator.h78 int comp = Compare(a->offset, b); local
80 return comp;
H A DBTree.cpp99 int low = 0, mid = 0, comp = 0; local
105 comp = key.Compare(*other);
106 if (comp < 0)
108 else if (comp > 0)
118 // k : comp < 0
119 // k : comp > 0
120 if (type == BTREE_BACKWARD && comp < 0)
122 else if (type == BTREE_FORWARD && comp > 0)
129 TRACE("SearchSlot() found slot %" B_PRId32 " comp %" B_PRId32 "\n",
130 *slot, comp);
[all...]
/haiku/src/libs/compat/openbsd_wlan/sys/
H A Dtree.h595 int comp = 0; \
599 comp = (cmp)(elm, parent); \
600 if (comp < 0) \
602 else if (comp > 0) \
609 if (comp < 0) \
625 int comp; \
627 comp = cmp(elm, tmp); \
628 if (comp < 0) \
630 else if (comp > 0) \
644 int comp; \
[all...]
/haiku/src/add-ons/translators/bmp/
H A DBMPTranslator.cpp738 int32 comp = 255 - bitspixel[2] - bitspixel[3]; local
739 bmppixel[0] = (comp < 0) ? 0 : comp;
741 comp = 255 - bitspixel[1] - bitspixel[3];
742 bmppixel[1] = (comp < 0) ? 0 : comp;
744 comp = 255 - bitspixel[0] - bitspixel[3];
745 bmppixel[2] = (comp < 0) ? 0 : comp;
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/contrib/ath_hal/ar9300/
H A Dar9300_freebsd.h39 u_int compicvLen, u_int compivLen, u_int comp);
H A Dar9300_stub_funcs.h181 u_int compicvLen, u_int compivLen, u_int comp);
H A Dar9300_stub_funcs.c1023 u_int compicvLen, u_int compivLen, u_int comp)
1018 ar9300_Stub_SetupTxDesc(struct ath_hal *ah, struct ath_desc *ds, u_int pktLen, u_int hdrLen, HAL_PKT_TYPE type, u_int txPower, u_int txRate0, u_int txTries0, u_int keyIx, u_int antMode, u_int flags, u_int rtsctsRate, u_int rtsctsDuration, u_int compicvLen, u_int compivLen, u_int comp) argument
H A Dar9300_freebsd.c730 u_int compivLen, u_int comp)
726 ar9300_freebsd_setup_tx_desc(struct ath_hal *ah, struct ath_desc *ds, u_int pktLen, u_int hdrLen, HAL_PKT_TYPE type, u_int txPower, u_int txRate0, u_int txTries0, u_int keyIx, u_int antMode, u_int flags, u_int rtsctsRate, u_int rtsCtsDuration, u_int compicvLen, u_int compivLen, u_int comp) argument
/haiku/src/add-ons/translators/tga/
H A DTGATranslator.cpp496 int32 comp; local
499 comp = 255 - pbits[2] - pbits[3];
500 ptga[0] = (comp < 0) ? 0 : comp;
502 comp = 255 - pbits[1] - pbits[3];
503 ptga[1] = (comp < 0) ? 0 : comp;
505 comp = 255 - pbits[0] - pbits[3];
506 ptga[2] = (comp < 0) ? 0 : comp;
[all...]
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5211/
H A Dar5211.h195 u_int compicvLen, u_int compivLen, u_int comp);
H A Dar5211_xmit.c524 u_int comp)
511 ar5211SetupTxDesc(struct ath_hal *ah, struct ath_desc *ds, u_int pktLen, u_int hdrLen, HAL_PKT_TYPE type, u_int txPower, u_int txRate0, u_int txTries0, u_int keyIx, u_int antMode, u_int flags, u_int rtsctsRate, u_int rtsctsDuration, u_int compicvLen, u_int compivLen, u_int comp) argument
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5210/
H A Dar5210.h172 u_int compicvLen, u_int compivLen, u_int comp);
H A Dar5210_xmit.c492 u_int comp)
479 ar5210SetupTxDesc(struct ath_hal *ah, struct ath_desc *ds, u_int pktLen, u_int hdrLen, HAL_PKT_TYPE type, u_int txPower, u_int txRate0, u_int txTries0, u_int keyIx, u_int antMode, u_int flags, u_int rtsctsRate, u_int rtsctsDuration, u_int compicvLen, u_int compivLen, u_int comp) argument
/haiku/src/add-ons/media/media-add-ons/finepix_webcam/FinePixJpeg/
H A Dfinepix-jpeg.c54 int hv; /* horiz/vert, copied from comp */
55 int tq; /* quant tbl, copied from comp */
117 struct comp { struct
133 static struct comp comps[MAXCOMP];
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5212/
H A Dar5212_xmit.c703 u_int comp)
729 | (comp << AR_CompProc_S)
690 ar5212SetupTxDesc(struct ath_hal *ah, struct ath_desc *ds, u_int pktLen, u_int hdrLen, HAL_PKT_TYPE type, u_int txPower, u_int txRate0, u_int txTries0, u_int keyIx, u_int antMode, u_int flags, u_int rtsctsRate, u_int rtsctsDuration, u_int compicvLen, u_int compivLen, u_int comp) argument
/haiku/src/add-ons/kernel/drivers/network/wlan/atheroswifi/dev/ath/ath_hal/ar5416/
H A Dar5416.h378 u_int compicvLen, u_int compivLen, u_int comp);
/haiku/src/kits/interface/
H A DColumnListView.cpp4638 int comp = 0; local
4642 comp = column->CompareFields(field1, field2);
4645 comp = -comp;
4647 if (comp != 0)
4648 return comp;
/haiku/src/bin/network/ping/
H A Dping6.c1502 const u_char *comp; local
1525 comp = base + (i & 0x3f);
1526 if (dnsdecode(comp, cp, base, cresult,

Completed in 184 milliseconds

12