Searched defs:in (Results 451 - 475 of 640) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/javax/management/relation/
H A DRoleInfo.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
43 * A RoleInfo object summarises a role in a relation type.
53 // Two serial forms are supported in this class. The selected form depends
64 // Serializable fields in old serial form
76 // Serializable fields in new serial form
95 * @serialField minDegree int Minimum degree (i.e. minimum number of referenced MBeans in corresponding role)
96 * @serialField maxDegree int Maximum degree (i.e. maximum number of referenced MBeans in corresponding role)
97 * @serialField referencedMBeanClassName String Name of class of MBean(s) expected to be referenced in correspondin
530 readObject(ObjectInputStream in) argument
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DtemplateTable.cpp9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
180 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(), char filler) { argument
182 def(code, flags, in, out, (Template::generator)gen, 0);
186 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(int arg), int arg) { argument
198 assert(in == vtos || !is_wide, "wide instructions have vtos entry point only");
201 t->initialize(flags, in, out, gen, arg);
206 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(Operation op), Operation op) { argument
207 def(code, flags, in, out, (Template::generator)gen, (int)op);
211 void TemplateTable::def(Bytecodes::Code code, int flags, TosState in, TosStat argument
216 def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(TosState tos), TosState tos) argument
221 def(Bytecodes::Code code, int flags, TosState in, TosState out, void (*gen)(Condition cc), Condition cc) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dsplit_if.cpp9 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * version 2 for more details (a copy is included in the LICENSE file that
42 Node *in0 = n->in(0);
43 if( in0->in(0) == region ) x->set_req( 0, in0->in(i) );
45 Node *in = n->in(j); local
46 if( get_ctrl(in) == region )
47 x->set_req( j, in->in(
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DAdaptiveCoding.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
36 * See the section "Adaptive Encodings" in the Pack200 spec.
86 public void readArrayFrom(InputStream in, int[] a, int start, int end) throws IOException { argument
87 readArray(this, in, a, start, end);
89 private static void readArray(AdaptiveCoding run, InputStream in, int[] a, int start, int end) throws IOException { argument
93 run.headCoding.readArrayFrom(in, a, start, mid);
101 run.tailCoding.readArrayFrom(in, a, start, end);
169 // See the isCodableLength restriction in CodingChoose
[all...]
H A DClassReader.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
53 DataInputStream in; field in class:ClassReader
58 ClassReader(Class cls, InputStream in) throws IOException { argument
62 this.in = new DataInputStream(new FilterInputStream(in) {
93 long j = in.skip(n - skipped);
101 return in.readUnsignedShort();
105 return in
[all...]
H A DNativeUnpack.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
47 private BufferedInputStream in; field in class:NativeUnpack
51 // Starts processing at the indicated position in the buffer.
56 // Returns true if there's another, and fills in the parts.
65 // Setting state in the unpacker.
72 private long _byteCount; // bytes read in current segment
113 if (in == null) return 0; // nothing is readable
124 int nr = in
241 run(InputStream in, JarOutputStream jstream) argument
[all...]
H A DPackerImpl.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
83 * @param in a JarFile
87 public synchronized void pack(JarFile in, OutputStream out) throws IOException { argument
97 Utils.copyJarFile(in, out);
99 (new DoPack()).run(in, out);
104 in.close();
118 * @param in a JarInputStream
122 public synchronized void pack(JarInputStream in, OutputStrea argument
411 run(JarInputStream in, OutputStream out) argument
456 run(JarFile in, OutputStream out) argument
503 readClass(String fname, InputStream in) argument
541 readFile(String fname, InputStream in) argument
[all...]
H A DPopulationCoding.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
39 * See the section "Encodings of Uncorrelated Values" in the Pack200 spec.
259 // (remember that fVlen is an inclusive limit in fValues)
272 public void readArrayFrom(InputStream in, int[] a, int start, int end) throws IOException { argument
274 setFavoredValues(readFavoredValuesFrom(in, end-start));
276 tokenCoding.readArrayFrom(in, a, start, end);
283 // Make a linked list, and decode in a second pass.
298 unfavoredCoding.readArrayFrom(in, uValue
306 readFavoredValuesFrom(InputStream in, int maxForDebug) argument
[all...]
H A DUtils.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
94 * Debug Attributes, if they are present, in the pack stream.
118 * the ordering of class files of the original jar in the output archive.
237 static void copyJarFile(JarInputStream in, JarOutputStream out) throws IOException { argument
238 if (in.getManifest() != null) {
241 in.getManifest().write(out);
245 for (JarEntry je; (je = in.getNextJarEntry()) != null; ) {
247 for (int nr; 0 < (nr = in
254 copyJarFile(JarFile in, JarOutputStream out) argument
267 copyJarFile(JarInputStream in, OutputStream out) argument
275 copyJarFile(JarFile in, OutputStream out) argument
310 readMagic(BufferedInputStream in) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/protocol/iiop/
H A DProxyInputStream.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
41 public ProxyInputStream(org.omg.CORBA.portable.InputStream in) { argument
42 this.in = in;
46 return in.read_boolean();
50 return in.read_char();
54 return in.read_wchar();
58 return in
240 protected final org.omg.CORBA.portable.InputStream in; field in class:ProxyInputStream
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DObj.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
54 * in LDAP.
113 * Encode an object in LDAP attributes.
124 * value: serialized form of Object (in binary form).
197 * Each value in javaCodebase contains a list of space-separated
233 // Get codebase, which is used in all 3 cases.
286 * May provide property for this in future.
351 * A RMI object is stored in th
612 LoaderInputStream(InputStream in, ClassLoader cl) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftAbstractResampler.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
283 // If we are in backward playing part of pingpong
383 public abstract void interpolate(float[] in, float[] in_offset, argument
H A DSoftChorus.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
67 public void processMix(float[] in, float[] out, float[] rout) { argument
73 int len = in.length;
87 delaybuffer[rovepos] = in[i] + o * feedback;
101 delaybuffer[rovepos] = in[i] + o * feedback;
109 public void processReplace(float[] in, float[] out, float[] rout) { argument
112 processMix(in, out, rout);
159 public void processMix(float[] in, floa argument
166 processReplace(float[] in, float[] out, float[] rout) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/util/
H A DAbstractSaslImpl.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
42 * mechanisms to process properties passed in the props argument
43 * and strings with the same format (e.g., used in digest-md5).
179 protected static final byte combineMasks(byte[] in) { argument
181 for (int i = 0; i < in.length; i++) {
182 answer |= in[i];
187 protected static final byte findPreferredMask(byte pref, byte[] in) { argument
188 for (int i = 0; i < in
[all...]
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DSystemFlavorMap.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
57 * applications, and between Java applications in separate VMs.
88 * The list of valid, decoded text flavor representation classes, in order
96 * The list of valid, encoded text flavor representation classes, in order
111 * DataFlavor's MIME type in case if the DataFlavor is not found in
286 private void parseAndStoreReader(BufferedReader in) throws IOException { argument
289 String line = in
[all...]
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DUtils.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
68 public Parser (InputStream in, Pattern p, int gbs, int gcp, int gcp2) argument
71 this.reader = new BufferedReader(new InputStreamReader(in));
79 public Parser (InputStream in, Pattern p) throws IOException { argument
80 this(in, p, gBS, gCP, gCP2);
83 public Parser (InputStream in) throws IOException { argument
84 this(in, basic, gBS, gCP, gCP2);
/openjdk7/jdk/make/tools/src/build/tools/dtdbuilder/
H A DDTDParser.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
42 * rules specified in "The SGML Handbook" by Charles F. Goldfarb.
53 DTDInputStream in; field in class:DTDParser
71 System.err.println("line " + in.ln + ", dtd " + dtd + ": " + str);
102 ch = in.read();
119 * Get the string which was accumulated in the buffer.
130 * Get the chars which were accumulated in the buffer.
149 ch = in
900 parse(InputStream in, DTDBuilder dtd) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/event/
H A DNSEvent.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
241 public static native boolean nsToJavaKeyInfo(int[] in, int[] out); argument
246 public static native void nsKeyModifiersToJavaKeyInfo(int[] in, int[] out); argument
/openjdk7/jdk/src/share/back/
H A DArrayReferenceImpl.c9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
32 length(PacketInputStream *in, PacketOutputStream *out) argument
37 jarray array = inStream_readArrayRef(env, in);
38 if (inStream_error(in)) {
229 getValues(PacketInputStream *in, PacketOutputStream *out) argument
237 array = inStream_readArrayRef(env, in);
238 if (inStream_error(in)) {
241 index = inStream_readInt(in);
342 readBooleanComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
356 readByteComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
370 readCharComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
384 readShortComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
398 readIntComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
412 readLongComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
426 readFloatComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
440 readDoubleComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
455 readObjectComponents(JNIEnv *env, PacketInputStream *in, jarray array, int index, int length) argument
476 setValues(PacketInputStream *in, PacketOutputStream *out) argument
[all...]
H A DReferenceTypeImpl.c9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
33 signature(PacketInputStream *in, PacketOutputStream *out) argument
39 clazz = inStream_readClassRef(getEnv(), in);
40 if (inStream_error(in)) {
57 signatureWithGeneric(PacketInputStream *in, PacketOutputStream *out) argument
65 clazz = inStream_readClassRef(getEnv(), in);
66 if (inStream_error(in)) {
87 getClassLoader(PacketInputStream *in, PacketOutputStrea argument
112 modifiers(PacketInputStream *in, PacketOutputStream *out) argument
182 methods1(PacketInputStream *in, PacketOutputStream *out, int outputGenerics) argument
216 methods(PacketInputStream *in, PacketOutputStream *out, int outputGenerics) argument
223 methodsWithGeneric(PacketInputStream *in, PacketOutputStream *out) argument
231 instances(PacketInputStream *in, PacketOutputStream *out) argument
284 getClassVersion(PacketInputStream *in, PacketOutputStream *out) argument
310 getConstantPool(PacketInputStream *in, PacketOutputStream *out) argument
391 fields1(PacketInputStream *in, PacketOutputStream *out, int outputGenerics) argument
425 fields(PacketInputStream *in, PacketOutputStream *out) argument
431 fieldsWithGeneric(PacketInputStream *in, PacketOutputStream *out) argument
438 getValues(PacketInputStream *in, PacketOutputStream *out) argument
445 sourceFile(PacketInputStream *in, PacketOutputStream *out) argument
469 sourceDebugExtension(PacketInputStream *in, PacketOutputStream *out) argument
492 nestedTypes(PacketInputStream *in, PacketOutputStream *out) argument
531 getClassStatus(PacketInputStream *in, PacketOutputStream *out) argument
547 interfaces(PacketInputStream *in, PacketOutputStream *out) argument
586 classObject(PacketInputStream *in, PacketOutputStream *out) argument
[all...]
/openjdk7/jdk/src/share/bin/
H A Dparse_manifest.c9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
46 * (the compressed and uncompressed sizes and the offset in
58 char *in; local
66 if ((in = malloc(entry->csize + 1)) == NULL)
68 if ((size_t)(read(fd, in, (unsigned int)entry->csize)) != entry->csize) {
69 free(in);
73 *(char *)((size_t)in + entry->csize) = '\0';
77 return (in);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DAESCrypt.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
166 // produce log and alog tables, needed for multiplying in the
324 // convenience method used in generating Transposition boxes
335 // check if the specified length (in bytes) is a valid keysize for AES
348 void encryptBlock(byte[] in, int inOffset, argument
352 int t0 = ((in[inOffset++] ) << 24 |
353 (in[inOffset++] & 0xFF) << 16 |
354 (in[inOffse
419 decryptBlock(byte[] in, int inOffset, byte[] out, int outOffset) argument
[all...]
H A DCipherCore.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
37 * This class represents the symmetric algorithms in its various modes
72 * index of the content size left in the buffer
77 * minimum number of bytes in the buffer required for
88 * of the blocksize (this is used in feedback mode, when the number of
254 * Returns the length in bytes that an output buffer would need to be in
257 * <code>inputLen</code> (in byte
840 finalNoPadding(byte[] in, int inOff, byte[] out, int outOff, int len) argument
[all...]
H A DDESedeWrapCipher.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
36 * in <a href=http://www.w3.org/TR/xmlenc-core/#sec-Alg-SymmetricKeyWrap>
115 * Returns the block size (in bytes), i.e. 8 bytes.
117 * @return the block size (in bytes), i.e. 8 bytes.
124 * Returns the length in bytes that an output buffer would need to be
125 * given the input length <code>inputLen</code> (in bytes).
131 * @param inputLen the input length (in bytes).
133 * @return the required output buffer size (in byte
308 engineUpdate(byte[] in, int inOffset, int inLen) argument
330 engineUpdate(byte[] in, int inOffset, int inLen, byte[] out, int outOffset) argument
351 engineDoFinal(byte[] in, int inOffset, int inLen) argument
552 getChecksum(byte[] in) argument
555 getChecksum(byte[] in, int offset, int len) argument
[all...]
H A DRSACipher.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
46 * is supported mostly for completeness and should only be used in rare cases.
187 " AlgorithmParameters implementation in SunJCE provider");
207 // but re-throw it just in case
264 } else { // must be RSAPrivateKey per check in toRSAKey
321 private void update(byte[] in, int inOfs, int inLen) { argument
322 if ((inLen == 0) || (in == null)) {
329 System.arraycopy(in, inOf
366 engineUpdate(byte[] in, int inOfs, int inLen) argument
372 engineUpdate(byte[] in, int inOfs, int inLen, byte[] out, int outOfs) argument
379 engineDoFinal(byte[] in, int inOfs, int inLen) argument
386 engineDoFinal(byte[] in, int inOfs, int inLen, byte[] out, int outOfs) argument
[all...]

Completed in 61 milliseconds

<<11121314151617181920>>