Searched refs:slots (Results 1 - 16 of 16) sorted by relevance

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/widgets/
H A DInputSlotWidget.java57 List<InputSlot> slots = inputSlot.getFigure().getInputSlots();
58 assert slots.contains(inputSlot);
59 return new Point((int) x, (int) (calculateRelativeY(slots.size(), slots.indexOf(inputSlot))));
H A DOutputSlotWidget.java57 List<OutputSlot> slots = outputSlot.getFigure().getOutputSlots();
58 assert slots.contains(outputSlot);
59 return new Point((int) x, (int) (calculateRelativeY(slots.size(), slots.indexOf(outputSlot))));
/openjdk7/jdk/src/share/native/sun/security/pkcs11/
H A Dj2secmod.h73 void **slots; /* array of slot points attached to this mod*/ member in struct:SECMODModuleStr
75 void *slotInfo; /* special info about slots default settings */
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DStackFrameImpl.java209 JDWP.StackFrame.GetValues.SlotInfo[] slots =
218 slots[i] = new JDWP.StackFrame.GetValues.SlotInfo(variable.slot(),
227 ps = JDWP.StackFrame.GetValues.enqueueCommand(vm, thread, id, slots);
323 JDWP.StackFrame.GetValues.SlotInfo[] slots =
334 slots[ii] = new JDWP.StackFrame.GetValues.SlotInfo(slot++,(byte)sigChar);
345 ps = JDWP.StackFrame.GetValues.enqueueCommand(vm, thread, id, slots);
H A DConcreteMethodImpl.java454 // Get the number of slots used by argument variables
456 int count = vartab.slots.length;
459 JDWP.Method.VariableTable.SlotInfo si = vartab.slots[i];
501 // Get the number of slots used by argument variables
503 int count = vartab.slots.length;
506 JDWP.Method.VariableTableWithGeneric.SlotInfo si = vartab.slots[i];
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DPlotter.java723 private int getValueStringSlot(int[] slots, int y, int h, int i) { argument
724 for (int s = 0; s < slots.length; s++) {
725 if (slots[s] >= y && slots[s] < y + h) {
727 if (slots[s] > h) {
728 return getValueStringSlot(slots, slots[s]-h, h, i);
730 return getValueStringSlot(slots, slots[s]+h, h, i);
732 } else if (y >= h && slots[
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DpromotionInfo.cpp251 // Count the number of blocks and slots in the free pool
252 size_t slots = 0; local
258 // bufferSize - 1 are occupied (thus, bufferSize - 1 slots).
261 slots += cur_spool->bufferSize - 1;
265 slots += _spoolHead->bufferSize - 1;
269 worker_id, blocks, slots);
274 // The set of slots holding displaced headers are then all those in the
279 // When _spoolTail is NULL, then the set of slots with displaced headers
315 // bufferSize - 1 are occupied (thus, bufferSize - 1 slots).
324 // We overcounted (_firstIndex-1) worth of slots i
[all...]
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DWrapper.java81 static int format(int kind, int size, int slots) { argument
88 assert((slots == 2) ? (size == 64) :
89 (slots == 1) ? (size <= 32) :
91 return kind | (size << SIZE_SHIFT) | (slots << SLOT_SHIFT);
104 static int other(int slots) { return slots << SLOT_SHIFT; } argument
111 /** How many JVM stack slots occupied by the wrapped value? Returns 0 for VOID. */
115 /** Does the wrapped value occupy two JVM stack slots? */
H A DValueConversions.java1127 int slots = nargs;
1130 slots *= 2;
1131 if (slots > MAX_ARRAY_SLOTS)
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DSunPKCS11.java346 long[] slots = p11.C_GetSlotList(false);
348 System.out.println("All slots: " + toString(slots));
349 slots = p11.C_GetSlotList(true);
350 System.out.println("Slots with tokens: " + toString(slots));
354 || (slotListIndex >= slots.length)) {
357 + " but token only has " + slots.length + " slots");
359 slotID = slots[slotListIndex];
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodType.java115 * is the maximum number of <em>slots</em>
136 * which are the slots occupied by invoke method handle, and the the
154 /** Return number of extra slots (count of long/double args). */
156 int slots = 0;
158 slots += checkPtype(ptype);
160 checkSlotCount(ptypes.length + slots);
161 return slots;
360 * or if the resulting method type would have more than 255 parameter slots
383 * or if the resulting method type would have more than 255 parameter slots
398 * or if the resulting method type would have more than 255 parameter slots
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DObjectStreamClass.java1159 ArrayList<ClassDataSlot> slots = new ArrayList<>();
1189 slots.add(new ClassDataSlot(
1196 slots.add(new ClassDataSlot(d.getVariantFor(match), true));
1201 slots.add(new ClassDataSlot(
1205 // order slots from superclass -> subclass
1206 Collections.reverse(slots);
1207 return slots.toArray(new ClassDataSlot[slots.size()]);
H A DObjectOutputStream.java1477 ObjectStreamClass.ClassDataSlot[] slots = desc.getClassDataLayout();
1478 for (int i = 0; i < slots.length; i++) {
1479 ObjectStreamClass slotDesc = slots[i].desc;
H A DObjectInputStream.java1876 ObjectStreamClass.ClassDataSlot[] slots = desc.getClassDataLayout();
1877 for (int i = 0; i < slots.length; i++) {
1878 ObjectStreamClass slotDesc = slots[i].desc;
1880 if (slots[i].hasData) {
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec1297 (Repeat slots "The number of variables."
1390 (Repeat slots "The number of variables."
2452 (Repeat slots "The number of values to get. "
2461 (Repeat values "The number of values retrieved, always equal to slots, "
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp2612 int slots = 0; local
2615 slots += type2size[bt];
2617 return slots;

Completed in 141 milliseconds