Searched refs:multiple (Results 1 - 24 of 24) sorted by relevance

/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.word/src/org/graalvm/compiler/word/
H A DUnsignedUtils.java35 * Round an Unsigned down to the nearest smaller multiple.
38 * @param multiple The multiple to which that Unsigned should be decreased.
41 public static Unsigned roundDown(Unsigned that, Unsigned multiple) { argument
42 return that.unsignedDivide(multiple).multiply(multiple);
46 * Round an Unsigned up to the nearest larger multiple.
49 * @param multiple The multiple to which that Unsigned should be increased.
52 public static Unsigned roundUp(Unsigned that, Unsigned multiple) { argument
63 isAMultiple(Unsigned that, Unsigned multiple) argument
[all...]
H A DPointerUtils.java63 * Round a Pointer down to the nearest smaller multiple.
66 * @param multiple The multiple to which that Pointer should be decreased.
69 public static Pointer roundDown(PointerBase that, Unsigned multiple) { argument
70 return (Pointer) UnsignedUtils.roundDown((Unsigned) that, multiple);
74 * Round a Pointer up to the nearest larger multiple.
77 * @param multiple The multiple to which that Pointer should be increased.
80 public static Pointer roundUp(PointerBase that, Unsigned multiple) { argument
81 return (Pointer) UnsignedUtils.roundUp((Unsigned) that, multiple);
91 isAMultiple(PointerBase that, Unsigned multiple) argument
[all...]
/openjdk9/nashorn/test/script/error/
H A Dheredoc_nse.js33 This is a multiple line string
H A DJDK-8020437-2.js33 This is a multiple line
H A DJDK-8020437.js33 This is a multiple line
/openjdk9/jdk/src/java.security.sasl/share/classes/javax/security/sasl/
H A DRealmChoiceCallback.java50 * @param multiple true if multiple choices allowed; false otherwise
57 int defaultChoice, boolean multiple) {
58 super(prompt, choices, defaultChoice, multiple);
56 RealmChoiceCallback(String prompt, String[]choices, int defaultChoice, boolean multiple) argument
/openjdk9/jdk/src/jdk.management/share/classes/com/sun/management/internal/
H A DDiagnosticCommandArgumentInfo.java56 private final boolean multiple; field in class:DiagnosticCommandArgumentInfo
123 * Returns {@code true} if the argument can be specified multiple times,
126 * @return {@code true} if the argument can be specified multiple times,
130 return multiple;
149 boolean multiple, int position) {
156 this.multiple = multiple;
146 DiagnosticCommandArgumentInfo(String name, String description, String type, String defaultValue, boolean mandatory, boolean option, boolean multiple, int position) argument
/openjdk9/jdk/test/java/awt/List/KeyEventsTest/
H A DKeyEventsTest.java55 List multiple = new List(3, true); field in class:KeyEventsTest
74 multiple.add("0");
75 multiple.add("1");
76 multiple.add("2");
77 multiple.add("3");
78 multiple.add("4");
79 multiple.add("5");
80 multiple.add("6");
81 multiple.add("7");
82 multiple
322 private boolean multiple; field in class:TestState
331 TestState(boolean multiple, boolean selectedMoved, boolean scrollMoved, int keyID, boolean template) argument
[all...]
/openjdk9/nashorn/test/script/basic/
H A DJDK-8020437.js34 This is a multiple line
/openjdk9/jaxp/src/jdk.xml.dom/share/classes/org/w3c/dom/html/
H A DHTMLSelectElement.java56 * The type of this form control. This is the string "select-multiple"
57 * when the multiple attribute is <code>true</code> and the string
64 * -1 is returned if no element is selected. If multiple options are
101 * If true, multiple <code>OPTION</code> elements may be selected in
102 * this <code>SELECT</code> . See the multiple attribute definition in
106 public void setMultiple(boolean multiple); argument
/openjdk9/hotspot/test/runtime/SelectionResolution/classes/selectionresolution/
H A DResult.java50 public static Result is(int... multiple) { argument
51 assert multiple.length > 0;
53 if (multiple.length == 1) {
54 return new Single(multiple[0]);
56 return new Any(multiple);
/openjdk9/hotspot/src/share/vm/services/
H A DdiagnosticFramework.hpp179 bool multiple) {
187 this->_multiple = multiple;
192 bool multiple, int position) {
200 this->_multiple = multiple;
177 DCmdArgumentInfo(const char* name, const char* description, const char* type, const char* default_string, bool mandatory, bool option, bool multiple) argument
190 DCmdArgumentInfo(const char* name, const char* description, const char* type, const char* default_string, bool mandatory, bool option, bool multiple, int position) argument
H A Djmm.h215 jboolean multiple; /* True if the option can be specified several time */ member in struct:__anon719
H A Dmanagement.cpp2070 infoArray[i].multiple = array->at(i)->is_multiple();
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/ir/debug/
H A DObjectSizeCalculator.java129 // Padding for the object size - if the object size is not an exact multiple
130 // of this, it is padded to the next multiple.
294 static long roundTo(final long x, final int multiple) { argument
295 return ((x + multiple - 1) / multiple) * multiple;
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DInternalizer.java168 boolean multiple = false;
177 if(bindings.getAttribute("multiple") != null) {
178 String requiredAttr = bindings.getAttribute("multiple");
181 multiple = true;
260 if(!multiple) {
274 if(!multiple || nlst.getLength() == 1) {
331 } else if (!multiple || targetMultiple == null) {
349 if(!multiple || targetMultiple == null)
/openjdk9/jdk/src/java.desktop/unix/native/libawt_xawt/awt/
H A Dsun_awt_X11_GtkFileDialogPeer.c312 jobject jfilter, jboolean multiple, int x, int y)
343 /* Set multiple selection mode, that is allowed only in OPEN action */
344 if (multiple) {
346 multiple); local
310 Java_sun_awt_X11_GtkFileDialogPeer_run(JNIEnv * env, jobject jpeer, jstring jtitle, jint mode, jstring jdir, jstring jfile, jobject jfilter, jboolean multiple, int x, int y) argument
/openjdk9/jdk/src/java.desktop/windows/classes/sun/awt/windows/
H A DWFileDialogPeer.java140 boolean multiple = (wFiles.length > 1);
146 if (multiple) {
/openjdk9/jdk/src/jdk.jconsole/share/classes/sun/tools/jconsole/
H A DPlotter.java776 long multiple = (long)Math.pow(10.0, exp);
777 int i = (int)(l / multiple);
778 return i * multiple;
783 long multiple = (long)Math.pow(10.0, exp);
784 int i = (int)(l / multiple);
785 l = (i+1)*multiple;
/openjdk9/jdk/src/java.management/share/native/include/
H A Djmm.h215 jboolean multiple; /* True is the option can be specified several time */ member in struct:__anon1322
/openjdk9/jdk/src/jdk.management/share/native/libmanagement_ext/
H A DDiagnosticCommandImpl.c107 dcmd_arg_info_array[i].multiple,
/openjdk9/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-ot-layout-gsub-table.hh1115 case Multiple: return_trace (u.multiple.dispatch (c));
1130 MultipleSubst multiple; member in union:OT::SubstLookupSubTable::__anon912
1221 return_trace (serialize_subtable (c, 0).u.multiple.serialize (c,
/openjdk9/jdk/src/java.desktop/share/classes/javax/swing/text/html/
H A DHTMLDocument.java3391 * This enables multiple views, and allows document to
3464 boolean multiple = attr.getAttribute(HTML.Attribute.MULTIPLE) != null;
3465 if ((size > 1) || multiple) {
3467 if (multiple) {
/openjdk9/hotspot/src/share/vm/gc/cms/
H A DcompactibleFreeListSpace.cpp65 // MinChunkSize should be a multiple of MinObjAlignment and be large enough
1485 assert(newFc->size() % size == 0, "Should be integral multiple of request");
1488 // into multiple pieces; record the split-death of the original
1800 // The freeList lock is held, but multiple GC task threads might be executing in parallel.
2507 size_t multiple = (size_t) (_num_blocks[word_sz]/(((double)CMSOldPLABToleranceFactor)*CMSOldPLABNumRefills*n_blks)); local
2508 n_blks += CMSOldPLABReactivityFactor*multiple*n_blks;
2580 // indexed_free_lists. Looks for a chunk with size that is a multiple

Completed in 476 milliseconds