Searched defs:ppos (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Devices/Audio/
H A Ddsoundaudio.c1007 DWORD wpos, ppos, old_pos; local
1023 &ppos,
1029 hr = IDirectSoundBuffer_GetCurrentPosition(dsb, &ppos, &wpos);
1046 cur_blat = audio_ring_dist (wpos, ppos, bufsize);
1059 if (ds->old_pos == ppos) {
1067 if ((old_pos < ppos) && ((old_pos + len) > ppos)) {
1068 len = ppos - old_pos;
1071 if ((old_pos > ppos) && ((old_pos + len) > (ppos
[all...]
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageInfo.cpp1031 size_t pos, ppos; local
1032 pos = ppos = 0;
1033 #define ITERATE_TO_NEXT_TERM(res, str, pos, ppos) \
1035 pos = str.find(",", ppos); \
1041 res = str.substr(ppos, pos - ppos); \
1042 Log2((#res " %s pos:%d, ppos:%d\n", res.c_str(), pos, ppos)); \
1043 ppos = pos + 1; \
1045 ITERATE_TO_NEXT_TERM(strName, utf, pos, ppos);
[all...]
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl2.cpp4756 size_t pos, ppos; local
4757 pos = ppos = 0;
4758 #define ITERATE_TO_NEXT_TERM(res, str, pos, ppos) \
4760 pos = str.find(",", ppos); \
4766 res = str.substr(ppos, pos - ppos); \
4767 Log2((#res " %s pos:%d, ppos:%d\n", res.c_str(), pos, ppos)); \
4768 ppos = pos + 1; \
4770 ITERATE_TO_NEXT_TERM(strName, utf, pos, ppos);
[all...]

Completed in 70 milliseconds