Searched refs:tempData (Results 1 – 2 of 2) sorted by relevance
52 Node[] tempData = new Node[length + INCREMENT]; in add() local54 System.arraycopy(data, 0, tempData, 0, length); in add()56 data = tempData; in add()
189 byte[] tempData = new byte[1024]; in restoreDictionary()191 while ((got = gzip.read(tempData)) > 0) { in restoreDictionary()192 baos.write(tempData, 0, got); in restoreDictionary()