Searched defs:coff (Results 76 - 80 of 80) sorted by relevance

1234

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DDebugVC50TypeEnums.java25 package sun.jvm.hotspot.debugger.win32.coff;
H A DDebugVC50TypeIterator.java25 package sun.jvm.hotspot.debugger.win32.coff;
87 sun.jvm.hotspot.debugger.win32.coff.DebugVC50TypeLeafIndices})
110 sun.jvm.hotspot.debugger.win32.coff.DebugVC50TypeEnums}. */
122 sun.jvm.hotspot.debugger.win32.coff.DebugVC50TypeEnums}:
143 sun.jvm.hotspot.debugger.win32.coff.DebugVC50TypeEnums}. */
173 sun.jvm.hotspot.debugger.win32.coff.DebugVC50TypeEnums}. */
253 sun.jvm.hotspot.debugger.win32.coff.DebugVC50TypeEnums}. */
282 sun.jvm.hotspot.debugger.win32.coff.DebugVC50TypeEnums}. */
323 sun.jvm.hotspot.debugger.win32.coff.DebugVC50TypeEnums}. */
343 sun.jvm.hotspot.debugger.win32.coff
[all...]
H A DDebugVC50ReservedTypes.java25 package sun.jvm.hotspot.debugger.win32.coff;
29 sun.jvm.hotspot.debugger.win32.coff.DebugVC50SSGlobalTypes}). (Some
H A DCOFFFileParser.java25 package sun.jvm.hotspot.debugger.win32.coff;
39 sun.jvm.hotspot.debugger.win32.coff.COFFFile} objects. This class is a
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/
H A DPNGImageReader.java777 private static void decodeSubFilter(byte[] curr, int coff, int count, argument
782 val = curr[i + coff] & 0xff;
783 val += curr[i + coff - bpp] & 0xff;
785 curr[i + coff] = (byte)val;
789 private static void decodeUpFilter(byte[] curr, int coff, argument
793 int raw = curr[i + coff] & 0xff;
796 curr[i + coff] = (byte)(raw + prior);
800 private static void decodeAverageFilter(byte[] curr, int coff, argument
806 raw = curr[i + coff] & 0xff;
809 curr[i + coff]
836 decodePaethFilter(byte[] curr, int coff, byte[] prev, int poff, int count, int bpp) argument
[all...]

Completed in 62 milliseconds

1234