Home
last modified time | relevance | path

Searched refs:sequence (Results 1 – 25 of 674) sorted by relevance

12345678910>>...27

/linux/arch/parisc/kernel/
A Dperf_asm.S149 ; RDR 0 sequence
161 ; RDR 1 sequence
173 ; RDR 2 read sequence
185 ; RDR 3 read sequence
197 ; RDR 4 read sequence
209 ; RDR 5 read sequence
221 ; RDR 6 read sequence
233 ; RDR 7 read sequence
245 ; RDR 8 read sequence
257 ; RDR 9 read sequence
[all …]
/linux/tools/testing/selftests/bpf/progs/
A Dmodify_return.c13 static int sequence = 0; variable
20 sequence++; in BPF_PROG()
21 fentry_result = (sequence == 1); in BPF_PROG()
29 sequence++; in BPF_PROG()
31 fmod_ret_result = (sequence == 2 && ret == 0); in BPF_PROG()
39 sequence++; in BPF_PROG()
44 fexit_result = (sequence == 3 && ret == input_retval); in BPF_PROG()
46 fexit_result = (sequence == 3 && ret == 4); in BPF_PROG()
/linux/drivers/net/arcnet/
A Drfc1201.c172 soft->sequence); in rx()
179 in->sequence = soft->sequence; in rx()
258 if (in->skb && in->sequence != soft->sequence) { in rx()
260 saddr, in->sequence, soft->sequence, in rx()
274 soft->sequence); in rx()
279 in->sequence = soft->sequence; in rx()
317 soft->sequence, in rx()
338 soft->sequence); in rx()
423 soft->sequence = htons(lp->rfc1201.sequence++); in build_header()
500 pkt->soft.rfc1201.sequence); in prepare_tx()
[all …]
/linux/tools/lib/traceevent/Documentation/
A Dlibtraceevent-tseq.txt9 Initialize / destroy a trace sequence.
47 sequence _s_.
50 trace sequence _s_.
53 variable arguments _..._ in the trace sequence _s_.
56 list of arguments _args_ in the trace sequence _s_.
67 characters put in the trace sequence, or 0 in case of an error
91 /* Failed to print in the trace sequence */
100 /* Failed to put str in the trace sequence */
103 /* Failed to put ':' in the trace sequence */
105 if (trace_seq_printf(&seq, " trace sequence: %d", 1) <= 0) {
[all …]
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/bus/
A Dhwsq.h9 int sequence; member
13 int sequence; member
25 .sequence = 0, in hwsq_stride()
38 .sequence = 0, in hwsq_reg2()
51 .sequence = 0, in hwsq_reg()
69 ram->sequence++; in hwsq_init()
89 if (reg->sequence != ram->sequence) in hwsq_rd32()
99 reg->sequence = ram->sequence; in hwsq_wr32()
/linux/lib/zstd/compress/
A Dzstd_ldm.c586 assert(sequence.offset > 0); in maybeSplitSequence()
588 if (remaining >= sequence.litLength + sequence.matchLength) { in maybeSplitSequence()
590 return sequence; in maybeSplitSequence()
594 sequence.offset = 0; in maybeSplitSequence()
595 } else if (remaining < sequence.litLength + sequence.matchLength) { in maybeSplitSequence()
596 sequence.matchLength = remaining - sequence.litLength; in maybeSplitSequence()
598 sequence.offset = 0; in maybeSplitSequence()
603 return sequence; in maybeSplitSequence()
656 if (sequence.offset == 0) in ZSTD_ldm_blockCompress()
659 assert(ip + sequence.litLength + sequence.matchLength <= iend); in ZSTD_ldm_blockCompress()
[all …]
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
A Dramfuc.h10 int sequence; member
14 int sequence; member
26 .sequence = 0, in ramfuc_stride()
38 .sequence = 0, in ramfuc_reg2()
50 .sequence = 0, in ramfuc_reg()
65 ram->sequence++; in ramfuc_init()
85 if (reg->sequence != ram->sequence) in ramfuc_rd32()
95 reg->sequence = ram->sequence; in ramfuc_wr32()
/linux/Documentation/filesystems/ext4/
A Dmmp.rst10 sequence number. If the sequence number is EXT4\_MMP\_SEQ\_CLEAN, the
11 open continues. If the sequence number is EXT4\_MMP\_SEQ\_FSCK, then
14 the sequence number again. If the sequence number has changed, then the
16 code passes all of those checks, a new MMP sequence number is generated
21 the MMP sequence number is re-read; if it does not match the in-memory
22 MMP sequence number, then another node (node B) has mounted the
24 sequence numbers match, the sequence number is incremented both in
/linux/Documentation/locking/
A Dseqlock.rst14 A data set is consistent when the sequence count at the beginning of the
15 read side critical section is even and the same sequence count value is
17 be copied out inside the read side critical section. If the sequence
21 Writers increment the sequence count at the start and the end of their
24 the end of the write side critical section the sequence count becomes
29 the entire scheduler tick due to the odd sequence count value and the
52 If it's desired to automatically handle the sequence counter
110 The following sequence counters with associated locks are defined:
118 The sequence counter read and write APIs can take either a plain
144 Latch sequence counters (``seqcount_latch_t``)
[all …]
/linux/include/linux/
A Dseqlock.h66 unsigned sequence; member
79 s->sequence = 0; in __seqcount_init()
228 seq = READ_ONCE(s->seqcount.sequence); \
261 return READ_ONCE(s->sequence); in __seqprop_sequence()
473 s->sequence++; in do_raw_write_seqcount_begin()
494 s->sequence++; in do_raw_write_seqcount_end()
616 s->sequence++; in do_raw_write_seqcount_barrier()
618 s->sequence++; in do_raw_write_seqcount_barrier()
637 s->sequence+=2; in do_write_seqcount_invalidate()
686 return READ_ONCE(s->seqcount.sequence); in raw_read_seqcount_latch()
[all …]
/linux/lib/zstd/decompress/
A Dzstd_decompress_block.c770 BYTE* const oLitEnd = op + sequence.litLength; in ZSTD_execSequenceEnd()
771 size_t const sequenceLength = sequence.litLength + sequence.matchLength; in ZSTD_execSequenceEnd()
773 const BYTE* match = oLitEnd - sequence.offset; in ZSTD_execSequenceEnd()
800 sequence.matchLength -= length1; in ZSTD_execSequenceEnd()
814 size_t const sequenceLength = sequence.litLength + sequence.matchLength; in ZSTD_execSequence()
847 if (UNLIKELY(sequence.litLength > 16)) { in ZSTD_execSequence()
866 sequence.matchLength -= length1; in ZSTD_execSequence()
873 assert(sequence.matchLength >= 1); in ZSTD_execSequence()
886 assert(sequence.offset < WILDCOPY_VECLEN); in ZSTD_execSequence()
892 if (sequence.matchLength > 8) { in ZSTD_execSequence()
[all …]
/linux/lib/xz/
A Dxz_dec_stream.c33 } sequence; member
103 } sequence; member
307 switch (s->index.sequence) { in dec_index()
560 switch (s->sequence) { in dec_main()
580 s->sequence = SEQ_BLOCK_START; in dec_main()
596 s->sequence = SEQ_INDEX; in dec_main()
609 s->sequence = SEQ_BLOCK_HEADER; in dec_main()
652 s->sequence = SEQ_BLOCK_CHECK; in dec_main()
668 s->sequence = SEQ_BLOCK_START; in dec_main()
700 s->sequence = SEQ_INDEX_CRC32; in dec_main()
[all …]
A Dxz_dec_lzma2.c226 } sequence; member
970 switch (s->lzma2.sequence) { in xz_dec_lzma2_run()
1058 s->lzma2.sequence = SEQ_COMPRESSED_0; in xz_dec_lzma2_run()
1064 s->lzma2.sequence = SEQ_COMPRESSED_1; in xz_dec_lzma2_run()
1077 s->lzma2.sequence = SEQ_LZMA_PREPARE; in xz_dec_lzma2_run()
1089 s->lzma2.sequence = SEQ_LZMA_RUN; in xz_dec_lzma2_run()
1117 s->lzma2.sequence = SEQ_CONTROL; in xz_dec_lzma2_run()
1133 s->lzma2.sequence = SEQ_CONTROL; in xz_dec_lzma2_run()
1193 s->lzma2.sequence = SEQ_CONTROL; in xz_dec_lzma2_reset()
1256 s->lzma2.sequence = SEQ_LZMA_RUN; in xz_dec_microlzma_run()
[all …]
/linux/fs/xfs/
A Dxfs_log_cil.c93 log->l_cilp->xc_ctx->sequence = 1; in xlog_cil_init_post_recovery()
737 xfs_csn_t sequence, in xlog_cil_order_write() argument
759 if (ctx->sequence >= sequence) in xlog_cil_order_write()
880 ASSERT(push_seq <= ctx->sequence); in xlog_cil_push_work()
908 if (push_seq < ctx->sequence) { in xlog_cil_push_work()
1312 *commit_seq = cil->xc_ctx->sequence; in xlog_cil_commit()
1346 xfs_csn_t sequence) in xlog_cil_force_seq() argument
1354 if (!sequence) in xlog_cil_force_seq()
1381 if (ctx->sequence > sequence) in xlog_cil_force_seq()
1392 if (ctx->sequence != sequence) in xlog_cil_force_seq()
[all …]
/linux/security/selinux/
A Dstatus.c55 status->sequence = 0; in selinux_kernel_status_page()
88 status->sequence++; in selinux_status_update_setenforce()
94 status->sequence++; in selinux_status_update_setenforce()
114 status->sequence++; in selinux_status_update_policyload()
121 status->sequence++; in selinux_status_update_policyload()
/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
A Dbrcms_trace_brcmsmac_tx.h42 u16 status, u16 lasttxtime, u16 sequence, u16 phyerr,
44 TP_ARGS(dev, framelen, frameid, status, lasttxtime, sequence, phyerr,
52 __field(u16, sequence)
62 __entry->sequence = sequence;
69 __entry->lasttxtime, __entry->sequence, __entry->phyerr,
/linux/tools/testing/selftests/powerpc/dscr/
A Ddscr_default_test.c15 static unsigned long sequence; variable
27 s1 = READ_ONCE(sequence); in do_test()
37 s2 = sequence; in do_test()
89 sequence++; in dscr_default()
99 sequence++; in dscr_default()
/linux/lib/
A Dflex_proportions.c47 seqcount_init(&p->sequence); in fprop_global_init()
78 write_seqcount_begin(&p->sequence); in fprop_new_period()
84 write_seqcount_end(&p->sequence); in fprop_new_period()
147 seq = read_seqcount_begin(&p->sequence); in fprop_fraction_single()
151 } while (read_seqcount_retry(&p->sequence, seq)); in fprop_fraction_single()
236 seq = read_seqcount_begin(&p->sequence); in fprop_fraction_percpu()
240 } while (read_seqcount_retry(&p->sequence, seq)); in fprop_fraction_percpu()
/linux/include/clocksource/
A Dhyperv_timer.h41 u32 sequence; in hv_read_tsc_page_tsc() local
60 sequence = READ_ONCE(tsc_pg->tsc_sequence); in hv_read_tsc_page_tsc()
61 if (!sequence) in hv_read_tsc_page_tsc()
79 } while (READ_ONCE(tsc_pg->tsc_sequence) != sequence); in hv_read_tsc_page_tsc()
/linux/Documentation/ABI/testing/
A Dsysfs-class-rc-nuvoton6 Reading this file returns the stored CIR wakeup sequence.
9 The same format can be used to store a wakeup sequence
12 Note: Some systems reset the stored wakeup sequence to a
14 wakeup sequence in a file and set it on boot using e.g.
/linux/drivers/scsi/
A Dmesh.c361 out_8(&mr->sequence, SEQ_RESETMESH); in mesh_init()
385 out_8(&mr->sequence, SEQ_FLUSHFIFO); in mesh_init()
389 out_8(&mr->sequence, SEQ_ENBRESEL); in mesh_init()
439 out_8(&mr->sequence, SEQ_ENBRESEL); in mesh_start_cmd()
491 out_8(&mr->sequence, SEQ_DISRESEL); in mesh_start_cmd()
504 out_8(&mr->sequence, SEQ_ARBITRATE); in mesh_start_cmd()
806 out_8(&mr->sequence, SEQ_BUSFREE); in start_phase()
911 out_8(&mr->sequence, SEQ_ENBRESEL); in reselected()
1008 out_8(&mr->sequence, SEQ_ENBRESEL); in handle_reset()
1083 out_8(&mr->sequence, mr->sequence); in handle_error()
[all …]
/linux/fs/jbd2/
A Drevoke.c105 tid_t sequence; /* Used for recovery only */ member
149 record->sequence = seq; in insert_revoke_hash()
685 tid_t sequence) in jbd2_journal_set_revoke() argument
693 if (tid_gt(sequence, record->sequence)) in jbd2_journal_set_revoke()
694 record->sequence = sequence; in jbd2_journal_set_revoke()
697 return insert_revoke_hash(journal, blocknr, sequence); in jbd2_journal_set_revoke()
709 tid_t sequence) in jbd2_journal_test_revoke() argument
716 if (tid_gt(sequence, record->sequence)) in jbd2_journal_test_revoke()
/linux/include/trace/events/
A Dv4l2.h123 __field(u32, sequence)
144 __entry->sequence = buf->sequence;
167 __entry->sequence
200 __field(u32, sequence)
221 __entry->sequence = vbuf->sequence;
241 __entry->sequence
/linux/drivers/gpu/drm/nouveau/
A Dnvc0_fence.c35 nvc0_fence_emit32(struct nouveau_channel *chan, u64 virtual, u32 sequence) in nvc0_fence_emit32() argument
44 SEMAPHOREC, sequence, in nvc0_fence_emit32()
58 nvc0_fence_sync32(struct nouveau_channel *chan, u64 virtual, u32 sequence) in nvc0_fence_sync32() argument
67 SEMAPHOREC, sequence, in nvc0_fence_sync32()
/linux/drivers/gpu/drm/nouveau/nvkm/engine/pm/
A Dnv40.c64 if (nv40pm->sequence != pm->sequence) { in nv40_perfctr_next()
66 nv40pm->sequence = pm->sequence; in nv40_perfctr_next()

Completed in 61 milliseconds

12345678910>>...27