Searched refs:work (Results 26 - 50 of 84) sorted by relevance

1234

/openjdk10/jdk/test/com/sun/jdi/
H A DRedefineAbstractClass.sh18 # 2 along with this work; if not, write to the Free Software Foundation,
51 // do the work once before redefine
56 // do the work again after redefine
H A DEvalArgs.sh18 # 2 along with this work; if not, write to the Free Software Foundation,
71 // prove that these work
231 # These should work even though the arg types are
H A DEvalInterfaceStatic.sh18 # 2 along with this work; if not, write to the Free Software Foundation,
55 // prove that these work
/openjdk10/jdk/src/java.base/share/native/libzip/zlib/
H A Dinflate.h17 * 2 along with this work; if not, write to the Free Software Foundation,
144 unsigned short work[288]; /* work area for code table building */ member in struct:inflate_state
H A Dinfback.c17 * 2 along with this work; if not, write to the Free Software Foundation,
128 inflate_table(LENS, state->lens, 288, &(next), &(bits), state->work);
135 inflate_table(DISTS, state->lens, 32, &(next), &(bits), state->work);
413 &(state->lenbits), state->work);
487 &(state->lenbits), state->work);
496 &(state->next), &(state->distbits), state->work);
/openjdk10/jdk/src/demo/share/java2d/J2DBench/src/j2dbench/
H A DResult.java190 return "Both work units: "+opt;
371 double work = isOps ? getTotalReps() : getTotalUnits();
377 work /= 1000.0;
381 work /= 1000000.0;
386 double rate = time / work;
403 double rate = work / time;
/openjdk10/jdk/test/java/util/Arrays/
H A DSortingLongBenchmarkTestJMH.java17 * 2 along with this work; if not, write to the Free Software Foundation,
227 * @param work a workspace array (slice)
228 * @param workBase origin of usable space in work array
229 * @param workLen usable size of work array
232 long[] work, int workBase, int workLen) {
294 if (work == null || workLen < blen || workBase + blen > work.length) {
295 work = new long[blen];
299 System.arraycopy(a, left, work, workBase, blen);
302 a = work;
231 sort(long[] a, int left, int right, long[] work, int workBase, int workLen) argument
[all...]
H A DSortingIntBenchmarkTestJMH.java17 * 2 along with this work; if not, write to the Free Software Foundation,
223 int[] work, int workBase, int workLen) {
285 if (work == null || workLen < blen || workBase + blen > work.length) {
286 work = new int[blen];
290 System.arraycopy(a, left, work, workBase, blen);
293 a = work;
297 b = work;
407 * these elements was empirically determined to work well on
222 sort(int[] a, int left, int right, int[] work, int workBase, int workLen) argument
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DComparableTimSort.java19 * 2 along with this work; if not, write to the Free Software Foundation,
49 * implementation, but 32 was empirically determined to work better in
116 * @param work a workspace array (slice)
117 * @param workBase origin of usable space in work array
118 * @param workLen usable size of work array
120 private ComparableTimSort(Object[] a, Object[] work, int workBase, int workLen) { argument
127 if (work == null || workLen < tlen || workBase + tlen > work.length) {
133 tmp = work;
174 * @param work
179 sort(Object[] a, int lo, int hi, Object[] work, int workBase, int workLen) argument
[all...]
H A DTimSort.java19 * 2 along with this work; if not, write to the Free Software Foundation,
69 * implementation, but 32 was empirically determined to work better in
142 * @param work a workspace array (slice)
143 * @param workBase origin of usable space in work array
144 * @param workLen usable size of work array
146 private TimSort(T[] a, Comparator<? super T> c, T[] work, int workBase, int workLen) { argument
154 if (work == null || workLen < tlen || workBase + tlen > work.length) {
163 tmp = work;
205 * @param work
210 sort(T[] a, int lo, int hi, Comparator<? super T> c, T[] work, int workBase, int workLen) argument
[all...]
H A DCalendar.java18 * 2 along with this work; if not, write to the Free Software Foundation,
3199 Calendar work = (Calendar)this.clone();
3200 work.setLenient(true);
3208 work.set(field, fieldValue);
3209 if (work.get(field) != fieldValue) {
3253 Calendar work = (Calendar)this.clone();
3254 work.setLenient(true);
3259 work.set(DAY_OF_WEEK, firstDayOfWeek);
3268 work.set(field, fieldValue);
3269 if (work
[all...]
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1CardLiveData.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
130 // lots of work most of the time.
311 void work(uint worker_id) { function in class:G1CreateCardLiveDataTask
381 void work(uint worker_id) { function in class:G1FinalizeCardLiveDataTask
410 virtual void work(uint worker_id) { function in class:G1ClearCardLiveDataTask
432 log_debug(gc, ergo)("Running %s using %u workers for " SIZE_FORMAT " work units.", cl.name(), num_workers, num_chunks);
558 void work(uint worker_id) { function in class:G1VerifyCardLiveDataTask
H A Dg1SerialFullCollector.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
61 // Do the actual collection work.
122 void work(uint worker_id) { function in class:ParRebuildRSTask
H A Dg1StringDedup.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
135 virtual void work(uint worker_id) { function in class:G1StringDedupUnlinkOrOopsDoTask
H A Dg1PageBasedVirtualSpace.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
251 virtual void work(uint worker_id) {
273 log_debug(gc, heap)("Running %s with %u workers for " SIZE_FORMAT " work units pre-touching " SIZE_FORMAT "B.",
279 cl.work(0);
/openjdk10/hotspot/src/share/vm/gc/parallel/
H A DpcTasks.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
157 _enq_task.work(_work_id);
178 // This task is used to distribute work to idle threads.
199 // This task is used to distribute work to idle threads.
/openjdk10/hotspot/src/share/vm/gc/shared/
H A DpreservedMarks.cpp16 * 2 along with this work; if not, write to the Free Software Foundation,
88 virtual void work(uint worker_id) { function in class:ParRestoreTask
H A Dworkgroup.hpp16 * 2 along with this work; if not, write to the Free Software Foundation,
56 // You subclass this to supply your own work() method
72 // The abstract work method.
74 virtual void work(uint worker_id) = 0;
109 // The work gang is the collection of workers to execute tasks.
188 // Create a GC worker and install it into the work gang.
267 void run_task(WorkData work);
/openjdk10/langtools/test/
H A DMakefile154 ### The following does not work JCK 7 b30 2/6/2010. Awaiting b31.
317 # (Optional) reference results (e.g. work, report or summary.txt)
375 # (Optional) reference results (e.g. work, report or summary.txt)
378 @rm -f -r $(JCK_COMPILER_OUTPUT_DIR)/work $(JCK_COMPILER_OUTPUT_DIR)/report \
385 -w:$(JCK_COMPILER_OUTPUT_DIR)/work \
426 # (Optional) reference results (e.g. work, report or summary.txt)
429 @rm -f -r $(JCK_RUNTIME_OUTPUT_DIR)/work $(JCK_RUNTIME_OUTPUT_DIR)/report \
436 -w:$(JCK_RUNTIME_OUTPUT_DIR)/work \
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop/src/org/graalvm/compiler/loop/
H A DLoopEx.java16 * 2 along with this work; if not, write to the Free Software Foundation,
315 Queue<Block> work = new LinkedList<>();
317 work.add(cfg.blockFor(branch));
318 while (!work.isEmpty()) {
319 Block b = work.remove();
327 work.add(d);
/openjdk10/langtools/test/tools/javac/6889255/
H A DT6889255.java16 * 2 along with this work; if not, write to the Free Software Foundation,
378 Deque<String> work = new LinkedList<String>(classes);
380 while ((classname = work.poll()) != null) {
395 work.add(name);
/openjdk10/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dsolaris_sparc.s16 !! 2 along with this work; if not, write to the Free Software Foundation,
/openjdk10/hotspot/src/os_cpu/linux_sparc/vm/
H A Dlinux_sparc.s16 # 2 along with this work; if not, write to the Free Software Foundation,
/openjdk10/hotspot/src/jdk.hotspot.agent/scripts/
H A Dstart-debug-server.bat18 REM 2 along with this work; if not, write to the Free Software Foundation,
H A Dstart-rmiregistry.bat18 REM 2 along with this work; if not, write to the Free Software Foundation,

Completed in 217 milliseconds

1234