Searched defs:FILLER (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/test/sun/misc/
H A DCopyMemory.java42 private final static int FILLER = 0x55; field in class:CopyMemory
92 set(b, 0, BUFFER_SIZE, FILLER);
97 check(b, 0, ofs - 1, FILLER);
99 check(b, ofs + len, BUFFER_SIZE - (ofs + len), FILLER);
107 set(unsafe, b, 0, BUFFER_SIZE, FILLER);
112 check(unsafe, b, 0, ofs - 1, FILLER);
114 check(unsafe, b, ofs + len, BUFFER_SIZE - (ofs + len), FILLER);
123 set(b1, 0, BUFFER_SIZE, FILLER);
143 set(b1, 0, BUFFER_SIZE, FILLER);
163 set(unsafe, b1, 0, BUFFER_SIZE, FILLER);
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DMessageToken.java85 private static final int FILLER = 0xffff; field in class:MessageToken
625 bytes[6] = (byte) (MessageToken.FILLER >>> 8);
626 bytes[7] = (byte) (MessageToken.FILLER);
647 // XXX compare to FILLER
H A DMessageToken_v2.java121 private static final int FILLER = 0xff; field in class:MessageToken_v2
522 bytes[3] = (byte) FILLER;
534 bytes[i] = (byte) FILLER;
588 if ((bytes[3] & 0xff) != FILLER) {
600 if ((bytes[i] & 0xff) != FILLER) {
/openjdk7/jdk/src/share/classes/javax/accessibility/
H A DAccessibleRole.java195 public static final AccessibleRole FILLER field in class:AccessibleRole

Completed in 38 milliseconds