Searched defs:slack (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFocus.java72 public static Icon createFocusedIcon(final Icon tmpIcon, final Component c, final int slack) { argument
73 return new FocusedIcon(tmpIcon, slack);
80 final int slack;
82 public FocusedIcon(final Icon icon, final int slack) {
84 this.slack = slack;
89 return icon.getIconHeight() + slack + slack;
94 return icon.getIconWidth() + slack + slack;
114 final int slack; field in class:AquaFocus.FocusedIcon
116 FocusedIcon(final Icon icon, final int slack) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Dallocation.hpp250 slack = 40, // [RGV] Not sure if this is right, but make it enumerator in enum:Chunk::__anon251
253 slack = 20, // suspected sizeof(Chunk) + internal malloc headers
256 init_size = 1*K - slack, // Size of first chunk
257 medium_size= 10*K - slack, // Size of medium-sized chunk
258 size = 32*K - slack, // Default size of an Arena chunk (following the first)

Completed in 31 milliseconds