Searched defs:base (Results 101 - 125 of 291) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DMD5.java73 private MD5(MD5 base) { argument
74 super(base);
75 this.state = base.state.clone();
H A DSHA5.java38 * The two algorithms are almost identical. This file contains a base
107 SHA5(SHA5 base) { argument
108 super(base);
109 this.initialHashes = base.initialHashes;
110 this.state = base.state.clone();
274 private SHA512(SHA512 base) { argument
275 super(base);
299 private SHA384(SHA384 base) { argument
300 super(base);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DBuilder.java139 * @param base GeneralName at base of subtree
140 * @param test GeneralName to be tested against base
143 * @return distance of test name from base, where 0
145 * child of base, 2 means test is a grandchild, etc.
146 * -1 means test is a parent of base, -2 means test
149 static int distance(GeneralNameInterface base, argument
151 switch (base.constrains(test)) {
173 return test.subtreeDepth() - base.subtreeDepth();
183 * @param base GeneralNam
193 hops(GeneralNameInterface base, GeneralNameInterface test, int incomparable) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DIOVecWrapper.java141 void putBase(int i, long base) { argument
144 vecArray.putInt(offset, (int)base);
146 vecArray.putLong(offset, base);
/openjdk7/hotspot/agent/src/os/bsd/
H A DBsdDebuggerLocal.c141 uintptr_t base; local
146 base = get_lib_base(ph, i);
149 (*env)->NewStringUTF(env, name), (jlong)0, (jlong)base);
H A Dlibproc_impl.h40 uintptr_t base; member in struct:lib_info
88 uintptr_t ld_base_addr; // base address of ld.so
119 lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base);
123 uintptr_t base);
H A Dsymtab.c214 uintptr_t search_symbol(struct symtab* symtab, uintptr_t base, argument
228 uintptr_t rslt = (uintptr_t) ((char*)base + sym->offset);
/openjdk7/hotspot/agent/src/os/linux/
H A DLinuxDebuggerLocal.c140 uintptr_t base; local
145 base = get_lib_base(ph, i);
148 (*env)->NewStringUTF(env, name), (jlong)0, (jlong)base);
H A Dlibproc_impl.h40 uintptr_t base; member in struct:lib_info
86 uintptr_t ld_base_addr; // base address of ld.so
117 lib_info* add_lib_info(struct ps_prochandle* ph, const char* libname, uintptr_t base);
121 uintptr_t base);
H A Dps_proc.c278 intptr_t base; local
281 sscanf(word[0], "%lx", &base);
283 sscanf(word[0], "%x", &base);
285 if ((lib = add_lib_info(ph, word[5], (uintptr_t)base)) == NULL)
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgCDebugInfoBuilder.java38 private Address base; field in class:WindbgCDebugInfoBuilder
66 CDebugInfoDataBase buildDataBase(String dllName, Address base) { argument
67 this.base = base;
146 // FIXME: take offset and virtual base offset into account
150 // I don't think we need to handle indirect virtual base
566 Address startPC = base.addOffsetTo(seg.getVirtualAddress() + map.getCodeOffset(lp));
568 Address endPC = base.addOffsetTo(seg.getSize());
680 // Result is relative to image base
681 return base
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMethodData.java268 // this in an offset from the base of the MDO, so convert to offset into _data
291 private byte[] fetchDataAt(Address base, long offset, long size) { argument
294 result[i] = base.getJByteAt(offset + i);
306 OopHandle base = getHandle();
311 Address value = base.getAddressAt(offset + i * MethodData.cellSize);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DDTD.java69 public final Element base = getElement("base"); field in class:DTD
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletClassLoader.java60 * resources. It extends URLClassLoader to search the applet code base
64 private URL base; /* applet code base URL */ field in class:AppletClassLoader
65 private CodeSource codesource; /* codesource for the base URL */
76 * Creates a new AppletClassLoader for the specified base URL.
78 protected AppletClassLoader(URL base) { argument
80 this.base = base;
82 new CodeSource(base, (java.security.cert.Certificate[]) null);
99 * Returns the applet code base UR
[all...]
/openjdk7/jdk/src/share/classes/java/beans/
H A DFeatureDescriptor.java359 * @param base the class that contains the method in the hierarchy
366 static Class getReturnType(Class base, Method method) { argument
367 if (base == null) {
368 base = method.getDeclaringClass();
370 return TypeResolver.erase(TypeResolver.resolveInClass(base, method.getGenericReturnType()));
376 * @param base the class that contains the method in the hierarchy
383 static Class[] getParameterTypes(Class base, Method method) { argument
384 if (base == null) {
385 base = method.getDeclaringClass();
387 return TypeResolver.erase(TypeResolver.resolveInClass(base, metho
[all...]
H A DIndexedPropertyDescriptor.java148 * @param base the base name of the property (the rest of the method name)
157 IndexedPropertyDescriptor(Class<?> bean, String base, Method read, Method write, Method readIndexed, Method writeIndexed) throws IntrospectionException { argument
158 super(bean, base, read, write);
H A DPropertyDescriptor.java46 // The base name of the method name which will be prefixed with the
112 // If this class or one of its base classes allow PropertyChangeListener,
146 * @param base the base name of the property (the rest of the method name)
153 PropertyDescriptor(Class<?> bean, String base, Method read, Method write) throws IntrospectionException { argument
158 setName(Introspector.decapitalize(base));
161 this.baseName = base;
/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java95 * address base[i] and extends for len[i] elements. It's always
463 * @param base the index of the first element in the range
474 int base, int len, int hint) {
479 if (key.compareTo(a[base + hint]) > 0) {
480 // Gallop right until a[base+hint+lastOfs] < key <= a[base+hint+ofs]
482 while (ofs < maxOfs && key.compareTo(a[base + hint + ofs]) > 0) {
491 // Make offsets relative to base
494 } else { // key <= a[base + hint]
495 // Gallop left until a[base
473 gallopLeft(Comparable<Object> key, Object[] a, int base, int len, int hint) argument
543 gallopRight(Comparable<Object> key, Object[] a, int base, int len, int hint) argument
[all...]
H A DTimSort.java120 * address base[i] and extends for len[i] elements. It's always
495 * @param base the index of the first element in the range
506 private static <T> int gallopLeft(T key, T[] a, int base, int len, int hint, argument
511 if (c.compare(key, a[base + hint]) > 0) {
512 // Gallop right until a[base+hint+lastOfs] < key <= a[base+hint+ofs]
514 while (ofs < maxOfs && c.compare(key, a[base + hint + ofs]) > 0) {
523 // Make offsets relative to base
526 } else { // key <= a[base + hint]
527 // Gallop left until a[base
576 gallopRight(T key, T[] a, int base, int len, int hint, Comparator<? super T> c) argument
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionManager.cpp264 T* const base = (T*)objArrayOop(obj)->base(); local
265 T* p = base + start;
266 T* const chunk_end = base + end;
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.cpp219 void FileMapInfo::write_region(int region, char* base, size_t size, argument
228 " file offset 0x%x", region, size, base, _file_offset);
233 si->_base = base;
238 write_bytes_aligned(base, (int)size);
308 fail_continue("Shared space base address does not match.");
334 char *base = os::remap_memory(_fd, _full_path, si->_file_offset, local
338 if (base == NULL) {
342 if (base != si->_base) {
363 MemTracker::record_virtual_memory_type((address)unmapped_rs.base(), mtJavaHeap);
382 char *base local
[all...]
H A Dheap.cpp89 void CodeHeap::on_code_mapping(char* base, size_t size) {
91 extern void linux_wrap_code(char* base, size_t size);
92 linux_wrap_code(base, size);
119 rs.base(), rs.size());
155 char* base = _memory.low() + _memory.committed_size(); local
157 on_code_mapping(base, dm);
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolKlass.cpp127 oop* base = (oop*)cp->base(); local
130 if (*base != NULL) MarkSweep::mark_and_push(base);
132 base++;
154 oop* base = (oop*)cp->base(); local
157 if (*base != NULL) PSParallelCompact::mark_and_push(cm, base);
159 base
183 oop* base = (oop*)cp->base(); local
211 oop* base = (oop*)cp->base(); local
239 oop* base = (oop*)cp->base(); local
274 oop* base = (oop*)cp->base(); local
294 oop* base = cp->obj_at_addr_raw(i); local
[all...]
H A DklassVtable.hpp60 klassVtable(KlassHandle h_klass, void* base, int length) : _klass(h_klass) { argument
61 _tableOffset = (address)base - (address)h_klass(); _length = length;
/openjdk7/jdk/src/share/classes/java/awt/
H A DButton.java108 private static final String base = "button"; field in class:Button
162 return base + nameCounter++;

Completed in 358 milliseconds

1234567891011>>