Searched defs:unsigned (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicIntType.java31 private boolean unsigned; field in class:BasicIntType
33 public BasicIntType(String name, int size, boolean unsigned) { argument
34 this(name, size, unsigned, 0);
37 protected BasicIntType(String name, int size, boolean unsigned, int cvAttributes) { argument
39 this.unsigned = unsigned;
45 public boolean isUnsigned() { return unsigned; }
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DJarVerifier.java310 // ignore and treat as unsigned
313 // ignore and treat as unsigned
316 // ignore and treat as unsigned
319 // ignore and treat as unsigned
527 private CodeSource[] mapSignersToCodeSources(URL url, List signers, boolean unsigned) { argument
533 if (unsigned) {
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DWrapper.java29 BOOLEAN(Boolean.class, boolean.class, 'Z', (Boolean)false, new boolean[0], Format.unsigned(1)),
33 CHAR(Character.class, char.class, 'C', (Character)(char)0, new char[0], Format.unsigned(16)),
102 static int unsigned(int size) { return format(UNSIGNED, size, (size > 32 ? 2 : 1)); } method in class:Wrapper.Format
125 /* Is the wrapped value an unsigned integral type (one of boolean or char)? */
174 // check relations with unsigned integral types:

Completed in 34 milliseconds