Searched refs:tail (Results 1 – 6 of 6) sorted by relevance
59 protected int tail; field in UnboundedFifoByteBuffer86 tail = 0; in UnboundedFifoByteBuffer()97 if (tail < head) { in size()98 size = buffer.length - head + tail; in size()100 size = tail - head; in size()127 for (int i = head; i != tail;) { in add()140 tail = j; in add()143 buffer[tail] = b; in add()144 tail++; in add()145 if (tail >= buffer.length) { in add()[all …]
119 public WnnSentence(WnnClause head, WnnSentence tail) { in WnnSentence() argument120 if (tail == null) { in WnnSentence()133 this.candidate = head.candidate + tail.candidate; in WnnSentence()134 this.stroke = head.stroke + tail.stroke; in WnnSentence()135 this.frequency = head.frequency + tail.frequency; in WnnSentence()136 this.partOfSpeech = new WnnPOS(head.partOfSpeech.left, tail.partOfSpeech.right); in WnnSentence()141 this.elements.addAll(tail.elements); in WnnSentence()
193 Token tail = node.lastToken; in buildString() local196 while (head != tail) { in buildString()202 out.append(tail.image); in buildString()
257 uint16 head, tail; member265 uint16 head, tail; member
1365 if (cache->head == cache->tail) in _get_lpis()1380 if (i == cache->tail) in _get_lpis()1394 uint16 next = cache->tail; in _get_lpis()1413 cache->tail = next; in _get_lpis()1422 if (cache->head == cache->tail) in _get_lpis()1437 if (i == cache->tail) in _get_lpis()1448 uint16 next = cache->tail; in _get_lpis()1465 cache->tail = next; in _get_lpis()
710 int tail = label.lastIndexOf('.'); in makeLabel() local711 if (tail >= 0) { in makeLabel()712 label = label.substring(tail+1, label.length()); in makeLabel()