Searched refs:seq (Results 1 - 25 of 102) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/services/
H A DmemPtr.cpp34 jint seq = Atomic::add(1, &_seq_number); local
35 if (seq < 0) {
38 assert(seq > 0, "counter overflow");
39 NOT_PRODUCT(_max_seq_number = (seq > _max_seq_number) ? seq : _max_seq_number;)
40 return seq;
H A DmemRecorder.cpp110 assert(p1->seq() != p2->seq(), "dup seq");
111 return p1->seq() - p2->seq();
120 bool MemRecorder::record(address p, MEMFLAGS flags, size_t size, jint seq, address pc) { argument
121 assert(seq > 0, "No sequence number");
138 SeqMemPointerRecordEx ap(p, flags, size, seq, pc);
139 debug_only(check_dup_seq(ap.seq());)
142 SeqMemPointerRecord ap(p, flags, size, seq);
[all...]
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DDataOutputStream.java157 * @param seq The array to be written.
158 * @param offset The index into seq of the first element to write to the
162 void write_any_array (org.omg.CORBA.Any[] seq, int offset, int length); argument
167 * @param seq The array to be written.
168 * @param offset The index into seq of the first element to write to the
172 void write_boolean_array (boolean[] seq, int offset, int length); argument
177 * @param seq The array to be written.
178 * @param offset The index into seq of the first element to write to the
182 void write_char_array (char[] seq, int offset, int length); argument
187 * @param seq Th
192 write_wchar_array(char[] seq, int offset, int length) argument
202 write_octet_array(byte[] seq, int offset, int length) argument
212 write_short_array(short[] seq, int offset, int length) argument
222 write_ushort_array(short[] seq, int offset, int length) argument
232 write_long_array(int[] seq, int offset, int length) argument
242 write_ulong_array(int[] seq, int offset, int length) argument
252 write_ulonglong_array(long[] seq, int offset, int length) argument
262 write_longlong_array(long[] seq, int offset, int length) argument
272 write_float_array(float[] seq, int offset, int length) argument
282 write_double_array(double[] seq, int offset, int length) argument
[all...]
H A DDataInputStream.java191 * @param seq The out parameter holder for the array to be read.
192 * @param offset The index into seq of the first element to read from the
199 void read_any_array (org.omg.CORBA.AnySeqHolder seq, int offset, int length); argument
203 * @param seq The out parameter holder for the array to be read.
204 * @param offset The index into seq of the first element to read from the
211 void read_boolean_array (org.omg.CORBA.BooleanSeqHolder seq, int offset, int length); argument
215 * @param seq The out parameter holder for the array to be read.
216 * @param offset The index into seq of the first element to read from the
223 void read_char_array (org.omg.CORBA.CharSeqHolder seq, int offset, int length); argument
227 * @param seq Th
235 read_wchar_array(org.omg.CORBA.WCharSeqHolder seq, int offset, int length) argument
247 read_octet_array(org.omg.CORBA.OctetSeqHolder seq, int offset, int length) argument
259 read_short_array(org.omg.CORBA.ShortSeqHolder seq, int offset, int length) argument
271 read_ushort_array(org.omg.CORBA.UShortSeqHolder seq, int offset, int length) argument
283 read_long_array(org.omg.CORBA.LongSeqHolder seq, int offset, int length) argument
295 read_ulong_array(org.omg.CORBA.ULongSeqHolder seq, int offset, int length) argument
307 read_ulonglong_array(org.omg.CORBA.ULongLongSeqHolder seq, int offset, int length) argument
319 read_longlong_array(org.omg.CORBA.LongLongSeqHolder seq, int offset, int length) argument
331 read_float_array(org.omg.CORBA.FloatSeqHolder seq, int offset, int length) argument
343 read_double_array(org.omg.CORBA.DoubleSeqHolder seq, int offset, int length) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DEncryptedPrivateKeyInfo.java62 DerValue[] seq = new DerValue[2];
64 seq[0] = val.data.getDerValue();
65 seq[1] = val.data.getDerValue();
71 this.algid = AlgorithmId.parse(seq[0]);
72 if (seq[0].data.available() != 0) {
76 this.encryptedData = seq[1].getOctetString();
77 if (seq[1].data.available() != 0)
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftMidiAudioFileReader.java58 public AudioFileFormat getAudioFileFormat(Sequence seq) argument
61 long totallen = seq.getMicrosecondLength() / 1000000;
66 public AudioInputStream getAudioInputStream(Sequence seq) argument
77 float divtype = seq.getDivisionType();
78 Track[] tracks = seq.getTracks();
81 int seqres = seq.getResolution();
131 Sequence seq;
133 seq = MidiSystem.getSequence(inputstream);
141 return getAudioInputStream(seq);
146 Sequence seq;
[all...]
H A DMidiUtils.java136 public static long tick2microsecond(Sequence seq, long tick, TempoCache cache) { argument
137 if (seq.getDivisionType() != Sequence.PPQ ) {
138 double seconds = ((double)tick / (double)(seq.getDivisionType() * seq.getResolution()));
143 cache = new TempoCache(seq);
146 int resolution = seq.getResolution();
187 public static long microsecond2tick(Sequence seq, long micros, TempoCache cache) { argument
188 if (seq.getDivisionType() != Sequence.PPQ ) {
190 * ((double) seq.getDivisionType())
191 * ((double) seq
291 TempoCache(Sequence seq) argument
297 refresh(Sequence seq) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DEncryptedPrivateKeyInfo.java71 DerValue[] seq = new DerValue[2];
73 seq[0] = val.data.getDerValue();
74 seq[1] = val.data.getDerValue();
80 this.algid = AlgorithmId.parse(seq[0]);
81 if (seq[0].data.available() != 0) {
85 this.encryptedData = seq[1].getOctetString();
86 if (seq[1].data.available() != 0)
H A DPKCS10.java123 DerValue[] seq;
135 seq = in.getSequence(3);
137 if (seq.length != 3)
140 data = seq[0].toByteArray(); // reusing this variable
141 id = AlgorithmId.parse(seq[1]);
142 sigData = seq[2].getBitString();
150 serial = seq[0].data.getBigInteger();
154 subject = new X500Name(seq[0].data);
155 subjectPublicKeyInfo = X509Key.parse(seq[0].data.getDerValue());
158 if (seq[
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/toJavaPortable/
H A DSequenceGen.java105 tcoffsets.bumpCurrentOffset (4); // add on the seq max size
148 SequenceEntry seq = (SequenceEntry)entry;
151 if (seq.maxSize () != null)
153 stream.println (indent + "if (" + length + " > (" + Util.parseExpression (seq.maxSize ()) + "))");
159 seqOfName = Util.sansArrayInfo ((String)seq.dynamicVariable (Compile.typedefInfo));
163 seqOfName = seq.name ();
178 if (seq.type () instanceof PrimitiveEntry)
180 //if (seq.type ().name ().equals ("any") || seq.type ().name ().equals ("TypeCode"))
181 if (seq
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJPasswordField.java575 AccessibleTextSequence seq = super.getTextSequenceAt(part, index);
576 if (seq == null) {
579 return new AccessibleTextSequence(seq.startIndex, seq.endIndex,
580 getEchoString(seq.text));
617 AccessibleTextSequence seq = super.getTextSequenceAfter(part, index);
618 if (seq == null) {
621 return new AccessibleTextSequence(seq.startIndex, seq.endIndex,
622 getEchoString(seq
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DPlotter.java171 Sequence seq = getSequence(key);
172 if (seq == null) {
173 seq = new Sequence(key);
175 seq.name = name;
176 seq.color = (color != null) ? color : defaultColor;
177 seq.isPlotted = isPlotted;
179 seqs.add(seq);
183 Sequence seq = getSequence(key);
184 if (seq != null) {
185 seq
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/encoding/
H A DCDRInputStream.java313 public final void read_any_array (org.omg.CORBA.AnySeqHolder seq, int offset, int length) { argument
314 impl.read_any_array(seq, offset, length);
317 public final void read_boolean_array (org.omg.CORBA.BooleanSeqHolder seq, int offset, int length) { argument
318 impl.read_boolean_array(seq, offset, length);
321 public final void read_char_array (org.omg.CORBA.CharSeqHolder seq, int offset, int length) { argument
322 impl.read_char_array(seq, offset, length);
325 public final void read_wchar_array (org.omg.CORBA.WCharSeqHolder seq, int offset, int length) { argument
326 impl.read_wchar_array(seq, offset, length);
329 public final void read_octet_array (org.omg.CORBA.OctetSeqHolder seq, int offset, int length) { argument
330 impl.read_octet_array(seq, offse
333 read_short_array(org.omg.CORBA.ShortSeqHolder seq, int offset, int length) argument
337 read_ushort_array(org.omg.CORBA.UShortSeqHolder seq, int offset, int length) argument
341 read_long_array(org.omg.CORBA.LongSeqHolder seq, int offset, int length) argument
345 read_ulong_array(org.omg.CORBA.ULongSeqHolder seq, int offset, int length) argument
349 read_ulonglong_array(org.omg.CORBA.ULongLongSeqHolder seq, int offset, int length) argument
353 read_longlong_array(org.omg.CORBA.LongLongSeqHolder seq, int offset, int length) argument
357 read_float_array(org.omg.CORBA.FloatSeqHolder seq, int offset, int length) argument
361 read_double_array(org.omg.CORBA.DoubleSeqHolder seq, int offset, int length) argument
[all...]
H A DCDRInputStreamBase.java117 public abstract void read_any_array (org.omg.CORBA.AnySeqHolder seq, int offset, int length); argument
118 public abstract void read_boolean_array (org.omg.CORBA.BooleanSeqHolder seq, int offset, int length); argument
119 public abstract void read_char_array (org.omg.CORBA.CharSeqHolder seq, int offset, int length); argument
120 public abstract void read_wchar_array (org.omg.CORBA.WCharSeqHolder seq, int offset, int length); argument
121 public abstract void read_octet_array (org.omg.CORBA.OctetSeqHolder seq, int offset, int length); argument
122 public abstract void read_short_array (org.omg.CORBA.ShortSeqHolder seq, int offset, int length); argument
123 public abstract void read_ushort_array (org.omg.CORBA.UShortSeqHolder seq, int offset, int length); argument
124 public abstract void read_long_array (org.omg.CORBA.LongSeqHolder seq, int offset, int length); argument
125 public abstract void read_ulong_array (org.omg.CORBA.ULongSeqHolder seq, int offset, int length); argument
126 public abstract void read_ulonglong_array (org.omg.CORBA.ULongLongSeqHolder seq, in argument
127 read_longlong_array(org.omg.CORBA.LongLongSeqHolder seq, int offset, int length) argument
128 read_float_array(org.omg.CORBA.FloatSeqHolder seq, int offset, int length) argument
129 read_double_array(org.omg.CORBA.DoubleSeqHolder seq, int offset, int length) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCertificateValidity.java81 DerValue[] seq = derIn.getSequence(2);
82 if (seq.length != 2)
85 if (seq[0].tag == DerValue.tag_UtcTime) {
87 } else if (seq[0].tag == DerValue.tag_GeneralizedTime) {
93 if (seq[1].tag == DerValue.tag_UtcTime) {
95 } else if (seq[1].tag == DerValue.tag_GeneralizedTime) {
167 DerOutputStream seq = new DerOutputStream();
168 seq.write(DerValue.tag_Sequence, pair);
170 out.write(seq.toByteArray());
H A DCertificatePolicySet.java62 DerValue[] seq = in.getSequence(5);
64 for (int i = 0; i < seq.length; i++) {
65 CertificatePolicyId id = new CertificatePolicyId(seq[i]);
H A DAuthorityInfoAccessExtension.java126 DerValue seq = val.data.getDerValue();
127 AccessDescription accessDescription = new AccessDescription(seq);
226 DerOutputStream seq = new DerOutputStream();
227 seq.write(DerValue.tag_Sequence, ads);
228 this.extensionValue = seq.toByteArray();
H A DGeneralSubtree.java193 DerOutputStream seq = new DerOutputStream();
195 name.encode(seq);
200 seq.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT,
206 seq.writeImplicit(DerValue.createTag(DerValue.TAG_CONTEXT,
209 out.write(DerValue.tag_Sequence, seq);
H A DSubjectInfoAccessExtension.java130 DerValue seq = val.data.getDerValue();
131 AccessDescription accessDescription = new AccessDescription(seq);
230 DerOutputStream seq = new DerOutputStream();
231 seq.write(DerValue.tag_Sequence, ads);
232 this.extensionValue = seq.toByteArray();
H A DPrivateKeyUsageExtension.java88 DerOutputStream seq = new DerOutputStream();
103 seq.write(DerValue.tag_Sequence, tagged);
104 this.extensionValue = seq.toByteArray();
141 DerValue[] seq = str.getSequence(2);
146 for (int i = 0; i < seq.length; i++) {
147 DerValue opt = seq[i];
/openjdk7/jdk/test/java/awt/EventDispatchThread/PreserveDispathThread/
H A DPreserveDispatchThread.java79 EventQueue seq = Toolkit.getDefaultToolkit().getSystemEventQueue();
81 seq.push(teq);
99 EventQueue seq = Toolkit.getDefaultToolkit().getSystemEventQueue();
101 seq.push(teq);
144 EventQueue seq = Toolkit.getDefaultToolkit().getSystemEventQueue();
146 seq.push(teq);
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java3207 private static final int countChars(CharSequence seq, int index, argument
3210 if (lengthInCodePoints == 1 && !Character.isHighSurrogate(seq.charAt(index))) {
3211 assert (index >= 0 && index < seq.length());
3214 int length = seq.length();
3219 if (Character.isHighSurrogate(seq.charAt(x++))) {
3220 if (x < length && Character.isLowSurrogate(seq.charAt(x))) {
3234 if (Character.isLowSurrogate(seq.charAt(--x))) {
3235 if (x > 0 && Character.isHighSurrogate(seq.charAt(x-1))) {
3243 private static final int countCodePoints(CharSequence seq) { argument
3244 int length = seq
3353 match(Matcher matcher, int i, CharSequence seq) argument
3377 match(Matcher matcher, int i, CharSequence seq) argument
3401 match(Matcher matcher, int i, CharSequence seq) argument
3433 match(Matcher matcher, int i, CharSequence seq) argument
3469 match(Matcher matcher, int i, CharSequence seq) argument
3488 match(Matcher matcher, int i, CharSequence seq) argument
3504 match(Matcher matcher, int i, CharSequence seq) argument
3535 match(Matcher matcher, int i, CharSequence seq) argument
3562 match(Matcher matcher, int i, CharSequence seq) argument
3587 match(Matcher matcher, int i, CharSequence seq) argument
3648 match(Matcher matcher, int i, CharSequence seq) argument
3691 match(Matcher matcher, int i, CharSequence seq) argument
3713 match(Matcher matcher, int i, CharSequence seq) argument
3859 match(Matcher matcher, int i, CharSequence seq) argument
3882 match(Matcher matcher, int i, CharSequence seq) argument
3907 match(Matcher matcher, int i, CharSequence seq) argument
3932 match(Matcher matcher, int i, CharSequence seq) argument
3964 match(Matcher matcher, int i, CharSequence seq) argument
4076 match(Matcher matcher, int i, CharSequence seq) argument
4122 match(Matcher matcher, int i, CharSequence seq) argument
4141 match0(Matcher matcher, int i, int j, CharSequence seq) argument
4182 match1(Matcher matcher, int i, int j, CharSequence seq) argument
4201 match2(Matcher matcher, int i, int j, CharSequence seq) argument
4273 match(Matcher matcher, int i, CharSequence seq) argument
4321 match0(Matcher matcher, int i, int j, CharSequence seq) argument
4385 match1(Matcher matcher, int i, int j, CharSequence seq) argument
4404 match2(Matcher matcher, int i, int j, CharSequence seq) argument
4465 match(Matcher matcher, int i, CharSequence seq) argument
4497 match(Matcher matcher, int i, CharSequence seq) argument
4553 match(Matcher matcher, int i, CharSequence seq) argument
4560 matchRef(Matcher matcher, int i, CharSequence seq) argument
4579 match(Matcher matcher, int i, CharSequence seq) argument
4605 match(Matcher matcher, int i, CharSequence seq) argument
4638 match(Matcher matcher, int i, CharSequence seq) argument
4661 match(Matcher matcher, int i, CharSequence seq) argument
4694 matchInit(Matcher matcher, int i, CharSequence seq) argument
4728 match(Matcher matcher, int i, CharSequence seq) argument
4756 matchInit(Matcher matcher, int i, CharSequence seq) argument
4788 match(Matcher matcher, int i, CharSequence seq) argument
4826 match(Matcher matcher, int i, CharSequence seq) argument
4884 match(Matcher matcher, int i, CharSequence seq) argument
4916 match(Matcher matcher, int i, CharSequence seq) argument
4952 match(Matcher matcher, int i, CharSequence seq) argument
4977 match(Matcher matcher, int i, CharSequence seq) argument
5023 match(Matcher matcher, int i, CharSequence seq) argument
5052 match(Matcher matcher, int i, CharSequence seq) argument
5090 match(Matcher matcher, int i, CharSequence seq) argument
5119 match(Matcher matcher, int i, CharSequence seq) argument
5198 check(Matcher matcher, int i, CharSequence seq) argument
5227 match(Matcher matcher, int i, CharSequence seq) argument
5237 hasBaseCharacter(Matcher matcher, int i, CharSequence seq) argument
5350 match(Matcher matcher, int i, CharSequence seq) argument
5404 match(Matcher matcher, int i, CharSequence seq) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/copyobject/
H A DJavaInputStream.sjava304 public final void read_any_array (org.omg.CORBA.AnySeqHolder seq, int offset, int length) {
305 impl.read_any_array(seq, offset, length);
308 public final void read_boolean_array (org.omg.CORBA.BooleanSeqHolder seq, int offset, int length) {
309 impl.read_boolean_array(seq, offset, length);
312 public final void read_char_array (org.omg.CORBA.CharSeqHolder seq, int offset, int length) {
313 impl.read_char_array(seq, offset, length);
316 public final void read_wchar_array (org.omg.CORBA.WCharSeqHolder seq, int offset, int length) {
317 impl.read_wchar_array(seq, offset, length);
320 public final void read_octet_array (org.omg.CORBA.OctetSeqHolder seq, int offset, int length) {
321 impl.read_octet_array(seq, offse
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsurvRateGroup.hpp80 TruncatedSeq* seq = _surv_rate_pred[age]; local
81 guarantee( seq != NULL, "invariant" );
82 return seq;
/openjdk7/jdk/src/windows/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java190 NTLMAuthSequence seq = (NTLMAuthSequence)conn.authObj();
191 if (seq == null) {
192 seq = new NTLMAuthSequence (username, password, ntdomain);
193 conn.authObj(seq);
195 String response = "NTLM " + seq.getAuthHeader (raw.length()>6?raw.substring(5):null);
197 if (seq.isComplete()) {

Completed in 218 milliseconds

12345