Searched defs:iBuf (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Devices/Storage/
H A DVBoxSCSI.h116 uint32_t iBuf; member in struct:VBOXSCSI
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dlibteac.c957 int iBuf; local
981 iBuf= buf->bufId;
982 msg = &(tcomm->mbuff[vp][iBuf]);
991 tcomm->sbuf_pull_event[iBuf]);
1009 tcomm->r_event[vp][iBuf])
1027 msg->msgnum,iBuf, ids[iDest],iDest);
1043 int iBuf= 0; local
1066 iBuf= i;
1075 tcomm->mbuff[id][iBuf].new= 0;
1076 tcomm->m_rcv[id][iBuf]
[all...]
/vbox/src/VBox/Devices/Input/
H A DUsbKbd.cpp603 unsigned iBuf = 0; local
607 Assert(iBuf <= RT_ELEMENTS(pReport->aKeys));
612 else if (iBuf == RT_ELEMENTS(pReport->aKeys))
623 pReport->aKeys[iBuf] = iKey;
624 ++iBuf;
/vbox/src/VBox/RDP/client-1.8.3/vrdp/
H A Drdpusb.c205 * @param iBuf the index into the buffer to add the string at
207 * @param piString where to write back @a iBuf or zero if there is no string
211 static void addStringToEntry(char *pBuf, uint16_t iBuf, const char *pcsz, argument
217 *piNext = iBuf;
221 if (cch > DEV_ENTRY_SIZE - iBuf)
223 strcpy(pBuf + iBuf, pcsz);
224 *piString = iBuf;
225 *piNext = iBuf + cch;
/vbox/src/VBox/Main/src-client/
H A DConsoleImpl.cpp1856 size_t iBuf = 0; local
1860 size_t cchName = strlen(pszBuf + iBuf);
1861 aNames[i] = &pszBuf[iBuf];
1862 iBuf += cchName + 1;
1864 size_t cchValue = strlen(pszBuf + iBuf);
1865 aValues[i] = &pszBuf[iBuf];
1866 iBuf += cchValue + 1;
1868 size_t cchTimestamp = strlen(pszBuf + iBuf);
1869 aTimestamps[i] = RTStrToUInt64(&pszBuf[iBuf]);
1870 iBuf
[all...]

Completed in 59 milliseconds