Searched defs:lines (Results 1 - 14 of 14) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dicache_x86.cpp38 const Register lines = c_rarg1; local
43 __ testl(lines, lines);
53 __ decrementl(lines);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dvm_version_sparc.cpp145 // Double number of prefetched cache lines on T4
163 int lines = AllocatePrefetchLines + 2; local
166 _reserve_for_allocation_prefetch = (distance + step_size*lines)/(int)HeapWordSize;
274 tty->print_cr(" at distance %d, %d lines of %d bytes", AllocatePrefetchDistance, AllocatePrefetchLines, AllocatePrefetchStepSize);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dicache.cpp50 void AbstractICache::call_flush_stub(address start, int lines) { argument
58 int r = (*_flush_icache_stub)(start, lines, auto_magic);
66 // spanning two cache lines by computing a start line address by rounding
/openjdk7/langtools/test/tools/javadoc/6227454/
H A DTest.java98 String bigText(int lines, int lineLength) { argument
105 for (int i = 0; i < lines; i++)
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DMixer.java30 * A mixer is an audio device with one or more lines. It need not be
32 * has multiple input (source) lines and at least one output (target) line.
36 * objects, too, are either source lines or target lines.
38 * some of its source lines be instances of objects that implement the
44 * from the controls belonging to each of the mixer's individual lines.
50 * A mixer can support synchronization of its lines. When one line in
51 * a synchronized group is started or stopped, the other lines in the group
69 * Obtains information about the set of source lines supported
71 * Some source lines ma
208 synchronize(Line[] lines, boolean maintainSync) argument
223 unsynchronize(Line[] lines) argument
238 isSynchronizationSupported(Line[] lines, boolean maintainSync) argument
[all...]
/openjdk7/jdk/src/share/demo/applets/DrawTest/
H A DDrawTest.java110 List<Rectangle> lines = new ArrayList<Rectangle>(); field in class:DrawPanel
144 lines.add(new Rectangle(x1, y1, e.getX(), e.getY()));
168 lines.add(new Rectangle(e.getX(), e.getY(), -1, -1));
182 lines.add(new Rectangle(x1, y1, e.getX(), e.getY()));
206 int np = lines.size();
208 /* draw the current lines */
211 Rectangle p = lines.get(i);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAbstractMixer.java58 * source lines provided by this mixer
63 * target lines provided by this mixer
91 * Source lines (ports) currently open
97 * Target lines currently open.
262 public final void synchronize(Line[] lines, boolean maintainSync) { argument
270 public final void unsynchronize(Line[] lines) { argument
278 public final boolean isSynchronizationSupported(Line[] lines, argument
362 * Removes this line from the list of open source lines and
363 * open target lines, if it exists in either.
393 * Close all lines an
[all...]
H A DSoftMixingMixer.java234 public boolean isSynchronizationSupported(Line[] lines, boolean maintainSync) { argument
238 public void synchronize(Line[] lines, boolean maintainSync) { argument
243 public void unsynchronize(Line[] lines) { argument
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DFigure.java61 private String[] lines; field in class:Figure
84 for (String s : lines) {
240 if (lines == null) {
243 return lines;
254 lines = result;
/openjdk7/jdk/src/share/back/
H A DstepControl.c131 jvmtiLineNumberEntry *lines, jint count)
140 if (location < lines[i].start_location) {
144 line = lines[i-1].line_number;
583 /* Stepped into a method with lines, so we're done */
585 LOG_STEP(("stepControl_handleStep: completed, fromDepth<currentDepth(%d<%d) and into method with lines", fromDepth, currentDepth));
130 findLineNumber(jthread thread, jlocation location, jvmtiLineNumberEntry *lines, jint count) argument
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFiles.java2967 * Read all lines from a file. This method ensures that the file is
2983 * convenient to read all lines in a single operation. It is not intended
2991 * @return the lines from the file as a {@code List}; whether the {@code
3080 * Write lines of text to a file. Each line is a char sequence and is
3094 * lines have been written (or an I/O error or other runtime exception is
3100 * @param lines
3119 public static Path write(Path path, Iterable<? extends CharSequence> lines, argument
3123 // ensure lines is not null before opening file
3124 Objects.requireNonNull(lines);
3128 for (CharSequence line: lines) {
[all...]
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java135 private static String sortedLines(String lines) { argument
136 String[] arr = lines.split("\n");
681 String[] lines = text.split("\n");
682 Arrays.sort(lines, new WindowsComparator());
684 for (String line : lines)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/main/
H A DJavaCompiler.java372 options.isSet(G_CUSTOM, "lines");
1589 protected void printNote(String lines) { argument
1590 Log.printLines(log.noticeWriter, lines);
/openjdk7/hotspot/src/share/vm/opto/
H A Dmacro.cpp1667 uint lines = AllocatePrefetchDistance / AllocatePrefetchStepSize; local
1671 for ( uint i = 0; i < lines; i++ ) {
1703 uint lines = (length != NULL) ? AllocatePrefetchLines : AllocateInstancePrefetchLines; local
1726 for ( uint i = 1; i < lines; i++ ) {
1740 uint lines = (length != NULL) ? AllocatePrefetchLines : AllocateInstancePrefetchLines; local
1743 for ( uint i = 0; i < lines; i++ ) {

Completed in 1241 milliseconds