Searched defs:lb (Results 1 - 14 of 14) sorted by relevance

/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/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/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 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 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
/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...]
/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/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...]
/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/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/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/hotspot/src/share/vm/adlc/
H A Doutput_c.cpp507 uint lb, ub; local
509 for (lb = 0; (used_mask & (1 << lb)) == 0; lb++);
512 if (lb == ub)
519 cycledigit, lb, cycledigit, ub,

Completed in 61 milliseconds