Searched defs:offset (Results 151 - 175 of 840) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DKhmerLayoutEngine.cpp69 le_int32 KhmerOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
76 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
100 le_int32 outCharCount = KhmerReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage);
H A DOpenTypeTables.h59 Offset offset; member in struct:TagAndOffsetRecord
H A DThaiLayoutEngine.cpp84 le_int32 ThaiLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/, LEGlyphStorage &glyphStorage, LEErrorCode &success) argument
90 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
115 glyphCount = ThaiShaping::compose(chars, offset, count, fGlyphSet, fErrorChar, outChars, glyphStorage);
125 void ThaiLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/, argument
132 if (chars == NULL || offset < 0 || count < 0) {
H A DTibetanLayoutEngine.cpp75 le_int32 TibetanOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, argument
82 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
106 le_int32 outCharCount = TibetanReordering::reorder(&chars[offset], count, fScriptCode, outChars, glyphStorage);
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DMicToken_v2.java58 public void verify(byte[] data, int offset, int len) throws GSSException { argument
59 if (!verifySign(data, offset, len))
108 public int encode(byte[] outToken, int offset) throws IOException { argument
110 System.arraycopy(token, 0, outToken, offset, token.length);
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/
H A DP11ECDHKeyAgreement.java153 offset) throws IllegalStateException, ShortBufferException {
154 if (offset + secretLen > sharedSecret.length) {
156 + " bytes, only " + (sharedSecret.length - offset) + " available");
159 System.arraycopy(secret, 0, sharedSecret, offset, secret.length);
152 engineGenerateSecret(byte[] sharedSecret, int offset) argument
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DCharacterIteratorWrapper.java118 public int getText(char[] fillIn, int offset){ argument
121 if(offset < 0 || offset + length > fillIn.length){
126 fillIn[offset++] = ch;
H A DReplaceableUCharacterIterator.java170 public int getText(char[] fillIn, int offset){ argument
172 if(offset < 0 || offset + length > fillIn.length){
175 replaceable.getChars(0,length,fillIn,offset);
/openjdk7/jdk/test/javax/swing/text/WrappedPlainView/6857057/
H A DStubBranchElement.java68 public int getElementIndex(int offset) { argument
69 return offset / 3;
H A DStubLeafElement.java66 public int getElementIndex(int offset) { argument
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DGlyphListPipe.java83 char data[], int offset, int length,
90 sg2d, data, offset, length, ix, iy);
103 if (gl.setFromChars(info, data, offset, length, x, y)) {
108 TextLayout tl = new TextLayout(new String(data, offset, length),
82 drawChars(SunGraphics2D sg2d, char data[], int offset, int length, int ix, int iy) argument
/openjdk7/jdk/src/share/classes/sun/misc/
H A DHexDumpEncoder.java39 * Where xxxx is the offset into the buffer in 16 byte chunks, followed
48 private int offset; field in class:HexDumpEncoder
79 offset = 0;
84 hexDigit(pStream, (byte)((offset >>> 8) & 0xff));
85 hexDigit(pStream, (byte)(offset & 0xff));
117 offset += thisLineLength;
H A DUCEncoder.java110 protected void encodeAtom(OutputStream outStream, byte data[], int offset, int len) throws IOException argument
116 a = data[offset];
118 b = data[offset+1];
H A DUUEncoder.java136 protected void encodeAtom(OutputStream outStream, byte data[], int offset, int len) argument
141 a = data[offset];
143 b = data[offset+1];
146 c = data[offset+2];
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dsecoidt.h73 ECCurveName offset; member in struct:SECOidDataStr
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DBranchHandle.java114 protected int updatePosition(int offset, int max_offset) { argument
115 int x = bi.updatePosition(offset, max_offset);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dtd/models/
H A DSimpleContentModel.java182 * @param offset Offset into the array where the children starts.
191 public int validate(QName[] children, int offset, int length) { argument
205 if (children[offset].rawname != fFirstChild.rawname) {
220 if (children[offset].rawname != fFirstChild.rawname) {
243 if (children[offset + index].rawname != fFirstChild.rawname) {
264 if (children[offset + index].rawname != fFirstChild.rawname) {
279 if ((children[offset].rawname != fFirstChild.rawname) &&
280 (children[offset].rawname != fSecondChild.rawname)) {
295 if (children[offset].rawname != fFirstChild.rawname) {
298 if (children[offset
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DDefaultText.java108 * @param offset Start offset of substring to extract.
110 * @return The specified substring. If the sum of <code>offset</code> and
114 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is
121 public String substringData(int offset, argument
141 * Insert a string at the specified 16-bit unit offset.
142 * @param offset The character offset at which to insert.
145 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is
150 public void insertData(int offset, argument
171 deleteData(int offset, int count) argument
196 replaceData(int offset, int count, String arg) argument
221 splitText(int offset) argument
[all...]
H A DTextImpl.java106 * @param offset Start offset of substring to extract.
108 * @return The specified substring. If the sum of <code>offset</code> and
112 * INDEX_SIZE_ERR: Raised if the specified <code>offset</code> is
119 public String substringData(int offset, argument
123 if(count < 0 || offset < 0 || offset > fData.length())
125 if(offset+count >= fData.length())
126 return fData.substring(offset);
127 return fData.substring(offset, offse
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DSymbolTable.java135 * @param offset The offset into the buffer of the new symbol.
138 public String addSymbol(char[] buffer, int offset, int length) { argument
140 int hash = hash(buffer, offset, length);
145 if (buffer[offset + i] != entry.characters[i]) {
154 Entry entry = new Entry(buffer, offset, length, fBuckets[bucket]);
187 * @param offset The offset into the character buffer of the start
191 public int hash(char[] buffer, int offset, int length) { argument
195 code = code * 37 + buffer[offset
244 containsSymbol(char[] buffer, int offset, int length) argument
311 Entry(char[] ch, int offset, int length, Entry next) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/asm/sparc/
H A DMemoryInstructionDecoder.java38 SPARCRegisterIndirectAddress newRegisterIndirectAddress(SPARCRegister rs1, int offset) { argument
39 return new SPARCRegisterIndirectAddress(rs1, offset);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/cdbg/basic/
H A DBasicBitType.java35 private int offset; field in class:BasicBitType
48 this.offset = lsbOffset;
66 return offset;
H A DBasicField.java35 private long offset; field in class:BasicField
54 /** Nonstatic fields only: set offset of field */
55 public void setOffset(long offset) { argument
57 this.offset = offset;
60 /** Nonstatic fields only: get offset of field */
63 return offset;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/memory/
H A DCMSBitMap.java100 Address offsetToHeapWord(int offset) { argument
101 int temp = offset << shifter();
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DConstantPoolCacheEntry.java42 private long offset; field in class:ConstantPoolCacheEntry
67 offset = baseOffset + index * size;
89 return cp.getHandle().getCIntegerAt(indices.getOffset() + offset, indices.getSize(), indices.isUnsigned());
93 return cp.getHeap().newOop(cp.getHandle().getOopHandleAt(f1.getOffset() + offset));
97 return cp.getHandle().getJIntAt(f1.getOffset() + offset);
101 return cp.getHandle().getJIntAt(flags.getOffset() + offset);
109 visitor.doOop(new OopField(f1FieldName, f1.getOffset() + offset, true), true);
110 visitor.doInt(new IntField(f2FieldName, f2.getOffset() + offset, true), true);
111 visitor.doInt(new IntField(flagsFieldName, flags.getOffset() + offset, true), true);

Completed in 64 milliseconds

1234567891011>>