Home | History | Annotate | Download | only in signapk

Lines Matching defs:alignment

465                                   long timestamp, int alignment) throws IOException {
480 // the start of the file and makes it easier to do alignment
504 if (alignment > 0 && (offset % alignment != 0)) {
506 // alignment-1 bytes, to make the file data begin at
508 int needed = alignment - (int)(offset % alignment);
525 // alignment on these entries.
832 "[-a <alignment>] " +
849 int alignment = 4;
863 alignment = Integer.parseInt(args[++argstart]);
931 copyFiles(manifest, inputJar, outputJar, timestamp, alignment);