Searched defs:sequence (Results 101 - 125 of 190) sorted by relevance

12345678

/external/mtpd/
H A Dl2tp.c414 uint16_t sequence = local_sequence; local
525 if (sequence != local_sequence) {
/external/syslinux/extlinux/
H A Dbtrfs.h38 __le64 sequence; member in struct:btrfs_root_ref
/external/tcpdump/
H A Dprint-cfm.c66 uint8_t sequence[4]; member in struct:cfm_ccm_t
353 EXTRACT_32BITS(msg_ptr.cfm_ccm->sequence),
/external/tpm2/
H A DCpriHash.c301 BOOL sequence, // IN: TRUE if the state should be saved
311 if(sequence)
326 if (sequence)
461 // a sequence object was being prepared for export
566 BOOL sequence, // IN: indicates if the state should be
606 // This will go in the caller's state structure and may be a sequence or not
607 if((digestSize = _cpri__StartHash(hashAlg, sequence, state)) > 0)
299 _cpri__StartHash( TPM_ALG_ID hashAlg, BOOL sequence, CPRI_HASH_STATE *hashState ) argument
564 _cpri__StartHMAC( TPM_ALG_ID hashAlg, BOOL sequence, CPRI_HASH_STATE *state, UINT16 keySize, BYTE *key, TPM2B *oPadKey ) argument
/external/v8/src/compiler/
H A Dinstruction-selector-impl.h71 sequence()->AddConstant(virtual_register, constant);
153 return sequence()->AddImmediate(Constant(immediate));
157 return sequence()->AddImmediate(ToConstant(node));
161 return sequence()->AddImmediate(ToNegatedConstant(node));
182 sequence()->NextVirtualRegister());
188 UnallocatedOperand::USED_AT_START, sequence()->NextVirtualRegister());
189 sequence()->MarkAsRepresentation(MachineRepresentation::kFloat64,
200 return sequence()->AddImmediate(Constant(imm));
204 return ToUnallocatedOperand(location, sequence()->NextVirtualRegister());
208 return sequence()
214 InstructionSequence* sequence() const { return selector()->sequence(); } function in class:v8::internal::compiler::OperandGenerator
[all...]
/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/volley/src/main/java/com/android/volley/
H A DRequest.java253 * Sets the sequence number of this request. Used by {@link RequestQueue}.
257 public final Request<?> setSequence(int sequence) { argument
258 mSequence = sequence;
263 * Returns the sequence number of this request.
589 * sequence number to provide FIFO ordering.
597 // Equal priorities are sorted by sequence number to provide FIFO ordering.
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dneteq_impl_unittest.cc336 InSequence sequence; // Dummy variable. local
1034 InSequence sequence; // Dummy variable. local
1157 InSequence sequence; // Dummy variable. local
/external/harfbuzz_ng/src/
H A Dhb-ot-layout-gsub-table.hh338 unsigned int count = sequence.len;
344 (this+sequence[iter.get_coverage ()]).closure (c);
352 unsigned int count = sequence.len;
354 (this+sequence[i]).collect_glyphs (c);
375 return_trace ((this+sequence[index]).apply (c));
386 if (unlikely (!sequence.serialize (c, num_glyphs))) return_trace (false);
388 if (unlikely (!sequence[i].serialize (c, this).serialize (c,
399 return_trace (coverage.sanitize (c, this) && sequence.sanitize (c, this));
408 sequence; /* Array of Sequence tables member in struct:OT::MultipleSubstFormat1
411 DEFINE_SIZE_ARRAY (6, sequence);
[all...]
/external/jline/src/src/main/java/jline/
H A DConsoleReader.java1745 private void printANSISequence(String sequence) throws IOException { argument
1748 printString(sequence);
/external/kernel-headers/original/uapi/drm/
H A Dvia_drm.h242 __u32 sequence; member in struct:drm_via_wait_irq_request
/external/kernel-headers/original/uapi/linux/
H A Dncp.h24 __u8 sequence; member in struct:ncp_request_header
38 __u8 sequence; member in struct:ncp_reply_header
198 __u32 sequence; member in struct:nw_search_sequence
/external/libdrm/include/drm/
H A Dvia_drm.h239 __u32 sequence; member in struct:drm_via_wait_irq_request
/external/libogg/src/
H A Dframing.c817 /* are we in sequence? */
1012 static int sequence=0; local
1024 /* packet number just follows sequence/gap; adjust the input number
1027 sequence=0;
1029 sequence++;
1031 sequence++;
1034 if(op->packetno!=sequence){
1035 fprintf(stderr,"incorrect packet sequence %ld != %d\n",
1036 (long)(op->packetno),sequence);
/external/lzma/xz-embedded/
H A Dxz_dec_lzma2.c226 } sequence; member in struct:lzma2_dec
936 while (b->in_pos < b->in_size || s->lzma2.sequence == SEQ_LZMA_RUN) {
937 switch (s->lzma2.sequence) {
985 s->lzma2.sequence = SEQ_UNCOMPRESSED_1;
1010 s->lzma2.sequence = SEQ_COMPRESSED_0;
1019 s->lzma2.sequence = SEQ_UNCOMPRESSED_2;
1025 s->lzma2.sequence = SEQ_COMPRESSED_0;
1031 s->lzma2.sequence = SEQ_COMPRESSED_1;
1037 s->lzma2.sequence = s->lzma2.next_sequence;
1044 s->lzma2.sequence
[all...]
/external/opencv/cv/src/
H A Dcvshapedescr.cpp66 CV_ERROR( CV_StsBadArg, "Unsupported sequence type" );
300 CvSeq* sequence = 0; local
308 sequence = (CvSeq*)array;
309 if( !CV_IS_SEQ_POINT_SET( sequence ))
310 CV_ERROR( CV_StsBadArg, "The passed sequence is not a valid contour" );
314 CV_CALL( sequence = cvPointSeqFromMat(
318 if( sequence->total <= 0 )
321 CV_CALL( cvStartReadSeq( sequence, &reader, 0 ));
323 count = sequence->total;
324 is_float = CV_SEQ_ELTYPE(sequence)
[all...]
/external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
H A DCodedOutputByteBufferNano.java339 * Returns the number of bytes in the UTF-8-encoded form of {@code sequence}. For a string,
343 * @throws IllegalArgumentException if {@code sequence} contains ill-formed UTF-16 (unpaired
346 private static int encodedLength(CharSequence sequence) { argument
348 int utf16Length = sequence.length();
353 while (i < utf16Length && sequence.charAt(i) < 0x80) {
359 char c = sequence.charAt(i);
363 utf8Length += encodedLengthGeneral(sequence, i);
376 private static int encodedLengthGeneral(CharSequence sequence, int start) { argument
377 int utf16Length = sequence.length();
380 char c = sequence
415 encode(CharSequence sequence, ByteBuffer byteBuffer) argument
435 encodeDirect(CharSequence sequence, ByteBuffer byteBuffer) argument
464 encode(CharSequence sequence, byte[] bytes, int offset, int length) argument
[all...]
/external/v8/src/ia32/
H A Dcodegen-ia32.cc916 bool Code::IsYoungSequence(Isolate* isolate, byte* sequence) { argument
917 bool result = isolate->code_aging_helper()->IsYoung(sequence);
918 DCHECK(result || isolate->code_aging_helper()->IsOld(sequence));
923 void Code::GetCodeAgeAndParity(Isolate* isolate, byte* sequence, Age* age, argument
925 if (IsYoungSequence(isolate, sequence)) {
929 sequence++; // Skip the kCallOpcode byte
930 Address target_address = sequence + *reinterpret_cast<int*>(sequence) +
939 byte* sequence,
944 isolate->code_aging_helper()->CopyYoungSequenceTo(sequence);
938 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/junit-params/lib/
H A Dassertj-core-1.7.1.jarMETA-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/org.assertj/ META- ...
/external/icu/icu4c/source/tools/genrb/
H A Dparse.cpp777 struct SResource *sequence = resLookup(collation, "Sequence"); local
778 if (sequence != NULL && sequence->isString()) {
780 StringResource *sr = static_cast<StringResource *>(sequence);
/external/kernel-headers/original/uapi/linux/wimax/
H A Di2400m.h299 * @sequence: sequence number of this message
315 __le32 sequence; member in union:i2400m_msg_hdr::__anon9180
/external/libdrm/
H A Dxf86drm.h315 DRM_VBLANK_ABSOLUTE = 0x0, /**< Wait for specific vblank sequence number */
329 unsigned int sequence; member in struct:_drmVBlankReq
335 unsigned int sequence; member in struct:_drmVBlankReply
740 unsigned int sequence,
746 unsigned int sequence,
/external/lz4/lib/
H A Dlz4.c402 static U32 LZ4_hash4(U32 sequence, tableType_t const tableType) argument
405 return ((sequence * 2654435761U) >> ((MINMATCH*8)-(LZ4_HASHLOG+1)));
407 return ((sequence * 2654435761U) >> ((MINMATCH*8)-LZ4_HASHLOG));
410 static U32 LZ4_hash5(U64 sequence, tableType_t const tableType) argument
416 return (U32)(((sequence << 24) * prime5bytes) >> (64 - hashLog));
418 return (U32)(((sequence >> 24) * prime8bytes) >> (64 - hashLog));
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_ra.cpp195 RegAlloc(Program *program) : prog(program), sequence(0) { }
254 int sequence; // for manual passes through CFG member in class:nv50_ir::RegAlloc
466 if (bn->cfg.visit(sequence))
1581 for (sequence = func->cfg.nextSequence(), i = 0;
1583 sequence = func->cfg.nextSequence(), ++i)

Completed in 4959 milliseconds

12345678