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

12

/haiku-fatelf/src/libs/compat/freebsd_network/
H A DCondvar.h13 void conditionInit(struct cv*, const char*);
14 void conditionPublish(struct cv*, const void*, const char*);
15 void conditionUnpublish(struct cv*);
16 int conditionTimedWait(struct cv*, const int);
17 void conditionWait(struct cv*);
18 void conditionNotifyOne(struct cv*);
H A Dcondvar.c13 void cv_init(struct cv* variable, const char* description)
19 void cv_signal(struct cv* variable)
25 int cv_timedwait(struct cv* variable, struct mtx* mutex, int timeout)
37 void cv_wait(struct cv* variable, struct mtx* mutex)
H A DCondvar.cpp16 conditionInit(struct cv* variable, const char* description)
23 conditionPublish(struct cv* variable, const void* waitChannel,
31 conditionUnpublish(struct cv* variable)
38 conditionTimedWait(struct cv* variable, const int timeout)
50 conditionWait(struct cv* variable)
57 conditionNotifyOne(struct cv* variable)
H A Dsynch.c20 struct cv sleep;
/haiku-fatelf/src/libs/compat/freebsd_network/compat/sys/
H A Dcondvar.h20 struct cv {
25 void cv_init(struct cv*, const char*);
26 void cv_destroy(struct cv*);
27 void cv_wait(struct cv*, struct mtx*);
28 int cv_timedwait(struct cv*, struct mtx*, int);
29 void cv_signal(struct cv*);
/haiku-fatelf/src/system/libroot/os/arch/mipsel/
H A Dsystem_time.c27 uint32 cv = *sConversionFactor; local
28 return (timeBase >> 32) * cv + (((timeBase & 0xffffffff) * cv) >> 32);
/haiku-fatelf/src/system/libroot/os/arch/ppc/
H A Dsystem_time.c27 uint32 cv = *sConversionFactor; local
28 return (timeBase >> 32) * cv + (((timeBase & 0xffffffff) * cv) >> 32);
/haiku-fatelf/src/system/libroot/os/arch/arm/
H A Dsystem_time.c38 uint32 cv = sConversionFactor ? *sConversionFactor : 0; local
39 return (timeBase >> 32) * cv + (((timeBase & 0xffffffff) * cv) >> 32);
/haiku-fatelf/src/system/libroot/os/arch/m68k/
H A Dsystem_time.c36 uint32 cv = *sConversionFactor; local
37 return (timeBase >> 32) * cv + (((timeBase & 0xffffffff) * cv) >> 32);
/haiku-fatelf/headers/libs/agg/
H A Dagg_color_gray.h168 calc_type cv, ca; local
177 cv = v + c.v; v = (cv > calc_type(base_mask)) ? calc_type(base_mask) : cv;
183 cv = v + ((c.v * cover + cover_mask/2) >> cover_shift);
185 v = (cv > calc_type(base_mask)) ? calc_type(base_mask) : cv;
355 calc_type cv, ca; local
364 cv = v + c.v; v = (cv > calc_typ
[all...]
H A Dagg_pixfmt_gray.h43 static AGG_INLINE void blend_pix(value_type* p, unsigned cv, argument
46 *p = (value_type)((((cv - calc_type(*p)) * alpha) + (calc_type(*p) << base_shift)) >> base_shift);
59 static AGG_INLINE void blend_pix(value_type* p, unsigned cv, argument
64 *p = (value_type)((*p * alpha + cv * cover) >> base_shift);
67 static AGG_INLINE void blend_pix(value_type* p, unsigned cv, argument
70 *p = (value_type)(((*p * (color_type::base_mask - alpha)) >> base_shift) + cv);
/haiku-fatelf/src/bin/gdb/gdb/
H A Dvarobj.c564 struct vlist *cv;
574 cv = *(varobj_table + index);
575 while ((cv != NULL) && (strcmp (cv->var->obj_name, objname) != 0))
576 cv = cv->next;
578 if (cv == NULL)
581 return cv->var;
831 struct varobj **cv;
838 cv
563 struct vlist *cv; local
830 struct varobj **cv; local
882 struct varobj **cv; local
1109 struct vlist *cv; local
1152 struct vlist *cv; local
[all...]
H A Dia64-tdep.c409 unsigned char cv = (unsigned char) val; local
412 c |= ((unsigned char) (cv << (8 - to % 8))) >> (8 - to % 8);
/haiku-fatelf/src/tests/system/kernel/util/
H A DVectorTest.cpp843 const TestVector<Value> &cv = v; local
845 CHK(v[i] == cv[i]);
846 CHK(v.ElementAt(i) == cv.ElementAt(i));
874 const TestVector<Value> &cv = v; local
876 TestVector<Value>::ConstIterator cit = cv.Begin();
880 CHK(&cv[index] == &*cit);
883 cit = cv.Find(cv[i], ++cit);
891 TestVector<Value>::ConstIterator cit = cv.Find(value);
928 const TestVector<Value> &cv local
[all...]
H A DVectorSetTest.cpp699 const TestClass &cv = v;
704 ConstIterator cit = cv.Find(value);
711 ConstIterator cit = cv.Find(value);
753 const TestClass &cv = v;
759 ConstIterator cit = cv.FindClose(value, true);
764 cit = cv.FindClose(value, false);
773 ConstIterator cit = cv.FindClose(value, true);
778 cit = cv.FindClose(value, false);
820 const TestClass &cv = v;
822 ConstIterator cit = cv
[all...]
H A DOrderedMapTest.h763 const TestClass &cv = v; local
770 CHK(&cv.Get(key) == &value);
958 const TestClass &cv = v; local
963 ConstIterator cit = cv.Find(key);
974 ConstIterator cit = cv.Find(key);
1023 const TestClass &cv = v; local
1029 ConstIterator cit = cv.FindClose(key, true);
1037 cit = cv.FindClose(key, false);
1049 ConstIterator cit = cv.FindClose(key, true);
1058 cit = cv
1106 const TestClass &cv = v; local
[all...]
/haiku-fatelf/src/system/libroot/posix/glibc/libio/
H A Dwfileops.c462 struct _IO_codecvt *cv = fp->_codecvt; local
465 int clen = (*cv->__codecvt_do_encoding) (cv);
480 nread = (*cv->__codecvt_do_length) (cv, &fp->_wide_data->_IO_state,
581 struct _IO_codecvt *cv; variable in typeref:struct:_IO_codecvt
588 cv = fp->_codecvt;
589 clen = (*cv->__codecvt_do_encoding) (cv);
600 nread = (*cv
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dthreads.c120 pthread_cond_t cv; member in struct:_xmlRMutex
294 pthread_cond_init(&tok->cv, NULL);
356 pthread_cond_wait(&tok->cv, &tok->lock);
396 pthread_cond_signal(&tok->cv);
/haiku-fatelf/src/libs/ncurses/progs/
H A Ddump_entry.c689 char *cv = _nc_infotocap(name, srccap, params); local
691 if (cv == 0) {
712 sprintf(buffer, "%s=%s", name, cv);
/haiku-fatelf/src/libs/termcap/
H A Dtermcap.src307 :ch=\E[%+^AG:cv=\E[%+^Ad:
412 :cm=\E[%i%d;%dH:ct=\E[g:cv=\E[%i%dd:ec=\E[%dX:ei=:im=:\
610 :cr=^M:ct=\E[2g:cv=\E[%i%dd:dc=\E[P:dl=\E[M:do=\E[B:\
632 :cr=^M:ct=\E[2g:cv=\E[%i%dd:dc=\E[P:dl=\E[M:do=\E[B:\
657 :cs=\E[%i%d;%dr:ct=\E[2g:cv=\E[%+^Ad:dc=\E[P:dl=\E[M:\
734 :cs=\E[%i%d;%dr:ct=\E[3g:cv=\E[%i%dd:dc=\E[P:dl=\E[M:\
757 :cs=\E[%i%d;%dr:ct=\E[3g:cv=\E[%i%dd:dc=\E[P:dl=\E[M:\
782 :cs=\E[%i%d;%dr:ct=\E[3g:cv=\E[%i%dd:dc=\E[P:dl=\E[M:\
808 :cs=\E[%i%d;%dr:ct=\E[3g:cv=\E[%i%dd:dc=\E[P:dl=\E[M:\
833 :cs=\E[%i%d;%dr:ct=\E[3g:cv
[all...]
/haiku-fatelf/src/libs/tiff/
H A Dtif_dirwrite.c745 char cv; local
746 TIFFGetField(tif, fip->field_tag, &cv);
747 if (!TIFFWriteByteArray(tif, dir, &cv))
/haiku-fatelf/src/libs/print/libgutenprint/src/main/
H A Dprint-vars.c1941 char *cv = stp_curve_write_string(curve); local
1943 p_name, cv);
1944 stp_free(cv);
/haiku-fatelf/src/libs/compat/freebsd_wlan/net80211/
H A Dieee80211_scan.c62 struct cv ss_scan_cv; /* scan signal */
/haiku-fatelf/src/libs/ncurses/include/
H A DCaps.uwin419 row_address vpa str cv - - -B-GE* vertical position #1 absolute (P)
/haiku-fatelf/src/libs/pdflib/bind/pdflib/perl/
H A Dpdflib_pl.c360 SWIGEXPORT(void,boot_pdflib_pl)(CV *cv, CPerlObj *pPerl);

Completed in 234 milliseconds

12