Searched defs:pad (Results 1 - 20 of 20) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A Druntime_sparc.cpp72 int pad = VerifyThread ? 256 : 0;// Extra slop space for more verify code local
77 CodeBuffer buffer("exception_blob", 600+pad, 512);
H A DsharedRuntime_sparc.cpp887 // | pad, align | |
3423 int pad = VerifyThread ? 512 : 0;// Extra slop space for more verify code local
3425 pad += StackShadowPages*16 + 32;
3428 CodeBuffer buffer("deopt_blob", 2100+pad, 512);
3432 CodeBuffer buffer("deopt_blob", 1600+pad, 512);
3645 int pad = VerifyThread ? 512 : 0; local
3647 pad += StackShadowPages*16 + 32;
3650 CodeBuffer buffer("uncommon_trap_blob", 2700+pad, 512);
3654 CodeBuffer buffer("uncommon_trap_blob", 2000+pad, 512);
3755 int pad local
3849 int pad = TraceJumps ? 512 : 0; local
[all...]
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/
H A DTextReporter.java73 p.println(pad('-', title.length()));
85 p.println(pad('-', INDEX_WIDTH + NAME_WIDTH + TIME_WIDTH +
104 p.println(pad('-', INDEX_WIDTH + NAME_WIDTH + TIME_WIDTH +
129 private static String pad(char c, int len) { method in class:TextReporter
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DMemoryCache.java181 private void pad(long pos) throws IOException { method in class:MemoryCache
223 pad(lastPos);
259 pad(pos);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A DDes.java257 // pad data
258 byte[] passwdBytes = pad(cbytes);
348 static byte[] pad(byte[] data) { method in class:Des
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifSplitPaneDivider.java61 protected static final int pad = 6; field in class:MotifSplitPaneDivider
82 setDividerSize(hThumbWidth + pad);
101 if (newSize < pad + minimumThumbSize + borderSize) {
102 setDividerSize(pad + minimumThumbSize + borderSize);
104 vThumbHeight = hThumbWidth = newSize - pad - borderSize;
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java370 boolean pad) {
385 if (pad)
369 printFormalTypeParameters(Parameterizable e, boolean pad) argument
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPadding.java226 public byte[] pad(byte[] data, int ofs, int len) method in class:RSAPadding
228 return pad(RSACore.convert(data, ofs, len));
234 public byte[] pad(byte[] data) throws BadPaddingException { method in class:RSAPadding
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DCipherBox.java536 byte pad;
543 pad = (byte) (newlen - len);
546 throw new IllegalArgumentException("no space to pad buffer");
552 for (i = 0, offset += len; i < pad; i++) {
553 buf [offset++] = (byte) (pad - 1);
570 byte pad;
577 pad = (byte) (newlen - len);
587 for (i = 0, offset += len; i < pad; i++) {
588 bb.put(offset++, (byte) (pad - 1));
605 byte[] buf, int offset, int len, byte pad) {
604 checkPadding( byte[] buf, int offset, int len, byte pad) argument
634 checkPadding(ByteBuffer bb, byte pad) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioFloatFormatConverter.java253 private final int pad; field in class:AudioFloatFormatConverter.AudioFloatInputStreamResampler
298 pad = resampler.getPadding();
299 pad2 = pad * 2;
302 ibuffer_index = buffer_len + pad;
397 if (ibuffer_index >= (ibuffer_len + pad))
399 in_end = ibuffer_len + pad;
H A DSoftAbstractResampler.java63 int pad; field in class:SoftAbstractResampler.ModelAbstractResamplerStream
71 pad = getPadding();
128 ix[0] = pad;
131 ix[0] = sector_size + pad;
153 if (ix[0] < pad) {
169 if (ix[0] >= sector_size + pad) {
176 if (ix[0] >= sector_size * 4 + pad) {
177 int skips = (int)((ix[0] - sector_size * 4 + pad) / sector_size);
184 while (ix[0] >= sector_size + pad) {
277 float ixend = sector_size + pad;
[all...]
H A DSoftMixingDataLine.java80 private final int pad; field in class:SoftMixingDataLine.AudioFloatInputStreamResampler
125 pad = resampler.getPadding();
126 pad2 = pad * 2;
129 ibuffer_index = buffer_len + pad;
223 if (ibuffer_index >= (ibuffer_len + pad))
225 in_end = ibuffer_len + pad;
/openjdk7/hotspot/src/share/vm/asm/
H A Dassembler.cpp110 int pad = -(intptr_t)end & (required_align-1); local
111 if (cs->maybe_expand_to_ensure_remaining(pad + required_space)) {
115 if (pad > 0) {
116 while (--pad >= 0) { *end++ = 0; }
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DPrintAP.java368 private void printFormalTypeParameterSet(Collection<TypeParameterDeclaration> typeParams, boolean pad) { argument
380 if (pad)
/openjdk7/jdk/src/share/classes/sun/rmi/log/
H A DReliableLog.java131 * @param pad ignored
139 boolean pad)
153 //padBoundary = (pad ? diskPageSize : intBytes);
137 ReliableLog(String dirPath, LogHandler handler, boolean pad) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSpringLayout.java1029 * value(e1, c1) = value(e2, c2) + pad</pre>
1034 * @param pad the fixed distance between dependent and anchor
1040 public void putConstraint(String e1, Component c1, int pad, String e2, Component c2) { argument
1041 putConstraint(e1, c1, Spring.constant(pad), e2, c2);
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipher.java346 final String pad; field in class:Cipher.Transform
347 Transform(String alg, String suffix, String mode, String pad) { argument
351 this.pad = pad;
359 if (pad != null) {
360 spi.engineSetPadding(pad);
381 return supports(s, ATTR_PAD, pad);
416 String pad = parts[2];
420 if ((pad != null) && (pad
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Drelocator.cpp222 int pad = get_orig_switch_pad(bci, is_opcode_lookupswitch(bc)); local
223 if (pad == -1) {
229 int lo = int_at(bci + 1 + pad + 4 * 1);
230 int hi = int_at(bci + 1 + pad + 4 * 2);
232 return 1 + pad + 4*(3 + n);
237 int npairs = int_at(bci + 1 + pad + 4 * 1);
238 return 1 + pad + 4*(2 + 2*npairs);
766 memset(addr_at(bci + 1), 0, new_pad); // pad must be 0
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djquant1.c341 int i,j,k, nci, blksize, val, pad; local
343 /* For ordered dither, we pad the color index tables by MAXJSAMPLE in
349 pad = MAXJSAMPLE*2;
352 pad = 0;
358 (JDIMENSION) (MAXJSAMPLE+1 + pad),
370 if (pad)
385 if (pad)
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11SurfaceData.c1332 int pad = (mult == 3) ? 32 : mult * 8; // pad must be 8, 16, or 32 local
1392 depth, ZPixmap, 0, NULL, w, h, pad, 0);
1462 depth, ZPixmap, 0, NULL, w, h, pad, 0);

Completed in 141 milliseconds