Searched refs:sequence (Results 101 - 125 of 344) sorted by relevance

1234567891011>>

/external/libvorbis/include/vorbis/
H A Dcodec.h78 ogg_int64_t sequence; member in struct:vorbis_dsp_state
101 ogg_int64_t sequence; member in struct:vorbis_block
/external/libvorbis/lib/
H A Dsynthesis.c76 vb->sequence=op->packetno;
129 vb->sequence=op->packetno;
H A Danalysis.c61 op->packetno=vb->sequence; /* for sake of completeness */
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_graph.h178 int sequence; member in class:nv50_ir::Graph
183 return ++sequence;
/external/mesa3d/src/gallium/drivers/nvc0/
H A Dnvc0_query.c39 uint32_t sequence; member in struct:nvc0_query
151 q->data[0] = 0; /* initialize sequence */
167 PUSH_DATA (push, q->sequence);
197 q->data[0] = q->sequence; /* initialize sequence */
199 q->data[4] = q->sequence + 1; /* for comparison COND_MODE */
202 q->sequence++;
263 q->sequence++;
288 /* PRIMS_DROPPED doesn't write sequence, use a ZERO query to sync on */
329 if (q->data[0] == q->sequence)
[all...]
/external/selinux/libselinux/src/
H A Dsestatus.c25 uint32_t sequence; /* sequence number of seqlock logic */ member in struct:selinux_status_t
51 * seqlock logic. Since selinux_status->sequence is an odd value during
54 * The sequence is almost even number.
71 seqno = status->sequence;
84 * Because `selinux_status->sequence' shall be always incremented on
148 /* sequence must not be changed during references */
185 /* sequence must not be changed during references */
216 /* sequence must not be changed during references */
/external/toybox/toys/pending/
H A Dxzcat.c1388 } sequence; member in struct:lzma2_dec
2083 while (b->in_pos < b->in_size || s->lzma2.sequence == SEQ_LZMA_RUN) {
2084 switch (s->lzma2.sequence) {
2132 s->lzma2.sequence = SEQ_UNCOMPRESSED_1;
2157 s->lzma2.sequence = SEQ_COMPRESSED_0;
2166 s->lzma2.sequence = SEQ_UNCOMPRESSED_2;
2172 s->lzma2.sequence = SEQ_COMPRESSED_0;
2178 s->lzma2.sequence = SEQ_COMPRESSED_1;
2184 s->lzma2.sequence = s->lzma2.next_sequence;
2191 s->lzma2.sequence
2372 } sequence; member in struct:xz_dec
2439 } sequence; member in struct:xz_dec::__anon21012
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DTokenSource.pm24 A source of tokens must provide a sequence of tokens via nextToken()
/external/llvm/test/MC/X86/AlignedBundling/
H A Dpad-align-to-bundle-end.s31 # The nop sequence may be implemented as one instruction or many, but if
/external/snakeyaml/src/test/java/examples/
H A DIgnoreTagsExampleTest.java71 case sequence:
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue97/
H A DYamlSortedSetTest.java59 yamlClassConstructors.put(NodeId.sequence, new ConstructSetFromSequence());
/external/webrtc/talk/media/base/
H A Drtpdump.cc250 // sequence number and timestamp.
258 // Get the RTP sequence number and timestamp of the dump packet.
264 // Set the timestamps and sequence number for the first dump packet.
301 // Get the old RTP sequence number and timestamp.
302 int sequence = 0; local
303 packet->GetRtpSeqNum(&sequence);
306 // Increase the RTP sequence number and timestamp.
307 sequence += loop_count_ * rtp_seq_num_increase_;
309 // Write the updated sequence number and timestamp back to the RTP packet.
311 buffer.WriteUInt16(sequence);
[all...]
/external/blktrace/
H A Dblkrawverify.c108 fprintf(ofp, " %8s: %u\n", "sequence", bit->sequence);
221 if (bit->sequence <= save_sequence) {
238 save_sequence = bit->sequence;
/external/harfbuzz_ng/src/
H A Dhb-ot-layout.h229 const hb_ot_layout_glyph_sequence_t *sequence,
284 const hb_ot_layout_glyph_sequence_t *sequence,
304 const hb_ot_layout_glyph_sequence_t *sequence,
/external/v8/src/x87/
H A Dcodegen-x87.cc609 bool Code::IsYoungSequence(Isolate* isolate, byte* sequence) { argument
610 bool result = isolate->code_aging_helper()->IsYoung(sequence);
611 DCHECK(result || isolate->code_aging_helper()->IsOld(sequence));
616 void Code::GetCodeAgeAndParity(Isolate* isolate, byte* sequence, Age* age, argument
618 if (IsYoungSequence(isolate, sequence)) {
622 sequence++; // Skip the kCallOpcode byte
623 Address target_address = sequence + *reinterpret_cast<int*>(sequence) +
632 byte* sequence,
637 isolate->code_aging_helper()->CopyYoungSequenceTo(sequence);
631 PatchPlatformCodeAge(Isolate* isolate, byte* sequence, Code::Age age, MarkingParity parity) argument
[all...]
/external/webrtc/webrtc/p2p/client/
H A Dbasicportallocator.cc340 // For each network, see if we have a sequence that covers it already. If not,
341 // create a new sequence to create the appropriate ports.
384 AllocationSequence* sequence = local
386 if (!sequence->Init()) {
387 delete sequence;
391 sequence->SignalPortAllocationComplete.connect(
394 sequence->Start();
395 sequences_.push_back(sequence);
406 for (AllocationSequence* sequence : sequences_) {
407 // Remove the network from the allocation sequence i
[all...]
/external/protobuf/python/google/protobuf/internal/
H A Ddescriptor_test.py464 def CheckDescriptorSequence(self, sequence):
467 self.assertGreater(len(sequence), 0) # Sized
468 self.assertEqual(len(sequence), len(list(sequence))) # Iterable
469 item = sequence[0]
470 self.assertEqual(item, sequence[0])
471 self.assertIn(item, sequence) # Container
472 self.assertEqual(sequence.index(item), 0)
473 self.assertEqual(sequence.count(item), 1)
474 reversed_iterator = reversed(sequence)
[all...]
/external/v8/src/arm64/
H A Dcodegen-arm64.cc312 // The sequence of instructions that is patched out for aging code is the
317 // The young sequence is the frame setup code for FUNCTION code types. It is
337 bool Code::IsYoungSequence(Isolate* isolate, byte* sequence) { argument
338 return MacroAssembler::IsYoungSequence(isolate, sequence);
342 void Code::GetCodeAgeAndParity(Isolate* isolate, byte* sequence, Age* age, argument
344 if (IsYoungSequence(isolate, sequence)) {
348 byte* target = sequence + kCodeAgeStubEntryOffset;
356 byte* sequence,
359 PatchingAssembler patcher(isolate, sequence,
355 PatchPlatformCodeAge(Isolate* isolate, byte* sequence, Code::Age age, MarkingParity parity) argument
/external/elfutils/tests/
H A Drun-readelf-line.sh82 [ 54] extended opcode 1: end of sequence
122 [ 8a] extended opcode 1: end of sequence
132 [ a0] extended opcode 1: end of sequence
173 [ e5] extended opcode 1: end of sequence
197 [ 10e] extended opcode 1: end of sequence
/external/v8/src/ppc/
H A Dcodegen-ppc.cc490 bool Code::IsYoungSequence(Isolate* isolate, byte* sequence) { argument
491 bool result = isolate->code_aging_helper()->IsYoung(sequence);
492 DCHECK(result || isolate->code_aging_helper()->IsOld(sequence));
497 void Code::GetCodeAgeAndParity(Isolate* isolate, byte* sequence, Age* age, argument
499 if (IsYoungSequence(isolate, sequence)) {
505 Assembler::target_address_at(sequence + kCodeAgingTargetDelta, code);
512 void Code::PatchPlatformCodeAge(Isolate* isolate, byte* sequence, Code::Age age, argument
516 isolate->code_aging_helper()->CopyYoungSequenceTo(sequence);
517 Assembler::FlushICache(isolate, sequence, young_length);
521 CodePatcher patcher(isolate, sequence,
[all...]
/external/v8/src/s390/
H A Dcodegen-s390.cc484 bool Code::IsYoungSequence(Isolate* isolate, byte* sequence) { argument
485 bool result = isolate->code_aging_helper()->IsYoung(sequence);
486 DCHECK(result || isolate->code_aging_helper()->IsOld(sequence));
490 void Code::GetCodeAgeAndParity(Isolate* isolate, byte* sequence, Age* age, argument
492 if (IsYoungSequence(isolate, sequence)) {
498 Assembler::target_address_at(sequence + kCodeAgingTargetDelta, code);
504 void Code::PatchPlatformCodeAge(Isolate* isolate, byte* sequence, Code::Age age, argument
508 isolate->code_aging_helper()->CopyYoungSequenceTo(sequence);
509 Assembler::FlushICache(isolate, sequence, young_length);
513 CodePatcher patcher(isolate, sequence, young_lengt
[all...]
/external/elfutils/libdw/
H A Ddwarf_getsrclines.c53 size_t sequence; member in struct:linelist
75 /* Otherwise, the linelist sequence maintains a stable sort. */
76 return (list1->sequence < list2->sequence) ? -1
77 : (list1->sequence > list2->sequence) ? 1
116 new_line->sequence = state->nlinelist;
489 The is the end of the sequence. */
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp207 // Record the beginning of instruction sequence.
215 // Record the end of instruction sequence.
280 // values specified above. Every statement program sequence must end
283 // of the sequence.
508 fprintf(stderr, "warning: last sequence in debug line table is not"
531 // Search for instruction address in the rows describing the sequence.
556 // First, find an instruction sequence containing the given address.
557 DWARFDebugLine::Sequence sequence;
558 sequence.LowPC = address;
562 first_seq, last_seq, sequence, DWARFDebugLin
582 DWARFDebugLine::Sequence sequence; local
[all...]
/external/v8/src/compiler/
H A Dpipeline.cc149 InstructionSequence* sequence)
156 instruction_zone_(sequence->zone()),
157 sequence_(sequence),
216 InstructionSequence* sequence() const { return sequence_; } function in class:v8::internal::compiler::PipelineData
296 sequence(), debug_name_.get());
1215 temp_zone, data->graph()->NodeCount(), linkage, data->sequence(),
1374 MoveOptimizer move_optimizer(temp_zone, data->sequence());
1384 FrameElider(data->sequence()).Run();
1394 if (JumpThreading::ComputeForwarding(temp_zone, result, data->sequence(),
1396 JumpThreading::ApplyForwarding(result, data->sequence());
148 PipelineData(ZoneStats* zone_stats, CompilationInfo* info, InstructionSequence* sequence) argument
1738 AllocateRegistersForTesting(const RegisterConfiguration* config, InstructionSequence* sequence, bool run_verifier) argument
[all...]
/external/ImageMagick/www/api/
H A Dconstitute.php107 <p>PingImage() returns all the properties of an image or image sequence except for the pixels. It is much faster and consumes far less memory than ReadImage(). On failure, a NULL image is returned and exception describes the reason for the failure.</p>
164 <p>ReadImage() reads an image or image sequence from a file or file handle. The method returns a NULL if there is a memory shortage or if the image cannot be read. On failure, a NULL image is returned and exception describes the reason for the failure.</p>
221 <p>WriteImage() writes an image or an image sequence to a file or file handle. If writing to a file is on disk, the name is defined by the filename member of the image structure. WriteImage() returns MagickFalse is there is a memory shortage or if the image cannot be written. Check the exception member of image to determine the cause for any failure.</p>
252 <p>WriteImages() writes an image sequence into one or more files. While WriteImage() can write an image sequence, it is limited to writing the sequence into a single file using a format which supports multiple frames. WriteImages(), however, does not have this limitation, instead it generates multiple output files if necessary (or when requested). When ImageInfo's adjoin flag is set to MagickFalse, the file name is expected to include a printf-style formatting string for the frame number (e.g. "image02d.png").</p>

Completed in 3499 milliseconds

1234567891011>>