Searched refs:lb (Results 1 - 25 of 55) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/
H A DPerfLongMonitor.java42 LongBuffer lb; field in class:PerfLongMonitor
52 * @param lb the buffer containing the long instrument data.
55 boolean supported, LongBuffer lb) {
57 this.lb = lb;
69 return new Long(lb.get(0));
78 return lb.get(0);
54 PerfLongMonitor(String name, Units u, Variability v, boolean supported, LongBuffer lb) argument
/openjdk7/jdk/src/share/classes/sun/management/counter/perf/
H A DPerfLongArrayCounter.java36 LongBuffer lb; field in class:PerfLongArrayCounter
40 LongBuffer lb) {
43 this.lb = lb;
55 lb.position(0);
56 long[] l = new long[lb.limit()];
59 lb.get(l);
68 lb.position(index);
69 return lb.get();
38 PerfLongArrayCounter(String name, Units u, Variability v, int flags, int vectorLength, LongBuffer lb) argument
H A DPerfLongCounter.java35 LongBuffer lb; field in class:PerfLongCounter
39 LongBuffer lb) {
41 this.lb = lb;
45 return new Long(lb.get(0));
52 return lb.get(0);
38 PerfLongCounter(String name, Units u, Variability v, int flags, LongBuffer lb) argument
H A DPerfDataEntry.java208 LongBuffer lb = data.asLongBuffer();
209 return lb;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/nav/
H A DWildcardTypeImpl.java38 private final Type[] lb; field in class:WildcardTypeImpl
40 public WildcardTypeImpl(Type[] ub, Type[] lb) { argument
42 this.lb = lb;
50 return lb;
54 return Arrays.hashCode(lb) ^ Arrays.hashCode(ub);
60 return Arrays.equals(that.getLowerBounds(),lb)
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DSetOfIntegerSyntax.java121 int lb = 0;
134 lb = digit;
145 lb = 10 * lb + digit;
150 accumulate (theRanges, lb, lb);
165 accumulate(theRanges, lb, lb);
190 accumulate(theRanges, lb, ub);
201 accumulate(theRanges, lb, u
246 accumulate(Vector ranges, int lb,int ub) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DTextSourceLabel.java49 Rectangle2D lb; field in class:TextSourceLabel
59 public TextSourceLabel(TextSource source, Rectangle2D lb, Rectangle2D ab, GlyphVector gv) { argument
62 this.lb = lb;
72 if (lb == null) {
73 lb = createLogicalBounds();
75 return new Rectangle2D.Float((float)(lb.getX() + x),
76 (float)(lb.getY() + y),
77 (float)lb.getWidth(),
78 (float)lb
[all...]
H A DExtendedTextSourceLabel.java67 Rectangle2D lb; field in class:ExtendedTextSourceLabel
123 if (lb == null) {
124 lb = createLogicalBounds();
126 return new Rectangle2D.Float((float)(lb.getX() + x),
127 (float)(lb.getY() + y),
128 (float)lb.getWidth(),
129 (float)lb.getHeight());
133 if (lb == null) {
134 lb = createLogicalBounds();
136 return (float)lb
[all...]
H A DDecoration.java350 Rectangle2D lb = label.getLogicalBounds();
356 minY = (float)lb.getY();
357 maxY = minY + (float)lb.getHeight();
362 Rectangle2D ab = new Rectangle2D.Float(minX, minY, (float)lb.getWidth(), maxY-minY);
384 Rectangle2D lb = label.getLogicalBounds();
386 float x2 = x1 + (float)lb.getWidth();
/openjdk7/jdk/src/share/classes/sun/misc/
H A DPerfCounter.java61 private final LongBuffer lb; field in class:PerfCounter
67 this.lb = bb.asLongBuffer();
83 return lb.get(0);
90 lb.put(0, newValue);
98 lb.put(0, res);
/openjdk7/jdk/test/java/io/Serializable/classDescHooks/
H A DLoopback.java75 Loopback lb = new Loopback("foo");
79 lout.writeObject(lb);
85 if (!lb.str.equals(lbcopy.str)) {
H A DExternLoopback.java108 ExternLoopback lb = new ExternLoopback("foo", "bar", "baz");
112 lout.writeObject(lb);
118 if (!lb.equals(lbcopy)) {
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v1_0/
H A DPerfDataBufferPrologue.java205 LongBuffer lb = byteBuffer.asLongBuffer();
206 lb.limit(1);
207 return lb;
H A DPerfDataBuffer.java240 LongBuffer lb = prologue.modificationTimeStampBuffer();
242 Variability.MONOTONIC, false, lb);
443 LongBuffer lb = LongBuffer.allocate(1);
444 lb.put(new_max.longValue());
446 Variability.CONSTANT, false, lb);
450 Variability.CONSTANT, false, lb);
454 Variability.CONSTANT, false, lb);
561 LongBuffer lb = buffer.asLongBuffer();
562 lb.limit(1);
563 monitor = new PerfLongMonitor(name, u, v, supported, lb);
[all...]
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/v2_0/
H A DPerfDataBufferPrologue.java238 LongBuffer lb = byteBuffer.asLongBuffer();
239 lb.limit(1);
240 return lb;
H A DPerfDataBuffer.java248 LongBuffer lb = prologue.modificationTimeStampBuffer();
250 Variability.MONOTONIC, false, lb);
447 LongBuffer lb = buffer.asLongBuffer();
448 lb.limit(1); // limit buffer size to one long value.
450 supported, lb);
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DPipeImpl.java86 InetAddress lb = InetAddress.getByName("127.0.0.1");
87 assert(lb.isLoopbackAddress());
91 ssc.socket().bind(new InetSocketAddress(lb, 0));
96 = new InetSocketAddress(lb, ssc.socket().getLocalPort());
/openjdk7/jdk/test/sun/security/util/BitArray/
H A DNamedBitList.java101 static void check(int la, int lb) throws Exception { argument
102 if (la != lb) {
103 System.err.println("Length is " + la + ", should be " + lb);
106 System.err.println("Correct, which is " + lb);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/text/
H A DTextMeasureTests.java491 Rectangle2D lb; field in class:TextMeasureTests.TLExContext
504 lb = tl.getBounds();
505 lb.setRect(lb.getMinX() - 10, lb.getMinY(), lb.getWidth() + 20, lb.getHeight());
581 Rectangle2D lb = tlctx.lb;
585 s = tl.getLogicalHighlightShape(0, len, lb);
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DListBuffer.java43 public static <T> ListBuffer<T> lb() { method in class:ListBuffer
48 ListBuffer<T> lb = new ListBuffer<T>();
49 lb.add(x);
50 return lb;
/openjdk7/jdk/test/java/net/MulticastSocket/
H A DSetLoopbackMode.java100 InetAddress lb = InetAddress.getByName("::1");
101 if (NetworkInterface.getByInetAddress(lb) != null) {
/openjdk7/jdk/src/share/classes/sun/reflect/generics/parser/
H A DSignatureParser.java413 FieldTypeSignature[] ub, lb;
415 lb = new FieldTypeSignature[1];
422 lb[0] = BottomSignature.make(); // bottom
423 return Wildcard.make(ub, lb);
428 lb[0] = BottomSignature.make(); // bottom
429 return Wildcard.make(ub, lb);
433 lb[0] = parseFieldTypeSignature();
435 return Wildcard.make(ub, lb);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DDeferredLintHandler.java85 loggersQueue.put(currentPos, ListBuffer.<LintLogger>lb());
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djquant2.c432 int n,lb; local
474 * Note that lb value is max for lower box, so must be < old max.
478 lb = (b1->c0max + b1->c0min) / 2;
479 b1->c0max = lb;
480 b2->c0min = lb+1;
483 lb = (b1->c1max + b1->c1min) / 2;
484 b1->c1max = lb;
485 b2->c1min = lb+1;
488 lb = (b1->c2max + b1->c2min) / 2;
489 b1->c2max = lb;
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DBitSet.java204 * <br>{@code BitSet.valueOf(lb).get(n) == ((lb.get(lb.position()+n/64) & (1L<<(n%64))) != 0)}
205 * <br>for all {@code n < 64 * lb.remaining()}.
210 * @param lb a long buffer containing a little-endian representation
215 public static BitSet valueOf(LongBuffer lb) { argument
216 lb = lb.slice();
218 for (n = lb.remaining(); n > 0 && lb
[all...]

Completed in 87 milliseconds

123