Searched refs:ub (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/nav/
H A DWildcardTypeImpl.java37 private final Type[] ub; field in class:WildcardTypeImpl
40 public WildcardTypeImpl(Type[] ub, Type[] lb) { argument
41 this.ub = ub;
46 return ub;
54 return Arrays.hashCode(lb) ^ Arrays.hashCode(ub);
61 && Arrays.equals(that.getUpperBounds(),ub);
H A DReflectionNavigator.java217 Type[] ub = w.getUpperBounds();
226 for (int i = 0; i < ub.length; i++) {
227 Type t = ub[i];
228 ub[i] = visit(t, types);
229 diff |= (t != ub[i]);
236 return new WildcardTypeImpl(lb, ub);
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DSetOfIntegerSyntax.java122 int ub = 0;
176 ub = digit;
187 ub = 10 * ub + digit;
190 accumulate(theRanges, lb, ub);
201 accumulate(theRanges, lb, ub);
231 accumulate(theRanges, lb, ub);
243 * Accumulate the given range (lb .. ub) into the canonical array form
246 private static void accumulate(Vector ranges, int lb,int ub) { argument
248 if (lb <= ub) {
[all...]
/openjdk7/hotspot/test/compiler/6797305/
H A DTest6797305.java48 int ub = loadUB(ba);
49 if (ub != 0xFF)
50 throw new InternalError("loadUB failed: " + ub + " != " + 0xFF);
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DCharSet.java417 int ub;
420 // starting characters of the two strings, and "ub" gets
424 ub = chars[++i];
428 ub = c2[++j];
433 // "ub" plus one (the "plus one" stitches touching ranges together)...
436 (i < chars.length && chars[i] <= ub + 1)) {
439 // "ub" plus one
440 while (i < chars.length && chars[i] <= ub + 1) {
444 // if i points to the endpoint of a range, update "ub"
447 // greater than "ub", updat
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/generics/parser/
H A DSignatureParser.java413 FieldTypeSignature[] ub, lb;
414 ub = new FieldTypeSignature[1];
421 ub[0] = parseFieldTypeSignature();
423 return Wildcard.make(ub, lb);
427 ub[0] = SimpleClassTypeSignature.make("java.lang.Object", false, ta);
429 return Wildcard.make(ub, lb);
434 ub[0] = SimpleClassTypeSignature.make("java.lang.Object", false, ta);
435 return Wildcard.make(ub, lb);
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DRangeMenu.java207 Character.UnicodeBlock ub = Character.UnicodeBlock.of(cp);
209 if (ub != null) {
211 currentBlock = ub;
214 if (ub == null) {
219 } else if (! ub.equals(currentBlock)) {
222 currentBlock = ub;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1BlockOffsetTable.cpp355 HeapWord* ub = _unallocated_block; local
356 if (BlockOffsetArrayUseUnallocatedBlock && addr >= ub) {
357 assert(ub < _end, "tautology (see above)");
358 return ub;
372 HeapWord* ub = _unallocated_block;
373 if (BlockOffsetArrayUseUnallocatedBlock && addr >= ub) {
374 assert(ub < _end, "tautology (see above)");
375 return ub;
435 HeapWord* ub = _unallocated_block; local
436 if (BlockOffsetArrayUseUnallocatedBlock && addr >= ub) {
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.cpp532 HeapWord* ub = _unallocated_block; local
533 if (BlockOffsetArrayUseUnallocatedBlock && addr >= ub) {
534 assert(ub < _end, "tautology (see above)");
535 return ub;
595 HeapWord* ub = _unallocated_block; local
596 if (BlockOffsetArrayUseUnallocatedBlock && addr >= ub) {
597 assert(ub < _end, "tautology (see above)");
598 return ub;
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.hpp264 HeapWord* ub = _bt.unallocated_block(); local
265 assert(ub >= bottom() &&
266 ub <= end(), "space invariant");
267 return ub;
H A DconcurrentMarkSweepGeneration.cpp5709 HeapWord* ub = (HeapWord*)round_to((intptr_t)ur.end(), alignment);
5710 MemRegion cms_span(lb, ub);
5724 HeapWord* ub = (HeapWord*)round_to((intptr_t)ur.end(), alignment);
5725 MemRegion perm_span(lb, ub);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/bindinfo/
H A DBIGlobalBinding.java90 void setUnderscoreBinding( UnderscoreBinding ub ) {
91 nameConverter = ub.nc;
/openjdk7/jdk/src/solaris/native/java/net/
H A Dnet_util_md.c719 unsigned int u0,u1,u2,u3,u4,u5,u6,u7,u8,u9,ua,ub,uc,ud,ue,uf; local
726 &u8,&u9,&ua,&ub,&uc,&ud,&ue,&uf,
739 staddr[11] = (unsigned char)ub;
/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_c.cpp507 uint lb, ub; local
510 for (ub = 31; (used_mask & (1 << ub)) == 0; ub--);
512 if (lb == ub)
519 cycledigit, lb, cycledigit, ub,
/openjdk7/hotspot/src/share/vm/opto/
H A Dgcm.cpp1869 void Block::update_uncommon_branch(Block* ub) { argument
1878 // Which successor is ub?
1881 if (_succs[s] == ub) break;
1885 // If ub is the true path, make the proability small, else
1886 // ub is the false path, and make the probability large

Completed in 685 milliseconds