Searched defs:base (Results 251 - 275 of 291) sorted by relevance

<<1112

/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.cpp415 // java.lang.ClassLoader$NativeLibrary, but the VM loads the base library
1294 const char* base, const size_t size)
1298 " pg_sz=" SIZE_FORMAT " base=" PTR_FORMAT
1301 page_size, base, size);
1429 void os::split_reserved_memory(char *base, size_t size, argument
1431 pd_split_reserved_memory(base, size, split, realloc);
1292 trace_page_sizes(const char* str, const size_t region_min_size, const size_t region_max_size, const size_t page_size, const char* base, const size_t size) argument
H A Dthread.cpp1615 // Record real stack base and size.
1649 // from there will be lower than the stack base just computed
2508 // The base notation is from the stacks point of view, growing downward.
2510 address base = stack_yellow_zone_base() - stack_yellow_zone_size(); local
2512 guarantee(base < stack_base(),"Error calculating stack yellow zone");
2513 guarantee(base < os::current_stack_pointer(),"Error calculating stack yellow zone");
2515 if (os::guard_memory((char *) base, stack_yellow_zone_size())) {
2530 // The base notation is from the stacks point of view, growing downward.
2532 address base = stack_yellow_zone_base() - stack_yellow_zone_size();
2534 if (os::unguard_memory((char *)base, stack_yellow_zone_siz
[all...]
H A Darguments.cpp284 // base // from os::get_system_properties() or -Xbootclasspath=
288 // directories are added to the sysclasspath just before the base.
294 SysClassPath(const char* base);
297 inline void set_base(const char* base);
301 inline void reset_path(const char* base);
326 // base are allocated in the C heap and freed by this class.
339 SysClassPath::SysClassPath(const char* base) { argument
341 _items[_scp_base] = base;
346 // Free everything except the base.
353 inline void SysClassPath::set_base(const char* base) { argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DAttr.java239 * @param base If the variable is referred to in a Select, the part
243 void checkAssignable(DiagnosticPosition pos, VarSymbol v, JCTree base, Env<AttrContext> env) { argument
247 !((base == null ||
248 (base.getTag() == JCTree.IDENT && TreeInfo.name(base) == names._this)) &&
957 Type base = types.asSuper(exprType, syms.iterableType.tsym);
958 if (base == null) {
965 List<Type> iterableParams = base.allparams();
H A DResolve.java199 /** Is given class a subclass of given base class, or an inner class
203 * @param base The base class
205 private boolean isInnerSubClass(ClassSymbol c, Symbol base) { argument
206 while (c != null && !c.isSubClass(base, types)) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java527 * @param base The qualifier tree.
529 public JCExpression Select(JCExpression base, Symbol sym) { argument
530 return new JCFieldAccess(base, sym.name, sym).setPos(pos).setType(sym.type);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c1134 * 10 is exact whereas .1 is inexact in base 2
1192 int exp_b10; /* A base 10 exponent */
1193 double base; /* 10^exp_b10 */ local
1195 /* First extract a base 10 exponent of the number,
1197 * from base 2 to base 10 (multiply by log10(2) -
1204 (void)frexp(fp, &exp_b10); /* exponent to base 2 */
1206 exp_b10 = (exp_b10 * 77) >> 8; /* <= exponent to base 10 */
1209 base = png_pow10(exp_b10); /* May underflow */
1211 while (base < DBL_MI
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DXSSimpleTypeDecl.java323 protected XSSimpleTypeDecl(XSSimpleTypeDecl base, String name, short validateDV, argument
327 fBase = base;
354 protected XSSimpleTypeDecl(XSSimpleTypeDecl base, String name, String uri, short finalSet, boolean isImmutable, argument
356 this(base, name, uri, finalSet, isImmutable, annotations);
362 protected XSSimpleTypeDecl(XSSimpleTypeDecl base, String name, String uri, short finalSet, boolean isImmutable, argument
364 fBase = base;
383 // always inherit facets from the base.
422 // Inherit from the base type
423 fBuiltInKind = base.fBuiltInKind;
480 protected XSSimpleTypeDecl setRestrictionValues(XSSimpleTypeDecl base, Strin argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java2085 protected int getPreviousTabIndex(int base) { argument
2086 int tabIndex = (base - 1 >= 0? base - 1 : tabPane.getTabCount() - 1);
2090 protected int getNextTabIndex(int base) { argument
2091 return (base+1)%tabPane.getTabCount();
2094 protected int getNextTabIndexInRun(int tabCount, int base) { argument
2096 return getNextTabIndex(base);
2098 int currentRun = getRunForTab(tabCount, base);
2099 int next = getNextTabIndex(base);
2106 protected int getPreviousTabIndexInRun(int tabCount, int base) { argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DCSS.java547 * Sets the base font size. <code>sz</code> is a CSS value, and is
561 * Sets the base font size from the passed in string.
580 * Returns the base font size.
1083 * <code>base</code> is used as the parent. If a valid URL can not
1087 static URL getURL(URL base, String cssString) { argument
1104 if (base != null) {
1105 // Relative URL, try from base
1107 URL url = new URL(base, cssString);
1417 * if it is par of a font or base font tag.
2597 // PENDING: this base i
2598 getImage(URL base) argument
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp2672 address base = code_begin(); local
2677 address pc = base + om->offset();
/openjdk7/hotspot/src/share/vm/opto/
H A DloopTransform.cpp741 // expression that does the alignment. Note that only one array base can be
2649 Node* base = store->in(MemNode::Address)->as_AddP()->in(AddPNode::Base); local
2662 index = new (C) AddPNode(base, base, index);
2664 Node* from = new (C) AddPNode(base, index, offset);
2722 AllocateNode* alloc = AllocateNode::Ideal_allocation(base, this);
H A Dmacro.cpp1012 Node* PhaseMacroExpand::make_load(Node* ctl, Node* mem, Node* base, int offset, const Type* value_type, BasicType bt) { argument
1013 Node* adr = basic_plus_adr(base, offset);
1021 Node* PhaseMacroExpand::make_store(Node* ctl, Node* mem, Node* base, int offset, Node* value, BasicType bt) { argument
1022 Node* adr = basic_plus_adr(base, offset);
1366 // Get base of thread-local storage area
H A Dsuperword.cpp549 p1.base() != p2.base() && p1.valid() && p2.valid()) {
551 OrderedPair pp(p1.base(), p2.base());
687 if (p1.base() != p2.base() || !p1.comparable(p2)) return false;
2077 // incorporate base e +/- base && Mask >>> log2(elt)
2078 Node* xbase = new(_phase->C) CastP2XNode(NULL, align_to_ref_p.base());
2233 // Match AddP(base, Add
2234 Node* base = adr->in(AddPNode::Base); local
[all...]
H A Dmemnode.cpp214 if( tp->base() != Type::AnyPtr &&
282 // The address's base and type may change when the address is processed.
296 Node* base = NULL; local
298 base = address->in(AddPNode::Base);
299 if (base != NULL && phase->type(base)->higher_equal(TypePtr::NULL_PTR) &&
301 // Note: raw address has TOP base and top->higher_equal(TypePtr::NULL_PTR) is true.
309 if (C->is_dead_node(base->_idx)) tty->print_cr("'base' is dead");
311 base
496 Node* base = AddPNode::Ideal_base_and_offset(adr, phase, offset); local
1185 Node* base = in(Address)->in(AddPNode::Base); local
1435 Node* base = AddPNode::Ideal_base_and_offset(address, phase, ignore); local
1590 Node* base = adr->in(AddPNode::Base); local
1616 Node* base = adr->in(AddPNode::Base); local
2077 Node* base = AddPNode::Ideal_base_and_offset(adr, phase, offset); local
2176 Node* base = AddPNode::Ideal_base_and_offset(adr, phase, offset); local
2208 Node* base = AddPNode::Ideal_base_and_offset(adr, phase, offset); local
2658 Node *base = adr->in(1); local
3091 Node* base = AddPNode::Ideal_base_and_offset(st->in(MemNode::Address), local
3225 Node* base = other_adr; local
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp351 Register reg = mon_addr.base();
708 __ stf(FloatRegisterImpl::S, rsrc, addr.base(), addr.disp());
796 int LIR_Assembler::store(LIR_Opr from_reg, Register base, int offset, BasicType type, bool wide, bool unaligned) { argument
802 store_offset = store(from_reg, base, O7, type, wide);
810 case T_BYTE : __ stb(from_reg->as_register(), base, offset); break;
811 case T_CHAR : __ sth(from_reg->as_register(), base, offset); break;
812 case T_SHORT : __ sth(from_reg->as_register(), base, offset); break;
813 case T_INT : __ stw(from_reg->as_register(), base, offset); break;
818 __ stw(from_reg->as_register_lo(), base, offset + lo_word_offset_in_bytes);
819 __ stw(O7, base, offse
866 store(LIR_Opr from_reg, Register base, Register disp, BasicType type, bool wide) argument
908 load(Register base, int offset, LIR_Opr to_reg, BasicType type, bool wide, bool unaligned) argument
987 load(Register base, Register disp, LIR_Opr to_reg, BasicType type, bool wide) argument
1091 Register base = addr->base()->as_pointer_register(); local
1335 Address base = as_Address(addr); local
1341 Address base = as_Address(addr); local
3187 Register base = mem_addr->base()->as_register(); local
[all...]
H A DsharedRuntime_sparc.cpp486 // base+st_off points to top of argument
497 // Stores long into offset pointed to by base
498 void store_c2i_long(Register r, Register base,
500 void store_c2i_object(Register r, Register base,
502 void store_c2i_int(Register r, Register base,
505 VMReg r_1, Register base, const int st_off);
506 void store_c2i_float(FloatRegister f, Register base,
592 // Stores long into offset pointed to by base
593 void AdapterGenerator::store_c2i_long(Register r, Register base, argument
598 __ stx(r, base, next_arg_slo
619 store_c2i_object(Register r, Register base, const int st_off) argument
624 store_c2i_int(Register r, Register base, const int st_off) argument
630 store_c2i_double(VMReg r_2, VMReg r_1, Register base, const int st_off) argument
643 store_c2i_float(FloatRegister f, Register base, const int st_off) argument
689 const Register base = SP; local
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRAssembler_x86.cpp221 return addr->base()->is_illegal() && addr->index()->is_illegal();
231 if (addr->base()->is_illegal()) {
243 Register base = addr->base()->as_pointer_register(); local
246 return Address( base, addr->disp());
249 return Address(base, index, (Address::ScaleFactor) addr->scale(), addr->disp());
254 return Address(base, addr_offset);
263 Address base = as_Address(addr); local
264 return Address(base._base, base
1042 Register base = to_addr->base()->as_register(); local
1250 Register base = addr->base()->as_register(); local
[all...]
H A DtemplateTable_x86_32.cpp135 if (obj.base() != rdx) {
136 __ movl(rdx, obj.base());
177 __ store_check(obj.base());
2711 ByteSize base = constantPoolCacheOopDesc::base_offset(); local
2720 __ movl(rdx, Address(rcx, rbx, Address::times_ptr, in_bytes(base +
2724 __ movptr(rbx, Address(rcx, rbx, Address::times_ptr, in_bytes(base + ConstantPoolCacheEntry::f2_offset())));
H A DtemplateTable_x86_64.cpp144 if (obj.base() != rdx) {
145 __ movq(rdx, obj.base());
184 __ store_check(obj.base());
2749 ByteSize base = constantPoolCacheOopDesc::base_offset(); local
2758 in_bytes(base +
2763 in_bytes(base + ConstantPoolCacheEntry::f2_offset())));
/openjdk7/hotspot/src/share/vm/adlc/
H A Dadlparse.cpp326 // Can not have additional base operands in right side of match!
3338 char *base = NULL; local
3357 parse_err(SYNERR, "Expected keyword, base|index|scale|disp, or '%%}' ending interface.\n");
3360 if ( strcmp(field,"base") == 0 ) {
3361 base = interface_field_parse();
3373 parse_err(SYNERR, "Expected keyword, base|index|scale|disp, or '%%}' ending interface.\n");
3385 Interface *inter = new MemInterface(base, index, scale, disp);
3419 parse_err(SYNERR, "Expected keyword, base|index|scale|disp, or '%%}' ending interface.\n");
3441 parse_err(SYNERR, "Expected keyword, base|index|scale|disp, or '%%}' ending interface.\n");
H A Dformssel.cpp881 int base = 1; // Skip control local
882 base += _matrule->needs_ideal_memory_edge(globals);
884 // Also skip the base-oop value for uses of derived oops.
886 base += needs_base_oop_edge(globals);
888 return base;
1278 fprintf(fp, "st->print(\"constant table base + #%%d\", constant_offset());\n");
2277 // iterate through all base operands
2299 // May iterate through all base operands if reg_class for 'leaf' is NULL
2719 MemInterface::MemInterface(char *base, char *index, char *scale, char *disp) argument
2720 : Interface("MEMORY_INTER"), _base(base), _inde
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp2869 Base* base = local
2874 start->set_next(base, 0);
2875 start->set_end(base);
2878 base->set_state(state->copy(ValueStack::StateAfter, std_entry->bci()));
2880 if (base->std_entry()->state() == NULL) {
2882 base->std_entry()->merge(state);
2885 assert(base->std_entry()->state() != NULL, "");
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java1931 protected int getPreviousTabIndex(final int base) { argument
1932 final int tabIndex = (base - 1 >= 0 ? base - 1 : tabPane.getTabCount() - 1);
1936 protected int getNextTabIndex(final int base) { argument
1937 return (base + 1) % tabPane.getTabCount();
1940 protected int getNextTabIndexInRun(final int tabCount, final int base) { argument
1942 return getNextTabIndex(base);
1944 final int currentRun = getRunForTab(tabCount, base);
1945 final int next = getNextTabIndex(base);
1952 protected int getPreviousTabIndexInRun(final int tabCount, final int base) { argument
[all...]
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp300 assert(smallbuf.base() == null || mallocs.contains(smallbuf.base()));
301 assert(tsmallbuf.base() == null || tmallocs.contains(tsmallbuf.base()));
371 if (wpbase == cur_classfile_head.base()) {
377 assert(wpbase == which->base());
392 wpbase = which->base();
502 (temp ? &tmallocs : &mallocs)->add(xsmallbuf.base());
565 rp = input.base();
581 rplimit = rp = input.base();
1296 int base = cp.tag_base[tag]; local
[all...]

Completed in 229 milliseconds

<<1112