Home
last modified time | relevance | path

Searched refs:curPos (Results 1 – 14 of 14) sorted by relevance

/external/deqp/execserver/
DxsProtocol.cpp122 size_t curPos = m_buf.size(); in put() local
123 m_buf.resize(curPos + sizeof(T)); in put()
124 deMemcpy(&m_buf[curPos], &netValue, sizeof(T)); in put()
134 int curPos = (int)m_buf.size(); in put() local
137 m_buf.resize(curPos + strLen+1); in put()
138 deMemcpy(&m_buf[curPos], &value[0], strLen+1); in put()
DxsWin32TestProcess.cpp134 int curPos = 0; in run() local
139 while (curPos < (int)m_caseList.size()) in run()
142 const int numToWrite = de::min(maxWriteSize, (int)m_caseList.size() - curPos); in run()
145 if (!WriteFile(m_dst, &m_caseList[curPos], (DWORD)numToWrite, NULL, &overlapped)) in run()
165 curPos += (int)numBytesWritten; in run()
/external/deqp/execserver/tools/
DxsTest.cpp994 int curPos = 0;
995 while (curPos < dataSize)
997 int blockSize = 1 + deRandom_getUint32(&rnd) % (dataSize-curPos);
999 deFileResult result = deFile_write(file, &data[curPos], blockSize, &numWritten);
1004 curPos += blockSize;
1011 curPos = 0;
1012 while (curPos < dataSize)
1015 …int numToRead = 1 + deRandom_getUint32(&rnd) % deMin(dataSize-curPos, DE_LENGTH_OF_ARRAY(block)…
1021 DE_VERIFY(deMemCmp(block, &data[curPos], numToRead) == 0);
1023 curPos += numToRead;
/external/deqp/executor/
DxeCallQueue.cpp215 int curPos = m_call->getDataSize(); in write() local
216 m_call->setDataSize(curPos+numBytes); in write()
217 deMemcpy(m_call->getData()+curPos, bytes, numBytes); in write()
/external/deqp/framework/common/
DtcuResource.cpp69 long curPos = ftell(m_file); in getSize() local
72 fseek(m_file, curPos, SEEK_SET); in getSize()
/external/lzma/C/
DLzFindMt.c314 UInt32 curPos = 2; in BtGetMatches() local
317 while (curPos < limit) in BtGetMatches()
326 distances[curPos++] = 0; in BtGetMatches()
345 while (curPos < limit && size-- != 0) in BtGetMatches()
347 UInt32 *startDistances = distances + curPos; in BtGetMatches()
352 curPos += num; in BtGetMatches()
360curPos = limit - GetMatchesSpecN(lenLimit, pos, p->buffer, p->son, cyclicBufferPos, p->cyclicBuffe… in BtGetMatches()
361 …distances + curPos, p->numHashBytes - 1, p->hashBuf + p->hashBufPos, (Int32)(limit - curPos) , siz… in BtGetMatches()
377 distances[0] = curPos; in BtGetMatches()
/external/lzma/CPP/Common/
DC_FileIO.cpp34 off_t curPos = Seek(0, SEEK_CUR); in GetLength() local
36 Seek(curPos, SEEK_SET); in GetLength()
/external/skia/tools/
Dskpinfo.cpp84 size_t curPos = stream.getPosition(); in tool_main() local
88 if (curPos+chunkSize > totStreamSize) { in tool_main()
/external/nist-sip/java/gov/nist/core/
DStringTokenizer.java124 int curPos = ptr; in peekLine() local
126 ptr = curPos; in peekLine()
/external/javassist/src/main/javassist/bytecode/
DDescriptor.java797 private int index, curPos; field in Descriptor.Iterator
807 index = curPos = 0; in Iterator()
826 public char currentChar() { return desc.charAt(curPos); } in currentChar()
866 curPos = index; in next()
868 return curPos; in next()
/external/deqp/framework/delibs/deutil/
DdeFile.c162 deInt64 curPos = lseek(file->fd, 0, SEEK_CUR); in deFile_getSize() local
164 if (curPos < 0) in deFile_getSize()
171 lseek(file->fd, curPos, SEEK_SET); in deFile_getSize()
/external/svox/pico/lib/
Dpicospho.c532 picoos_uint16 oldPos, curPos; in sphoExtractPhonemes() local
588 curPos = spho->phonWritePos; in sphoExtractPhonemes()
635 i = curPos; in sphoExtractPhonemes()
946 picoos_uint16 curPos /*, nextPos */; in sphoStep() local
993 curPos = spho->headxWritePos; in sphoStep()
1024 if (curPos < spho->headxWritePos) { /* we did get some new items */ in sphoStep()
1026 spho->headxWritePos - curPos)); in sphoStep()
/external/pdfium/core/src/fpdftext/
Dfpdf_text_int.cpp286 int curPos = start; in GetRectArray() local
292 info_curchar = *(PAGECHAR_INFO*)m_charList.GetAt(curPos++); in GetRectArray()
520 CPDF_Point curPos(charinfo.m_OriginX, charinfo.m_OriginY); in GetOrderByDirection() local
532 … if (FXSYS_fabs(charinfo.m_OriginY - curPos.y) > FX_MAX(height, charinfo.m_CharBox.Height()) / 2) { in GetOrderByDirection()
538 FX_FLOAT PreXdif = charinfo.m_OriginX - curPos.x; in GetOrderByDirection()
549 curXdif = charinfo.m_OriginX - curPos.x; in GetOrderByDirection()
583 … if (FXSYS_fabs(charinfo.m_OriginY - curPos.y) > FX_MAX(height, charinfo.m_CharBox.Height()) / 2) { in GetOrderByDirection()
589 FX_FLOAT PreXdif = charinfo.m_OriginX - curPos.x; in GetOrderByDirection()
600 curXdif = charinfo.m_OriginX - curPos.x; in GetOrderByDirection()
/external/pdfium/core/src/fpdfapi/fpdf_parser/
Dfpdf_parser_parser.cpp2451 FX_FILESIZE curPos = m_Pos; in ReadStream() local
2457 m_Pos = curPos; in ReadStream()