Searched refs:currentPos (Results 1 – 10 of 10) sorted by relevance
43 UChar* currentPos; member176 if(buf->currentPos<buf->bufLimit){ in ucbuf_fillucbuf()177 offset = (int32_t)(buf->bufLimit-buf->currentPos); in ucbuf_fillucbuf()178 memmove(buf->buffer,buf->currentPos,offset* sizeof(UChar)); in ucbuf_fillucbuf()312 buf->currentPos = pTarget; in ucbuf_fillucbuf()329 if(buf->currentPos>=buf->bufLimit){ in ucbuf_getc()339 return *(buf->currentPos++); in ucbuf_getc()349 if(buf->currentPos+1>=buf->bufLimit){ in ucbuf_getc32()358 if(U16_IS_LEAD(*(buf->currentPos))){ in ucbuf_getc32()359 retVal=U16_GET_SUPPLEMENTARY(buf->currentPos[0],buf->currentPos[1]); in ucbuf_getc32()[all …]
26 private int currentPos = 0; field in NodeListIterator34 return (currentPos < nodeList.getLength()); in hasNext()39 return nodeList.item(currentPos++); in next()
73 auto currentPos = stream.tellg(); in Calculate() local74 if (currentPos == std::streampos(std::streamoff(-1))) { in Calculate()75 currentPos = 0; in Calculate()94 stream.seekg(currentPos, stream.beg); in Calculate()
78 protected Stack<int> currentPos = new Stack<int>(); field in Antlr.Runtime.Debug.Profiler162 currentPos.Push(pos); in Location()188 descriptor.pos = currentPos.Peek(); in EnterDecision()717 currentPos.Peek()); in LocationDescription()
78 protected Stack<int> currentPos = new Stack<int>(); field in Antlr.Runtime.Debug.Profiler152 currentPos.Push(pos); in Location()175 descriptor.pos = currentPos.Peek(); in EnterDecision()657 currentPos.Peek()); in LocationDescription()
396 UInt64 currentPos; in SetSize() local397 if (!File.Seek(0, FILE_CURRENT, currentPos)) in SetSize()401 result = result && File.Seek(currentPos, currentPos2); in SetSize()
133 protected Stack<Integer> currentPos = new Stack<Integer>(); field in Profiler212 currentPos.push(pos); in location()234 descriptor.pos = currentPos.peek(); in enterDecision()741 currentPos.peek()); in locationDescription()
262 var currentPos = j * rowSize;269 u[++currentPos] -= wScale * (p[++nextPos] - p[++prevPos]);270 v[currentPos] -= hScale * (p[++nextRow] - p[++prevRow]);
1277 int currentPos = startOffset;1279 currentPos += (int) (SystemClock.uptimeMillis() - startTime);1281 return currentPos;
68 static void CheckSpaceLeftInBuffer(const T *currentPos, in CheckSpaceLeftInBuffer() argument73 if (bufferEnd < currentPos || static_cast<size_t>(bufferEnd - currentPos) < space) in CheckSpaceLeftInBuffer()