Searched defs:offset (Results 51 - 75 of 840) sorted by relevance

1234567891011>>

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/types/basic/
H A DBasicJCharField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJCharField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicJDoubleField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJDoubleField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicJFloatField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJFloatField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicJIntField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJIntField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicJLongField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJLongField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicJShortField.java37 boolean isStatic, long offset, Address staticFieldAddress) {
38 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
36 BasicJShortField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
H A DBasicOopField.java42 boolean isStatic, long offset, Address staticFieldAddress) {
43 super(db, containingType, name, type, isStatic, offset, staticFieldAddress);
41 BasicOopField(BasicTypeDataBase db, Type containingType, String name, Type type, boolean isStatic, long offset, Address staticFieldAddress) argument
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DEditableAtEndDocument.java39 public void insertString(int offset, String text, AttributeSet a) argument
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDocumentFilter.java71 * @param offset the offset from the beginning >= 0
77 public void remove(FilterBypass fb, int offset, int length) throws argument
79 fb.remove(offset, length);
89 * @param offset the offset into the document to insert the content >= 0.
98 public void insertString(FilterBypass fb, int offset, String string, argument
100 fb.insertString(offset, string, attr);
110 * @param offset Location in Document
118 public void replace(FilterBypass fb, int offset, in argument
150 remove(int offset, int length) argument
165 insertString(int offset, String string, AttributeSet attr) argument
182 replace(int offset, int length, String string, AttributeSet attrs) argument
[all...]
H A DElement.java67 * Fetches the offset from the beginning of the document
69 * children, this will be the offset of the first child.
72 * @return the starting offset >= 0 and < getEndOffset();
79 * Fetches the offset from the beginning of the document
81 * children, this will be the end offset of the last child.
90 * @return the ending offset > getStartOffset() and
98 * Gets the child element index closest to the given offset.
99 * The offset is specified relative to the beginning of the
104 * is less than the start offset. Returns
106 * greater than or equal to the end offset
111 getElementIndex(int offset) argument
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/
H A DDigesterOutputStream.java90 public void write(byte[] input, int offset, int len) { argument
92 bos.write(input, offset, len);
97 for (int i=offset; i<(offset+len); i++) {
102 md.update(input, offset, len);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DByteArrayImageSource.java41 public ByteArrayImageSource(byte[] data, int offset, int length) { argument
43 imageoffset = offset;
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DLookupTable.java35 * and it contains an offset which will be subtracted from the
53 int offset; field in class:LookupTable
57 * Constructs a new LookupTable from the number of components and an offset
59 * @param offset the offset to subtract from input values before indexing
63 * @throws IllegalArgumentException if <code>offset</code> is less than 0
66 protected LookupTable(int offset, int numComponents) { argument
67 if (offset < 0) {
76 this.offset = offset;
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DInputStreamReader.java175 * @param offset Offset at which to start storing characters
183 public int read(char cbuf[], int offset, int length) throws IOException { argument
184 return sd.read(cbuf, offset, length);
/openjdk7/jdk/src/share/classes/java/security/
H A DMessageDigestSpi.java84 * starting at the specified offset.
88 * @param offset the offset to start from in the array of bytes.
91 * <code>offset</code>.
93 protected abstract void engineUpdate(byte[] input, int offset, int len); argument
157 * @param offset offset to start from in the output buffer
173 protected int engineDigest(byte[] buf, int offset, int len) argument
179 if (buf.length - offset < digest.length)
182 System.arraycopy(digest, 0, buf, offset, diges
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/
H A DKeyAgreementSpi.java150 * <code>sharedSecret</code>, beginning at <code>offset</code> inclusive.
164 * @param offset the offset in <code>sharedSecret</code> where the
175 int offset)
174 engineGenerateSecret(byte[] sharedSecret, int offset) argument
H A DMacSpi.java81 * starting at <code>offset</code> inclusive.
84 * @param offset the offset in <code>input</code> where the input starts.
87 protected abstract void engineUpdate(byte[] input, int offset, int len); argument
/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DDESKeySpec.java136 * <code>key</code>, beginning at <code>offset</code> inclusive,
140 * <code>key[offset]</code> and <code>key[offset+7]</code> inclusive.
143 * of the buffer beginning at <code>offset</code> inclusive are copied
145 * @param offset the offset in <code>key</code>, where the DES key
151 * <code>offset</code> inclusive, is shorter than 8 bytes.
153 public DESKeySpec(byte[] key, int offset) throws InvalidKeyException { argument
154 if (key.length - offset < DES_KEY_LEN) {
158 System.arraycopy(key, offset, thi
186 isParityAdjusted(byte[] key, int offset) argument
219 isWeak(byte[] key, int offset) argument
[all...]
H A DGCMParameterSpec.java99 * @param offset the offset in {@code src} where the IV starts
103 * {@code src} is null, {@code len} or {@code offset} is negative,
104 * or the sum of {@code offset} and {@code len} is greater than the
107 public GCMParameterSpec(int tLen, byte[] src, int offset, int len) { argument
108 init(tLen, src, offset, len);
114 private void init(int tLen, byte[] src, int offset, int len) { argument
122 if ((src == null) ||(len < 0) || (offset < 0)
123 || ((len + offset) > src.length)) {
128 System.arraycopy(src, offset, i
[all...]
H A DRC2ParameterSpec.java81 * <code>offset</code> inclusive.
83 * <code>iv[offset]</code> and <code>iv[offset+7]</code> inclusive.
87 * of the buffer beginning at <code>offset</code> inclusive
89 * @param offset the offset in <code>iv</code> where the 8-byte IV
93 public RC2ParameterSpec(int effectiveKeyBits, byte[] iv, int offset) { argument
97 if (iv.length - offset < blockSize) {
101 System.arraycopy(iv, offset, this.iv, 0, blockSize);
H A DRC5ParameterSpec.java94 * <code>offset</code> inclusive.
96 * <code>offset</code> inclusive, must be twice the word size.
98 * <code>iv[offset]</code> and <code>iv[offset+2*(wordSize/8)-1]</code>
105 * </code> bytes of the buffer beginning at <code>offset</code>
107 * @param offset the offset in <code>iv</code> where the IV starts.
110 * <code>(iv.length - offset < 2 * (wordSize / 8))</code>
113 byte[] iv, int offset) {
119 if (iv.length - offset < blockSiz
112 RC5ParameterSpec(int version, int rounds, int wordSize, byte[] iv, int offset) argument
[all...]
H A DSecretKeySpec.java105 * <code>offset</code> inclusive.
108 * those between <code>key[offset]</code> and
109 * <code>key[offset+len-1]</code> inclusive.
122 * <code>offset</code> inclusive are copied to protect
124 * @param offset the offset in <code>key</code> where the key material
135 * i.e. <code>key.length-offset<len</code>.
137 * <code>offset</code> or <code>len</code> index bytes outside the
140 public SecretKeySpec(byte[] key, int offset, int len, String algorithm) { argument
147 if (key.length-offset < le
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/stream/
H A DIIOByteBuffer.java30 * an offset and length within that array. <code>IIOByteBuffer</code>
45 private int offset; field in class:IIOByteBuffer
51 * given byte array, offset, and length.
54 * @param offset an int offset within the array.
58 public IIOByteBuffer(byte[] data, int offset, int length) { argument
60 this.offset = offset;
93 * Returns the offset within the byte array returned by
96 * @return an int offset
114 setOffset(int offset) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/
H A DBinaryRefAddr.java91 * @param offset The starting index in src to get the bytes.
92 * 0 <= offset <= src.length.
94 * 0 <= count <= src.length-offset.
96 public BinaryRefAddr(String addrType, byte[] src, int offset, int count) { argument
99 System.arraycopy(src, offset, buf, 0, count);
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DExtendedRequest.java55 * byte[] berValue, int offset, int length)
57 * return new GetTimeResponse(id, berValue, offset, length);
63 * public GetTimeResponse(String id, byte[] berValue, int offset,
136 * @param offset The starting position in berValue of the bytes to use.
145 byte[] berValue, int offset, int length) throws NamingException;
144 createExtendedResponse(String id, byte[] berValue, int offset, int length) argument

Completed in 1647 milliseconds

1234567891011>>