Searched refs:unpack (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/make/com/sun/java/pack/
H A DFILES_cpp.gmk30 unpack.cpp \
H A DMakefile32 LIBRARY = unpack
123 COBJDIR = $(strip $(subst unpack,unpack-cmd,$(OBJDIR)))
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodTypeForm.java205 private static char unpack(long packed, int word) { // word==0 => return a, ==3 => return d method in class:MethodTypeForm
211 return unpack(argCounts, 3);
214 return unpack(argCounts, 2);
217 return unpack(argCounts, 1);
220 return unpack(argCounts, 0);
223 return unpack(primCounts, 3);
226 return unpack(primCounts, 2);
229 return unpack(primCounts, 1);
232 return unpack(primCounts, 0);
/openjdk7/jdk/src/share/classes/java/util/jar/
H A DPack200.java87 * unpacker.unpack(f, jostream);
197 * and to pack a JAR, you must first pack and unpack the JAR to
534 * <tt>unpack.</tt> are reserved for use by this API.
635 String DEFLATE_HINT = "unpack.deflate.hint";
650 String PROGRESS = "unpack.progress";
668 * <tt>unpack.</tt> are reserved for use by this API.
691 void unpack(InputStream in, JarOutputStream out) throws IOException; method in interface:Pack200.Unpacker
702 void unpack(File in, JarOutputStream out) throws IOException; method in interface:Pack200.Unpacker
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DUnpackerImpl.java81 * Get the set of options for the pack and unpack engines.
99 // The unpack worker...
110 public synchronized void unpack(InputStream in, JarOutputStream out) throws IOException { method in class:UnpackerImpl
155 public synchronized void unpack(File in, JarOutputStream out) throws IOException { method in class:UnpackerImpl
165 unpack(instr, out);
225 if (props.getBoolean("unpack.strip.debug")) pkg.stripAttributeKind("Debug");
226 if (props.getBoolean("unpack.strip.compile")) pkg.stripAttributeKind("Compile");
H A DDriver.java74 // Non-standard, undocumented "--unpack" switch enables unpack mode.
80 case "--unpack":
354 junpack.unpack(in, out);
/openjdk7/jdk/test/tools/pack200/
H A DTestExceptions.java155 // test the Pack200.unpack(InputStream, OutputStream);
175 unpacker.unpack(ti.getInputStream(), ti.getJarOutputStream());
189 // test the Pack200.unpack(File, OutputStream);
208 unpacker.unpack(ti.getInputFile(), ti.getJarOutputStream());
H A DUtils.java360 unpacker.unpack(inFile, jarStream);
/openjdk7/hotspot/src/share/vm/code/
H A DcodeBlob.hpp387 address unpack_pc = unpack();
400 address unpack() const { return code_begin() + _unpack_offset; } function in class:DeoptimizationBlob
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp490 AddressLiteral deopt_blob(SharedRuntime::deopt_blob()->unpack());
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRAssembler_x86.cpp492 __ jump(RuntimeAddress(SharedRuntime::deopt_blob()->unpack()));

Completed in 80 milliseconds