Searched refs:offset (Results 451 - 475 of 1222) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DSimple.java65 * offset will change in the future, its last known offset is
124 for (int offset : zonesByOffset.keySet()) {
126 Set<String> set = zonesByOffset.get(offset);
127 if (offset == o) {
150 String s = Time.toFormedString(offset);
152 Time.toFormedString(offset) + ", \"" + key + "\"");
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkStack.hpp206 llvm::Value* slot_addr(int offset,
231 static int oopmap_slot_munge(int offset) { argument
232 return offset << (LogBytesPerWord - LogBytesPerInt);
234 static VMReg slot2reg(int offset) { argument
235 return VMRegImpl::stack2reg(oopmap_slot_munge(offset));
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp184 void BitMap::at_put(idx_t offset, bool value) { argument
186 set_bit(offset);
188 clear_bit(offset);
211 void BitMap::at_put_grow(idx_t offset, bool value) { argument
212 if (offset >= size()) {
213 resize(2 * MAX2(size(), offset));
215 at_put(offset, value);
336 void BitMap::set_intersection_at_offset(BitMap other, idx_t offset) { argument
337 assert(other.size() >= offset, "offset no
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_f.c45 * s_offset source image line bit offset
46 * d_offset destination image line bit offset
123 mlib_s32 offset)
129 mlib_s32 j; /* offset of address in dst */
137 if (size < (8 - offset)) {
139 mask >>= offset; local
145 mask = mask0 >> offset;
150 size = size - 8 + offset;
210 mlib_s32 j; /* offset of address in dst */
120 mlib_ImageCopy_bit_al(const mlib_u8 *sa, mlib_u8 *da, mlib_s32 size, mlib_s32 offset) argument
/openjdk7/langtools/test/tools/javac/6400872/
H A DT6400872.java129 int offset = 0;
130 while (offset < buf.length) {
131 int n = in.read(buf, offset, buf.length - offset);
134 offset += n;
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DLayoutEngine.h196 * @param offset - the index of the first character to process
208 virtual le_int32 characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
215 * a starting address and a maximum character count. An offset and a count are
223 * @param offset - the offset of the first character to process
237 virtual le_int32 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success);
265 * @param offset - the offset of the first character to process
274 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success);
309 * @param offset
[all...]
H A DOpenTypeLayoutEngine.cpp307 le_int32 OpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
314 if (offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
337 CanonShaping::reorderMarks(&chars[offset], count, rightToLeft, outChars, glyphStorage);
356 le_int32 OpenTypeLayoutEngine::glyphProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
363 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
368 mapCharsToGlyphs(chars, offset, coun
428 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
470 adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Dunsafe.cpp94 // guarantee this. The field offset values manipulated by the Java user
119 assert(p == NULL || field_offset >= oopDesc::header_size(), "offset must be outside of header");
122 assert(byte_offset >= 0 && byte_offset <= (jlong)MAX_OBJECT_SIZE, "sane offset");
129 assert(byte_offset < p_size, err_msg("Unsafe access: offset " INT64_FORMAT " > object's size " INT64_FORMAT, byte_offset, p_size));
156 #define GET_FIELD(obj, offset, type_name, v) \
158 type_name v = *(type_name*)index_oop_from_field_offset_long(p, offset)
160 #define SET_FIELD(obj, offset, type_name, x) \
162 *(type_name*)index_oop_from_field_offset_long(p, offset) = x
164 #define GET_FIELD_VOLATILE(obj, offset, type_name, v) \
166 volatile type_name v = OrderAccess::load_acquire((volatile type_name*)index_oop_from_field_offset_long(p, offset));
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DRangeImpl.java158 public void setStart(Node refNode, int offset) argument
179 checkIndex(refNode, offset);
182 fStartOffset = offset;
195 public void setEnd(Node refNode, int offset) argument
216 checkIndex(refNode, offset);
219 fEndOffset = offset;
853 void signalSplitData(Node node, Node newNode, int offset) { argument
856 fDocument.splitData(node, newNode, offset);
863 void receiveSplitData(Node node, Node newNode, int offset) { argument
869 if (fStartOffset > offset) {
887 deleteData(CharacterData node, int offset, int count) argument
898 receiveDeletedText(Node node, int offset, int count) argument
1880 checkIndex(Node refNode, int offset) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCodeSetConversion.java127 public abstract char[] getChars(byte[] bytes, int offset, int length); argument
347 public char[] getChars(byte[] bytes, int offset, int numBytes) { argument
361 ByteBuffer byteBuf = ByteBuffer.wrap(bytes, offset, numBytes);
450 public char[] getChars(byte[] bytes, int offset, int numBytes) { argument
452 if (hasUTF16ByteOrderMarker(bytes, offset, numBytes)) {
458 return super.getChars(bytes, offset, numBytes);
469 return super.getChars(bytes, offset, numBytes);
476 private boolean hasUTF16ByteOrderMarker(byte[] array, int offset, int length) { argument
481 int b1 = array[offset] & 0x00FF;
482 int b2 = array[offset
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DCodeHTML.java115 int no_pad_bytes=0, offset;
138 offset = bytes.getIndex() - 12 - no_pad_bytes - 1;
139 default_offset += offset;
146 jump_table[i] = offset + bytes.readInt();
165 offset = bytes.getIndex() - 8 - no_pad_bytes - 1;
167 default_offset += offset;
175 jump_table[i] = offset + bytes.readInt();
188 /* Two address bytes + offset from start of byte stream form the
455 int default_offset, offset;
467 offset
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DIndexColorModel.java276 * @param start the starting offset of the first color component
312 * @param start the starting offset of the first color component
389 * @param start the starting offset of the first color component
455 * @param start the starting offset of the first color component
1072 * <code>offset + getNumComponents()</code> elements.
1077 * at <code>offset</code> even if the array is allocated by this method.
1081 * starting at <code>offset</code>.
1085 * @param offset the offset into the <code>components</code> array at
1088 * specified pixel starting at the specified offset
1092 getComponents(int pixel, int[] components, int offset) argument
1158 getComponents(Object pixel, int[] components, int offset) argument
1204 getDataElement(int[] components, int offset) argument
1277 getDataElements(int[] components, int offset, Object pixel) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLEditorKit.java273 * @param offset the offset to insert HTML at
283 public void insertHTML(HTMLDocument doc, int offset, String html, argument
287 if (offset > doc.getLength()) {
288 throw new BadLocationException("Invalid location", offset);
292 ParserCallback receiver = doc.getReader(offset, popDepth, pushDepth,
655 * Current offset.
759 Element elem, AttributeSet attr, int offset,
764 if (m != null && offset < hdoc.getLength()) {
768 Shape lBounds = ui.modelToView(html, offset,
758 getMapHREF(JEditorPane html, HTMLDocument hdoc, Element elem, AttributeSet attr, int offset, int x, int y) argument
798 doesElementContainLocation(JEditorPane editor, Element e, int offset, int x, int y) argument
1517 getElementsAt(HTMLDocument doc, int offset) argument
1524 getElementsAt(Element parent, int offset, int depth) argument
1544 elementCountToTag(HTMLDocument doc, int offset, HTML.Tag tag) argument
1563 findElementMatchingTag(HTMLDocument doc, int offset, HTML.Tag tag) argument
1631 insertHTML(JEditorPane editor, HTMLDocument doc, int offset, String html, int popDepth, int pushDepth, HTML.Tag addTag) argument
1651 insertAtBoundary(JEditorPane editor, HTMLDocument doc, int offset, Element insertElement, String html, HTML.Tag parentTag, HTML.Tag addTag) argument
1666 insertAtBoundry(JEditorPane editor, HTMLDocument doc, int offset, Element insertElement, String html, HTML.Tag parentTag, HTML.Tag addTag) argument
1729 insertIntoTag(JEditorPane editor, HTMLDocument doc, int offset, HTML.Tag tag, HTML.Tag addTag) argument
2102 activateLink(String href, HTMLDocument doc, JEditorPane editor, int offset) argument
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DDataInputStream.java132 * @param off the start offset in the destination array <code>b</code>
181 * @param off the start offset of the data.
509 int offset = 0;
530 buf = new char[offset + 128];
531 room = buf.length - offset - 1;
532 System.arraycopy(lineBuffer, 0, buf, 0, offset);
535 buf[offset++] = (char) c;
539 if ((c == -1) && (offset == 0)) {
542 return String.copyValueOf(buf, 0, offset);
/openjdk7/jdk/src/share/classes/java/util/concurrent/atomic/
H A DAtomicIntegerFieldUpdater.java270 private final long offset; field in class:AtomicIntegerFieldUpdater.AtomicIntegerFieldUpdaterImpl
297 offset = unsafe.objectFieldOffset(field);
309 return unsafe.compareAndSwapInt(obj, offset, expect, update);
314 return unsafe.compareAndSwapInt(obj, offset, expect, update);
319 unsafe.putIntVolatile(obj, offset, newValue);
324 unsafe.putOrderedInt(obj, offset, newValue);
329 return unsafe.getIntVolatile(obj, offset);
H A DAtomicReferenceFieldUpdater.java187 private final long offset; field in class:AtomicReferenceFieldUpdater.AtomicReferenceFieldUpdaterImpl
235 offset = unsafe.objectFieldOffset(field);
258 return unsafe.compareAndSwapObject(obj, offset, expect, update);
267 return unsafe.compareAndSwapObject(obj, offset, expect, update);
275 unsafe.putObjectVolatile(obj, offset, newValue);
283 unsafe.putOrderedObject(obj, offset, newValue);
289 return (V)unsafe.getObjectVolatile(obj, offset);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DREUtil.java142 int offset = 0;
143 while (offset < len) {
144 int ch = regex.charAt(offset++);
150 while (offset < len) {
151 ch = regex.charAt(offset++);
159 if (ch == '\\' && offset < len) {
160 if ((next = regex.charAt(offset)) == '#'
164 offset ++;
168 offset ++;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DXmlReader.java566 public int read(char buf [], int offset, int len) throws IOException { argument
574 buf[offset + i++] = nextChar;
610 buf[offset + i++] = (char) c;
703 buf[offset + i++] = (char) c;
705 buf[offset + i++] = nextChar;
728 public int read(char buf [], int offset, int len) throws IOException { argument
748 buf[offset + i] = (char) c;
761 public int read(char buf [], int offset, int len) throws IOException { argument
777 buf[offset + i] = (char) (0x0ff & buffer[start++]);
/openjdk7/jdk/src/solaris/bin/
H A Djava_md_common.c217 int offset; local
227 offset = 0;
230 offset = 3;
232 offset = 4;
234 offset = 5;
235 if (offset > 0) {
236 if ((JLI_AcceptableRelease(dp->d_name + offset,
239 dp->d_name + offset, best + best_offset) > 0)) {
243 best_offset = offset;
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp1066 int16_t offset = (int16_t)Bytes::get_Java_u2(pc+4); local
1068 SET_LOCALS_INT(LOCALS_INT(reg) + offset, reg);
1436 /* Goto pc at specified offset in switch table. */
2450 int16_t offset = (int16_t)Bytes::get_Java_u2(pc + 1); local
2452 UPDATE_PC(offset);
2453 DO_BACKEDGE_CHECKS(offset, branch_pc);
2466 int32_t offset = Bytes::get_Java_u4(pc + 1); local
2468 UPDATE_PC(offset);
2469 DO_BACKEDGE_CHECKS(offset, branch_pc);
2852 address BytecodeInterpreter::stack_slot(intptr_t *tos, int offset) { argument
2856 stack_int(intptr_t *tos, int offset) argument
2860 stack_float(intptr_t *tos, int offset) argument
2864 stack_object(intptr_t *tos, int offset) argument
2868 stack_double(intptr_t *tos, int offset) argument
2872 stack_long(intptr_t *tos, int offset) argument
2877 set_stack_slot(intptr_t *tos, address value, int offset) argument
2882 set_stack_int(intptr_t *tos, int value, int offset) argument
2887 set_stack_float(intptr_t *tos, jfloat value, int offset) argument
2892 set_stack_object(intptr_t *tos, oop value, int offset) argument
2898 set_stack_double(intptr_t *tos, jdouble value, int offset) argument
2903 set_stack_double_from_addr(intptr_t *tos, address addr, int offset) argument
2909 set_stack_long(intptr_t *tos, jlong value, int offset) argument
2915 set_stack_long_from_addr(intptr_t *tos, address addr, int offset) argument
2924 locals_slot(intptr_t* locals, int offset) argument
2927 locals_int(intptr_t* locals, int offset) argument
2930 locals_float(intptr_t* locals, int offset) argument
2933 locals_object(intptr_t* locals, int offset) argument
2936 locals_double(intptr_t* locals, int offset) argument
2939 locals_long(intptr_t* locals, int offset) argument
2944 locals_long_at(intptr_t* locals, int offset) argument
2947 locals_double_at(intptr_t* locals, int offset) argument
2952 set_locals_slot(intptr_t *locals, address value, int offset) argument
2956 set_locals_int(intptr_t *locals, jint value, int offset) argument
2960 set_locals_float(intptr_t *locals, jfloat value, int offset) argument
2964 set_locals_object(intptr_t *locals, oop value, int offset) argument
2968 set_locals_double(intptr_t *locals, jdouble value, int offset) argument
2972 set_locals_long(intptr_t *locals, jlong value, int offset) argument
2976 set_locals_double_from_addr(intptr_t *locals, address addr, int offset) argument
2980 set_locals_long_from_addr(intptr_t *locals, address addr, int offset) argument
[all...]
H A Drewriter.hpp90 void rewrite_member_reference(address bcp, int offset, bool reverse = false);
92 void rewrite_invokedynamic(address bcp, int offset, bool reverse = false);
93 void maybe_rewrite_ldc(address bcp, int offset, bool is_wide, bool reverse = false);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/
H A DDSO.java107 long offset = dso? pcAsAddr.minus(addr) : getAddressValue(pcAsAddr);
108 ELFSymbol sym = getFile().getHeader().getELFSymbol(offset);
109 return (sym != null)? createClosestSymbol(sym.getName(), offset - sym.getValue()) : null;
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeCellEditor.java91 protected transient int offset; field in class:DefaultTreeCellEditor
465 if (bounds != null && x <= (bounds.x + offset) &&
466 offset < (bounds.width - 5)) {
470 ( x >= (bounds.x+bounds.width-offset+5) ||
472 offset < (bounds.width - 5) ) {
490 offset = renderer.getIconTextGap() +
493 offset = renderer.getIconTextGap();
497 offset = 0;
716 * <code>offset</code> in the x direction and 0 for y.
724 offset,
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DobjectStartArray.hpp84 // Mapping that includes the derived offset.
126 size_t offset = pointer_delta(p, block_base, sizeof(HeapWord*)); local
127 assert(offset < 128, "Sanity");
129 //assert(offset > *block, "Found backwards allocation");
130 *block = (jbyte)offset;
136 // a given block. The blocks contain the offset of the last
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dframe_sparc.hpp118 // offset of each block, in order of increasing address:
136 // stores the FP for a frame at a fixed offset from the frame's SP,
208 int offset = callee_register_argument_save_area_sp_offset + param_ix; local
210 return fp_addr_at(offset);
212 return sp_addr_at(offset);

Completed in 304 milliseconds

<<11121314151617181920>>