Searched refs:offsets (Results 51 - 64 of 64) sorted by relevance

123

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFFileParser.java1101 int[] offsets = new int[getNumSourceFiles()];
1104 offsets[i] = offset + readInt();
1106 DebugVC50SrcModFileDescImpl[] res = new DebugVC50SrcModFileDescImpl[offsets.length];
1108 res[i] = new DebugVC50SrcModFileDescImpl(offsets[i], offset);
1169 int[] offsets = new int[getNumCodeSegments()];
1171 offsets[i] = baseOffset + readInt();
1176 res[i] = new DebugVC50SrcModLineNumberMapImpl(offsets[i]);
1231 private MemoizedObject offsets; field in class:COFFFileParser.COFFFileImpl.COFFHeaderImpl.DebugVC50Impl.DebugVC50SrcModLineNumberMapImpl
1238 offsets = new MemoizedObject() {
1264 return ((int[]) offsets
[all...]
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DQuartzSurfaceData.m593 // find the offsets in the device corrdinate system
604 CGPoint offsets = {kOffset, kOffset};
606 offsets = CGPointApplyAffineTransform(offsets, inverse);
607 qsdo->graphicsStateInfo.offsetX = offsets.x;
608 qsdo->graphicsStateInfo.offsetY = offsets.y;
/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLayout.java134 * The offsets contained in these <code>TextHitInfo</code> objects
139 * offsets to be relative to the <code>TextLayout</code>, not to any
543 * @param baselineOffsets the baseline offsets for this
857 * Returns the offsets array for the baselines used for this
866 * @return the offsets array containing the baselines used for this
872 float[] offsets = new float[baselineOffsets.length];
873 System.arraycopy(baselineOffsets, 0, offsets, 0, offsets.length);
874 return offsets;
945 * maxD = max(maxD, g.getDescent() + offsets[
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Dawt_parseImage.c118 /* Verifies whether the channel offsets are sane and correspond to the type of
122 * 0: Failure: channel offsets are invalid
163 // order to provide valid criteria for the data offsets
168 // PACKED_RASTER_TYPE: does not support channel offsets
253 rasterP->numBands, rasterP->sppsm.offsets);
339 // channel (data) offsets
343 // get channel (data) offsets
360 // verify whether channel offsets look sane
366 ; // PACKED_RASTER_TYPE does not use the channel offsets.
765 else if (rasterP->sppsm.offsets !
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DZipFileIndex.java930 Map<RelativeDirectory, Long> offsets = new HashMap<RelativeDirectory, Long>();
953 offsets.put(dirName, new Long(writtenSoFar));
965 long offsetOffset = offsets.get(de.dirName).longValue();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DGen.java1174 int[] offsets = null; // a table of offsets for a lookupswitch
1187 offsets = new int[labels.length];
1200 // offsets table.
1207 offsets[i] = pc - startpc;
1234 // Sort non-default offsets and copy into lookup table.
1238 offsets[i] = offsets[i+1];
1241 qsort2(labels, offsets, 0, nlabels - 1);
1245 code.put4(caseidx + 4, offsets[
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegion.hpp241 G1BlockOffsetArrayContigSpace* offsets() { return &_offsets; } function in class:HeapRegion
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DRenderQueue.cpp825 unsigned char *offsets = (b + numFactors * sizeof(jfloat)); local
827 scaleFactors, offsets);
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DImageTests.java834 float[] offsets = { 5.0f, -7.5f, 1.0f };
835 ictx.bufImgOp = new RescaleOp(scaleFactors, offsets, null);
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.c661 unsigned char *offsets = (b + numFactors * sizeof(jfloat)); local
663 scaleFactors, offsets);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLEditorKit.java1276 protected void layoutMinorAxis(int targetSpan, int axis, int[] offsets, int[] spans) { argument
1315 super.layoutMinorAxis(targetSpan, axis, offsets, spans);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_image_proto.h2476 const mlib_s32 *offsets,
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRAssembler_sparc.cpp174 offsets()->set_value(CodeOffsets::OSR_Entry, code_offset());
800 // for offsets larger than a simm13 we setup the offset in O7
913 // for offsets larger than a simm13 we setup the offset in O7
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRAssembler_x86.cpp274 offsets()->set_value(CodeOffsets::OSR_Entry, code_offset());

Completed in 233 milliseconds

123