Home
last modified time | relevance | path

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

12345678910>>...38

/openbmc/linux/arch/parisc/kernel/
H 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 …]
/openbmc/qemu/include/qemu/
H A Dseqlock.h24 unsigned sequence; member
29 sl->sequence = 0; in seqlock_init()
35 qatomic_set(&sl->sequence, sl->sequence + 1); in seqlock_write_begin()
46 qatomic_set(&sl->sequence, sl->sequence + 1); in seqlock_write_end()
71 unsigned ret = qatomic_read(&sl->sequence); in seqlock_read_begin()
82 return unlikely(qatomic_read(&sl->sequence) != start); in seqlock_read_retry()
/openbmc/linux/tools/testing/selftests/bpf/progs/
H 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()
/openbmc/linux/drivers/net/arcnet/
H 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 …]
/openbmc/linux/lib/zstd/decompress/
H A Dzstd_decompress_block.c862 BYTE* const oend, seq_t sequence, in ZSTD_execSequenceEnd() argument
867 size_t const sequenceLength = sequence.litLength + sequence.matchLength; in ZSTD_execSequenceEnd()
914 size_t const sequenceLength = sequence.litLength + sequence.matchLength; in ZSTD_execSequenceEndSplitLitBuffer()
954 BYTE* const oend, seq_t sequence, in ZSTD_execSequence() argument
959 size_t const sequenceLength = sequence.litLength + sequence.matchLength; in ZSTD_execSequence()
1019 assert(sequence.matchLength >= 1); in ZSTD_execSequence()
1038 if (sequence.matchLength > 8) { in ZSTD_execSequence()
1052 size_t const sequenceLength = sequence.litLength + sequence.matchLength; in ZSTD_execSequenceSplitLitBuffer()
1110 assert(sequence.matchLength >= 1); in ZSTD_execSequenceSplitLitBuffer()
1129 if (sequence.matchLength > 8) { in ZSTD_execSequenceSplitLitBuffer()
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/bus/
H 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()
/openbmc/linux/drivers/media/test-drivers/visl/
H A Dvisl-dec.c208 run->dst->sequence, in visl_tpg_fill_sequence()
244 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill()
254 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill()
284 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill()
308 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill()
337 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill()
433 run.dst->sequence = ctx->q_data[V4L2_M2M_DST].sequence++; in visl_device_run()
434 run.src->sequence = ctx->q_data[V4L2_M2M_SRC].sequence++; in visl_device_run()
474 frame_dprintk(ctx->dev, run.dst->sequence, in visl_device_run()
476 run.src->sequence, run.src->vb2_buf.timestamp); in visl_device_run()
[all …]
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
H 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()
/openbmc/linux/Documentation/filesystems/ext4/
H 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
/openbmc/linux/security/selinux/
H A Dstatus.c55 status->sequence = 0; in selinux_kernel_status_page()
87 status->sequence++; in selinux_status_update_setenforce()
93 status->sequence++; in selinux_status_update_setenforce()
112 status->sequence++; in selinux_status_update_policyload()
119 status->sequence++; in selinux_status_update_policyload()
/openbmc/linux/lib/zstd/compress/
H A Dzstd_ldm.c623 assert(sequence.offset > 0); in maybeSplitSequence()
625 if (remaining >= sequence.litLength + sequence.matchLength) { in maybeSplitSequence()
627 return sequence; in maybeSplitSequence()
631 sequence.offset = 0; in maybeSplitSequence()
632 } else if (remaining < sequence.litLength + sequence.matchLength) { in maybeSplitSequence()
633 sequence.matchLength = remaining - sequence.litLength; in maybeSplitSequence()
635 sequence.offset = 0; in maybeSplitSequence()
640 return sequence; in maybeSplitSequence()
694 if (sequence.offset == 0) in ZSTD_ldm_blockCompress()
697 assert(ip + sequence.litLength + sequence.matchLength <= iend); in ZSTD_ldm_blockCompress()
[all …]
/openbmc/linux/include/linux/
H A Dseqlock.h65 unsigned sequence; member
78 s->sequence = 0; in __seqcount_init()
226 seq = READ_ONCE(s->seqcount.sequence); \
259 return READ_ONCE(s->sequence); in __seqprop_sequence()
469 s->sequence++; in do_raw_write_seqcount_begin()
490 s->sequence++; in do_raw_write_seqcount_end()
612 s->sequence++; in do_raw_write_seqcount_barrier()
614 s->sequence++; in do_raw_write_seqcount_barrier()
633 s->sequence+=2; in do_write_seqcount_invalidate()
682 return READ_ONCE(s->seqcount.sequence); in raw_read_seqcount_latch()
[all …]
/openbmc/linux/Documentation/locking/
H 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 …]
/openbmc/openbmc/poky/meta/recipes-graphics/startup-notification/startup-notification-0.12/
H A Dtime_t.patch30 @@ -364,8 +364,8 @@ sn_startup_sequence_get_screen (SnStartupSequence *sequence)
33 sn_startup_sequence_get_initiated_time (SnStartupSequence *sequence,
40 *tv_sec = sequence->initiation_time.tv_sec;
41 @@ -386,8 +386,8 @@ sn_startup_sequence_get_initiated_time (SnStartupSequence *sequence,
44 sn_startup_sequence_get_last_active_time (SnStartupSequence *sequence,
57 int sn_startup_sequence_get_screen (SnStartupSequence *sequence);
59 void sn_startup_sequence_get_initiated_time (SnStartupSequence *sequence,
64 void sn_startup_sequence_get_last_active_time (SnStartupSequence *sequence,
70 void sn_startup_sequence_complete (SnStartupSequence *sequence);
/openbmc/linux/drivers/net/wireless/broadcom/brcm80211/brcmsmac/
H 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,
/openbmc/linux/lib/xz/
H 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 …]
/openbmc/linux/include/clocksource/
H A Dhyperv_timer.h46 u32 sequence; in hv_read_tsc_page_tsc() local
65 sequence = READ_ONCE(tsc_pg->tsc_sequence); in hv_read_tsc_page_tsc()
66 if (!sequence) in hv_read_tsc_page_tsc()
84 } while (READ_ONCE(tsc_pg->tsc_sequence) != sequence); in hv_read_tsc_page_tsc()
/openbmc/docs/designs/
H A Dsol-sysrq.md41 sequence `\n~B` is used to send the "break signal" between clients and
42 console-server. In `obmc-console`, a state machine shall handle the sequence.
43 Once the sequence is detected, it could invoke `tcsendbreak()` to send the
49 break signal from ipmitool, and send the sequence `\n~B` to the server.
57 key code sequence `\n~B` to trigger the break, and then user could enter a
63 used to detect the sequence `\n~B`:
92 sequence `\n~B`. When obmc-console receive `MSG_OOB`, it shall send the "break
96 input sequence correctly, as `MSG_OOB` can be anywhere in the input sequence. It
111 with SSH, we need enter the key code sequence with more than one tilde. Like
112 sequence `\n~~B`, the first tilde will be processed by obmc-console-client, the
/openbmc/u-boot/doc/device-tree-bindings/video/
H A Dintel-gma.txt15 - intel,panel-power-cycle-delay : T4 time sequence (6 = 500ms)
18 - intel,panel-power-up-delay : T1+T2 time sequence
19 - intel,panel-power-down-delay : T3 time sequence
20 - intel,panel-power-backlight-on-delay : T5 time sequence
21 - intel,panel-power-backlight-off-delay : Tx time sequence
/openbmc/linux/Documentation/ABI/testing/
H 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.
/openbmc/linux/lib/
H A Dflex_proportions.c47 seqcount_init(&p->sequence); in fprop_global_init()
74 write_seqcount_begin(&p->sequence); in fprop_new_period()
80 write_seqcount_end(&p->sequence); in fprop_new_period()
143 seq = read_seqcount_begin(&p->sequence); in fprop_fraction_single()
147 } while (read_seqcount_retry(&p->sequence, seq)); in fprop_fraction_single()
232 seq = read_seqcount_begin(&p->sequence); in fprop_fraction_percpu()
236 } while (read_seqcount_retry(&p->sequence, seq)); in fprop_fraction_percpu()
/openbmc/linux/drivers/gpu/drm/nouveau/
H 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()
/openbmc/linux/fs/jbd2/
H 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()
/openbmc/linux/include/trace/events/
H 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
/openbmc/linux/fs/xfs/
H A Dxfs_log_cil.c214 log->l_cilp->xc_ctx->sequence = 1; in xlog_cil_init_post_recovery()
856 xfs_csn_t sequence, in xlog_cil_order_write() argument
878 if (ctx->sequence >= sequence) in xlog_cil_order_write()
1146 ASSERT(push_seq <= ctx->sequence); in xlog_cil_push_work()
1176 if (push_seq < ctx->sequence) { in xlog_cil_push_work()
1609 *commit_seq = cil->xc_ctx->sequence; in xlog_cil_commit()
1650 xfs_csn_t sequence) in xlog_cil_force_seq() argument
1658 if (!sequence) in xlog_cil_force_seq()
1659 sequence = cil->xc_current_sequence; in xlog_cil_force_seq()
1685 if (ctx->sequence > sequence) in xlog_cil_force_seq()
[all …]

12345678910>>...38