Searched refs:hexval (Results 1 - 2 of 2) sorted by relevance

/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/parser/
H A DJavaCharStream.java14 static final int hexval(char c) throws java.io.IOException { method in class:JavaCharStream
320 buffer[bufpos] = c = (char)(hexval(c) << 12 |
321 hexval(ReadByte()) << 8 |
322 hexval(ReadByte()) << 4 |
323 hexval(ReadByte()));
/lucene-3.6.0/solr/solrj/src/java/org/apache/noggit/
H A DJSONParser.java387 private int hexval(int hexdig) { method in class:JSONParser
411 (hexval(getChar()) << 12)
412 | (hexval(getChar()) << 8)
413 | (hexval(getChar()) << 4)
414 | (hexval(getChar())));

Completed in 14 milliseconds