Searched refs:work (Results 1 - 25 of 84) sorted by relevance

1234

/openjdk10/langtools/test/tools/javac/lambda/8073842/
H A DT8073842.java16 * 2 along with this work; if not, write to the Free Software Foundation,
36 public void work() { } method in class:T8073842.Chunck
40 Stream<Runnable> r = s.map(o -> o::work);
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1EvacFailure.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
45 void work(uint worker_id);
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/text/
H A DLayoutQueue.java18 * 2 along with this work; if not, write to the Free Software Foundation,
86 Runnable work;
88 work = waitForWork();
89 if (work != null) {
90 work.run();
92 } while (work != null);
114 Runnable work = tasks.firstElement();
116 return work;
/openjdk10/hotspot/test/compiler/classUnloading/methodUnloading/
H A DTestMethodUnloading.java16 * 2 along with this work; if not, write to the Free Software Foundation,
53 private static int work = -1; field in class:TestMethodUnloading
58 * Does some work by either using the workerClass or locally producing values.
59 * @param workerClass Class performing some work (will be unloaded)
72 work = worker.hashCode();
73 if (work != 42) {
77 // Do some important work here
78 work = 1;
148 if (work != 1) {
/openjdk10/jdk/src/java.base/share/native/libzip/zlib/
H A Dinftrees.h17 * 2 along with this work; if not, write to the Free Software Foundation,
86 unsigned FAR *bits, unsigned short FAR *work));
H A Dinftrees.c17 * 2 along with this work; if not, write to the Free Software Foundation,
47 whose indices are 0..2^bits-1. work is a writable array of at least
48 lens shorts, which is used as a work area. type is the type of code
56 int ZLIB_INTERNAL inflate_table(type, lens, codes, table, bits, work)
62 unsigned short FAR *work;
120 table. The sorted table is work[], with that space being provided by
171 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
207 base = extra = work; /* dummy value--not used */
241 if (work[sym] + 1U < match) {
243 here.val = work[sy
[all...]
/openjdk10/jdk/test/java/util/ArrayList/
H A DIteratorMicroBenchmark.java16 * 2 along with this work; if not, write to the Free Software Foundation,
60 public abstract void work() throws Throwable; method in class:IteratorMicroBenchmark.Job
101 do { job.work(); runs++; }
247 // public void work() throws Throwable {
254 public void work() throws Throwable {
263 public void work() throws Throwable {
272 public void work() throws Throwable {
280 public void work() throws Throwable {
287 public void work() throws Throwable {
295 public void work() throw
[all...]
H A DRangeCheckMicroBenchmark.java16 * 2 along with this work; if not, write to the Free Software Foundation,
44 abstract void work() throws Throwable; method in class:RangeCheckMicroBenchmark.Job
73 do { jobs[i].work(); j++; }
168 new Job("get") { void work() {
175 new Job("set") { void work() {
182 new Job("get/set") { void work() {
188 new Job("add/remove at end") { void work() {
197 new Job("subList get") { void work() {
205 new Job("subList set") { void work() {
213 new Job("subList get/set") { void work() {
[all...]
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/pipe/
H A DFiberContextSwitchInterceptor.java18 * 2 along with this work; if not, write to the Free Software Foundation,
59 * &lt;R,P> R execute( Fiber f, P p, Work&lt;R,P> work ) {
60 * // do some preparation work
64 * return work.execute(p);
66 * // do some clean up work
87 <R,P> R execute( Fiber f, P p, Work<R,P> work );
/openjdk10/jdk/test/sun/nio/cs/
H A DStrCodingBenchmarkUTF8.java16 * 2 along with this work; if not, write to the Free Software Foundation,
64 public void work() throws Throwable {
70 public void work() throws Throwable {
76 public void work() throws Throwable {
82 public void work() throws Throwable {
H A DStrCodingBenchmarkDB.java16 * 2 along with this work; if not, write to the Free Software Foundation,
111 public void work() throws Throwable {
117 public void work() throws Throwable {
123 public void work() throws Throwable {
129 public void work() throws Throwable {
H A DStrCodingBenchmark.java16 * 2 along with this work; if not, write to the Free Software Foundation,
40 public abstract void work() throws Throwable; method in class:StrCodingBenchmark.Job
71 do { jobs[i].work(); j++; }
174 public void work() throws Throwable {
180 public void work() throws Throwable {
186 public void work() throws Throwable {
192 public void work() throws Throwable {
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/transport/
H A DEventHandlerBase.java18 * 2 along with this work; if not, write to the Free Software Foundation,
48 protected Work work; field in class:EventHandlerBase
134 public void setWork(Work work) argument
136 this.work = work;
141 return work;
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/pept/transport/
H A DEventHandler.java18 * 2 along with this work; if not, write to the Free Software Foundation,
58 public void setWork(Work work); argument
/openjdk10/hotspot/src/share/vm/opto/
H A Dreplacednodes.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
109 static void enqueue_use(Node* n, Node* use, Unique_Node_List& work) { argument
115 work.push(r->in(i));
119 work.push(use);
136 Unique_Node_List work; local
144 work.clear();
145 enqueue_use(initial, use, work);
149 while (work.size() != 0 && replace) {
150 Node* n = work.pop();
172 enqueue_use(n, n->out(k), work);
[all...]
/openjdk10/jdk/test/java/util/Collection/
H A DIteratorMicroBenchmark.java16 * 2 along with this work; if not, write to the Free Software Foundation,
78 public abstract void work() throws Throwable; method in class:IteratorMicroBenchmark.Job
136 do { job.work(); runs++; }
305 public void work() throws Throwable {
312 public void work() throws Throwable {
319 public void work() throws Throwable {
327 public void work() throws Throwable {
334 public void work() throws Throwable {
342 public void work() throws Throwable {
352 public void work() throw
[all...]
H A DRemoveMicroBenchmark.java16 * 2 along with this work; if not, write to the Free Software Foundation,
76 public abstract void work() throws Throwable; method in class:RemoveMicroBenchmark.Job
134 do { job.work(); runs++; }
337 public void work() throws Throwable {
346 public void work() throws Throwable {
360 public void work() throws Throwable {
370 public void work() throws Throwable {
380 public void work() throws Throwable {
393 public void work() throws Throwable {
415 public void work() throw
[all...]
/openjdk10/jdk/test/java/text/BreakIterator/
H A DBreakIteratorTest.java16 * 2 along with this work; if not, write to the Free Software Foundation,
344 StringBuffer work = new StringBuffer("aaa");
352 work.setCharAt(1, breaks.charAt(i));
354 work.setCharAt(0, testChars.charAt(j));
359 if (work.charAt(1) == '\r' && (c == '\n'))
364 int type1 = Character.getType(work.charAt(1));
371 work.setCharAt(2, c);
372 tb.setText(work.toString());
379 errln("No break between U+" + Integer.toHexString((int)(work.charAt(1)))
380 + " and U+" + Integer.toHexString((int)(work
[all...]
/openjdk10/jdk/test/java/nio/Buffer/
H A DSwapMicroBenchmark.java16 * 2 along with this work; if not, write to the Free Software Foundation,
45 public abstract void work() throws Throwable; method in class:SwapMicroBenchmark.Job
75 do { jobs[i].work(); j++; }
171 public void work() throws Throwable {
180 public void work() throws Throwable {
189 public void work() throws Throwable {
198 public void work() throws Throwable {
207 public void work() throws Throwable {
216 public void work() throws Throwable {
225 public void work() throw
[all...]
/openjdk10/jdk/test/java/lang/Class/
H A DTypeCheckMicroBenchmark.java16 * 2 along with this work; if not, write to the Free Software Foundation,
42 abstract void work() throws Throwable; method in class:TypeCheckMicroBenchmark.Job
72 do { jobs[i].work(); j++; }
165 new Job("toArray(T[])") { void work() {
171 new Job("isInstance") { void work() {
176 new Job("Class.cast") { void work() {
180 new Job("write into array") { void work() {
187 new Job("write into dynamic array") { void work() {
/openjdk10/hotspot/test/gc/cms/
H A DTestBubbleUpRef.java16 * 2 along with this work; if not, write to the Free Software Foundation,
49 * Do work so that concurrent marking has a chance to work
62 * args[2] - work (10000)
124 System.out.println("Doing work");
155 * args[2] - work (is the work done between allocations)
166 int work = Integer.parseInt(args[2]);
170 + "<work units> " + work
[all...]
/openjdk10/hotspot/make/lib/
H A DJvmMapfile.gmk18 # 2 along with this work; if not, write to the Free Software Foundation,
158 define create-mapfile-work
163 define create-mapfile-work
169 define create-mapfile-work
179 $(call create-mapfile-work)
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DDualPivotQuicksort.java18 * 2 along with this work; if not, write to the Free Software Foundation,
98 * @param work a workspace array (slice)
99 * @param workBase origin of usable space in work array
100 * @param workLen usable size of work array
103 int[] work, int workBase, int workLen) {
179 if (work == null || workLen < blen || workBase + blen > work.length) {
180 work = new int[blen];
184 System.arraycopy(a, left, work, workBase, blen);
187 a = work;
102 sort(int[] a, int left, int right, int[] work, int workBase, int workLen) argument
568 sort(long[] a, int left, int right, long[] work, int workBase, int workLen) argument
1034 sort(short[] a, int left, int right, short[] work, int workBase, int workLen) argument
1070 doSort(short[] a, int left, int right, short[] work, int workBase, int workLen) argument
1536 sort(char[] a, int left, int right, char[] work, int workBase, int workLen) argument
1572 doSort(char[] a, int left, int right, char[] work, int workBase, int workLen) argument
2079 sort(float[] a, int left, int right, float[] work, int workBase, int workLen) argument
2170 doSort(float[] a, int left, int right, float[] work, int workBase, int workLen) argument
2636 sort(double[] a, int left, int right, double[] work, int workBase, int workLen) argument
2727 doSort(double[] a, int left, int right, double[] work, int workBase, int workLen) argument
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orbutil/threadpool/
H A DWorkQueueImpl.java18 * 2 along with this work; if not, write to the Free Software Foundation,
53 // Name of the work queue
56 // MonitoredObject for work queue
114 public synchronized void addWork(Work work) { argument
116 work.setEnqueueTime(System.currentTimeMillis());
117 theWorkQueue.addLast(work);
/openjdk10/hotspot/src/share/vm/gc/cms/
H A DyieldingWorkgroup.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
90 // The abstract work method.
92 virtual void work(uint worker_id) = 0;
101 // An abstract task to be worked on by a flexible work gang,
105 // You subclass this to supply your own work() method.
106 // A second feature of this kind of work gang is that
116 // fleshed out and is a work in progress.
144 // The abstract work method.
146 virtual void work(uint worker_id) = 0;
149 // after having done any work specifi
[all...]

Completed in 136 milliseconds

1234