Searched refs:missed (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCCharToGlyphMapper.java251 // "missed" is the count of 'char' that are not mapped.
255 int missed = 0;
287 unmappedChars[missed] = indicies[i];
288 unmappedCharIndices[missed] = i;
290 unmappedChars[++missed] = indicies[++i];
292 missed++;
296 if (missed == 0) {
300 final int[] glyphCodes = new int[missed];
304 missed, unmappedChars, glyphCodes);
306 for (int m = 0; m < missed;
[all...]
H A DCStrike.java299 int missed = 0;
310 missed++;
314 if (missed == 0) {
319 final int[] filteredCodes = new int[missed];
321 final int[] filteredIndicies = new int[missed];
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DClientNotifForwarder.java479 long missed = 0;
485 missed = nr.getEarliestSequenceNumber() -
521 if (missed > 0) {
523 "May have lost up to " + missed +
524 " notification" + (missed == 1 ? "" : "s");
525 lostNotifs(msg, missed);
/openjdk7/hotspot/src/share/vm/utilities/
H A DgrowableArray.hpp215 bool missed = !contains(elem); local
216 if (missed) append(elem);
217 return missed;
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp957 Label missed; local
965 __ jcc(Assembler::notEqual, missed);
972 __ bind(missed);

Completed in 47 milliseconds