Searched defs:data (Results 351 - 375 of 871) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/src/share/vm/libadt/
H A Dvectset.hpp49 uint size; // Size of data IN LONGWORDS (32bits)
50 uint32 *data; // The data, bit packed member in class:VectorSet
102 memset( data, 0, size*sizeof(uint32) );
111 uint32 *EXPOSE() const { return data; }
124 uint32 datum = data[word] & mask;// Get bit
125 data[word] |= mask; // Set bit
138 return data[word] & mask; // Get bit
148 data[word] |= mask; // Set bit
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataKlass.cpp55 assert(obj->is_methodData(), "must be method data oop");
61 assert(obj->is_methodData(), "must be method data oop");
82 assert (obj->is_methodData(), "object must be method data");
88 for (ProfileData* data = m->first_data();
89 m->is_valid(data);
90 data = m->next_data(data)) {
91 data->follow_contents();
98 assert (obj->is_methodData(), "object must be method data");
104 for (ProfileData* data
162 ProfileData* data; local
185 ProfileData* data; local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DMBeanInstantiator.java344 * @param data The byte array to be de-sererialized.
351 public ObjectInputStream deserialize(ClassLoader loader, byte[] data) argument
355 if (data == null) {
357 IllegalArgumentException(), "Null data passed in parameter");
359 if (data.length == 0) {
361 IllegalArgumentException(), "Empty data passed in parameter");
368 bIn = new ByteArrayInputStream(data);
373 "An IOException occurred trying to de-serialize the data");
389 * @param data The byte array to be de-sererialized.
405 byte[] data,
403 deserialize(String className, ObjectName loaderName, byte[] data, ClassLoader loader) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpMsg.java58 * or encrypted data (but you need to implemented your own
61 public byte[] data = null; field in class:SnmpMsg
64 * Number of useful bytes in the <CODE>data</CODE> field.
87 * @param data The unmarshalled SNMP message.
90 public static int getProtocolVersion(byte[] data) argument
95 bdec = new BerDecoder(data);
112 * @param data The flat message.
115 public abstract int getRequestId(byte[] data) throws SnmpStatusException; argument
143 * This method initializes the data field with an array of
145 * The resulting encoding is stored in the data fiel
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/agent/
H A DSnmpMibRequestImpl.java56 * @param userData User allocated contextual data. This object must
73 data = userData;
177 public final Object getUserData() {return data;}
232 private Object data; field in class:SnmpMibRequestImpl
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/internal/
H A DSnmpMsgProcessingModel.java73 * This method is called to encode a full scoped pdu that has not been encrypted. <CODE>contextName</CODE>, <CODE>contextEngineID</CODE> and data are known.
83 * @param data The encoded data.
84 * @param dataLength The encoded data length.
96 byte[] data,
100 * This method is called to encode a full scoped pdu that as been encrypted. <CODE>contextName</CODE>, <CODE>contextEngineID</CODE> and data are known.
121 * This method returns a decoded scoped pdu. This method decodes only the <CODE>contextEngineID</CODE>, <CODE>contextName</CODE> and data. It is needed by the <CODE>SnmpSecurityModel</CODE> after decryption.
128 * This method returns an encoded scoped pdu. This method encode only the <CODE>contextEngineID</CODE>, <CODE>contextName</CODE> and data. It is needed by the <CODE>SnmpSecurityModel</CODE> for decryption.
88 encode(int version, int msgID, int msgMaxSize, byte msgFlags, int msgSecurityModel, SnmpSecurityParameters params, byte[] contextEngineID, byte[] contextName, byte[] data, int dataLength, byte[] outputBytes) argument
H A DSnmpMsgProcessingSubSystem.java91 * This method is called to encode a full scoped pdu that as not been encrypted. <CODE>contextName</CODE>, <CODE>contextEngineID</CODE> and data are known. It will be routed to the dedicated model according to the version value.
101 * @param data The encoded data.
102 * @param dataLength The encoded data length.
114 byte[] data,
120 * This method is called to encode a full scoped pdu that as been encrypted. <CODE>contextName</CODE>, <CODE>contextEngineID</CODE> and data are not known. It will be routed to the dedicated model according to the version value.
142 * This method returns a decoded scoped pdu. This method decodes only the <CODE>contextEngineID</CODE>, <CODE>contextName</CODE> and data. It is needed by the <CODE>SnmpSecurityModel</CODE> after decryption. It will be routed to the dedicated model according to the version value.
152 * This method returns an encoded scoped pdu. This method encodes only the <CODE>contextEngineID</CODE>, <CODE>contextName</CODE> and data. It is needed by the <CODE>SnmpSecurityModel</CODE> for decryption. It will be routed to the dedicated model according to the version value.
106 encode(int version, int msgID, int msgMaxSize, byte msgFlags, int msgSecurityModel, SnmpSecurityParameters params, byte[] contextEngineID, byte[] contextName, byte[] data, int dataLength, byte[] outputBytes) argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DStandardMidiFileReader.java257 private void read(byte[] data) throws IOException { argument
258 System.arraycopy(trackData, pos, data, 0, data.length);
259 pos += data.length;
335 // each event has a tick delay and then the event data.
355 // two data bytes
364 // one data byte
/openjdk7/jdk/src/share/classes/com/sun/pept/presentation/
H A DMessageStruct.java103 * @param data ...
108 public void setData(Object[] data); argument
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DJavaLazyReadObject.java43 // file offset from which this object data starts
58 // return the length of the data for this object
119 protected final long objectIdAt(int index, byte[] data) { argument
122 return ((long)intAt(index, data)) & Snapshot.SMALL_ID_MASK;
124 return longAt(index, data);
H A DJavaObject.java51 * @param offset The offset of field data
212 * data length (int)
237 private JavaThing[] parseFields(byte[] data, boolean verbose) { argument
270 long id = objectIdAt(index, data);
277 byte value = byteAt(index, data);
283 byte value = byteAt(index, data);
289 short value = shortAt(index, data);
295 char value = charAt(index, data);
301 int value = intAt(index, data);
307 long value = longAt(index, data);
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DFontMetrics.java335 char data[] = {ch};
336 return charsWidth(data, 0, 1);
358 char data[] = new char[len];
359 str.getChars(0, len, data, 0);
360 return charsWidth(data, 0, len);
371 * @param data the array of characters to be measured
377 * @throws NullPointerException if <code>data</code> is null.
380 * the bounds of the <code>data</code> array.
386 public int charsWidth(char data[], int off, int len) { argument
387 return stringWidth(new String(data, of
412 bytesWidth(byte data[], int off, int len) argument
[all...]
H A DSplashScreen.java156 // check for available data
159 // no data available... well, let's try reading one byte
174 // now read the data
322 // Note that we steal the data array here, but just for reading
324 int[] data = SunWritableRaster.stealData((DataBufferInt)buf, 0);
327 _update(splashPtr, data, rect.x, rect.y, rect.width, rect.height, scanlineStride);
391 private native static void _update(long splashPtr, int[] data, int x, int y, int width, int height, int scanlineStride); argument
398 private native static boolean _setImageData(long SplashPtr, byte[] data); argument
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DGroup.java24 package com.sun.hotspot.igv.data;
26 import com.sun.hotspot.igv.data.ChangedEvent;
27 import com.sun.hotspot.igv.data.ChangedEventProvider;
28 import com.sun.hotspot.igv.data.Properties;
H A DInputBlock.java24 package com.sun.hotspot.igv.data;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DNode.java36 private N data; field in class:Node
90 protected Node(Graph<N, E> graph, N data) { argument
91 setData(data);
150 return data;
154 data = d;
159 return "Node: " + data;
/openjdk7/jdk/make/tools/reorder/tools/
H A Dremove_mcount.c70 static void trash_mcount(int count, Elf_Data *data, Elf_Data *stringData) argument
74 Elf32_Sym *sym = ((Elf32_Sym *)data->d_buf) + i;
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DJIS0213.java115 private static final void writeShort(OutputStream out, int data) argument
118 out.write((data >>> 8) & 0xFF);
119 out.write((data ) & 0xFF);
136 private static final void writeSIZE(OutputStream out, int data) argument
139 out.write((data >>> 24) & 0xFF);
140 out.write((data >>> 16) & 0xFF);
141 out.write((data >>> 8) & 0xFF);
142 out.write((data ) & 0xFF);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDropTargetContextPeer.java148 private void newData(long format, byte[] data) { argument
150 fNativeData = data;
166 // Schedule a native dnd data transfer:
H A DCTextPipe.java98 public void drawChars(final SunGraphics2D sg2d, final char data[], final int offset, final int length, final int x, final int y) { argument
102 surfaceData.drawUnicodes(this, sg2d, nativeStrikePtr, data, offset, length, x, y);
104 drawTextAsShape(sg2d, new String(data, offset, length), x, y);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DDQTMarkerSegment.java63 count -= newGuy.data.length+1;
108 * Writes the data for this segment to the stream in
137 if (luma.data[i] != luma.data[i-1]) {
150 if (luma.data[i] > luma.data[largestPos]) {
160 float scaleFactor = ((float)(luma.data[largestPos]))
182 int [] data; // 64 elements, in natural order field in class:DQTMarkerSegment.Qtable
219 data = base.getTable();
229 data
[all...]
H A DMarkerSegment.java42 * and make this abstract, avoiding unused data field.
49 byte [] data = null; // Raw segment data, used for unrecognized segments field in class:MarkerSegment
90 // get the user object and clone it to the data
94 data = (byte []) iioNode.getUserObject();
109 * Deep copy of data array.
116 if (this.data != null) {
117 newGuy.data = (byte[]) data.clone();
124 * the data usin
[all...]
/openjdk7/jaxp/src/org/xml/sax/
H A DHandlerBase.java253 * Receive notification of character data inside an element.
256 * method to take specific actions for each chunk of character data
257 * (such as adding the data to a node or buffer, or printing it to
280 * whitespace (such as adding data to a node or buffer, or printing
307 * @param data The processing instruction data, or null if
313 public void processingInstruction (String target, String data) argument
/openjdk7/jaxp/src/org/xml/sax/helpers/
H A DAttributesImpl.java85 data = null;
132 return data[index*5];
150 return data[index*5+1];
168 return data[index*5+2];
186 return data[index*5+3];
203 return data[index*5+4];
227 if (data[i].equals(uri) && data[i+1].equals(localName)) {
246 if (data[i+2].equals(qName)) {
268 if (data[
637 String data []; field in class:AttributesImpl
[all...]
H A DDefaultHandler.java331 * Receive notification of character data inside an element.
334 * method to take specific actions for each chunk of character data
335 * (such as adding the data to a node or buffer, or printing it to
358 * whitespace (such as adding data to a node or buffer, or printing
385 * @param data The processing instruction data, or null if
391 public void processingInstruction (String target, String data) argument

Completed in 90 milliseconds

<<11121314151617181920>>