/openbmc/linux/arch/parisc/kernel/ |
H A D | perf_asm.S | 141 blr %r1,%r0 ; branch to 8-instruction sequence 149 ; 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 [all …]
|
/openbmc/linux/crypto/asymmetric_keys/ |
H A D | pkcs7.asn1 | 1 PKCS7ContentInfo ::= SEQUENCE { 8 SignedData ::= SEQUENCE { 23 ContentInfo ::= SEQUENCE { 32 daSequence SEQUENCE OF DigestAlgorithmIdentifier 35 DigestAlgorithmIdentifier ::= SEQUENCE { 52 Certificates ::= SEQUENCE OF Certificate 56 CertificateList ::= SEQUENCE OF Certificate -- This may be defined incorrectly 58 CRLSequence ::= SEQUENCE OF CertificateList 67 siSequence SEQUENCE OF SignerInfo 70 SignerInfo ::= SEQUENCE { [all …]
|
H A D | x509.asn1 | 1 Certificate ::= SEQUENCE { 7 TBSCertificate ::= SEQUENCE { 23 AlgorithmIdentifier ::= SEQUENCE { 28 Name ::= SEQUENCE OF RelativeDistinguishedName 32 AttributeValueAssertion ::= SEQUENCE { 37 Validity ::= SEQUENCE { 47 SubjectPublicKeyInfo ::= SEQUENCE { 54 Extensions ::= SEQUENCE OF Extension 56 Extension ::= SEQUENCE {
|
/openbmc/linux/Documentation/locking/ |
H A D | seqlock.rst | 2 Sequence counters and sequential locks 8 Sequence counters are a reader-writer consistency mechanism with 14 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 22 critical section. After starting the critical section the sequence count 24 the end of the write side critical section the sequence count becomes 27 A sequence counter write side critical section must never be preempted 29 the entire scheduler tick due to the odd sequence count value and the [all …]
|
/openbmc/qemu/include/qemu/ |
H A D | seqlock.h | 24 unsigned sequence; member 29 sl->sequence = 0; in seqlock_init() 35 qatomic_set(&sl->sequence, sl->sequence + 1); in seqlock_write_begin() 37 /* Write sequence before updating other fields. */ in seqlock_write_begin() 43 /* Write other fields before finalizing sequence. */ in seqlock_write_end() 46 qatomic_set(&sl->sequence, sl->sequence + 1); in seqlock_write_end() 71 unsigned ret = qatomic_read(&sl->sequence); in seqlock_read_begin() 73 /* Read sequence before reading other fields. */ in seqlock_read_begin() 80 /* Read other fields before reading final sequence. */ in seqlock_read_retry() 82 return unlikely(qatomic_read(&sl->sequence) != start); in seqlock_read_retry()
|
/openbmc/linux/include/linux/netfilter/ |
H A D | nf_conntrack_h323_types.h | 10 typedef struct TransportAddress_ipAddress { /* SEQUENCE */ 15 typedef struct TransportAddress_ip6Address { /* SEQUENCE */ 77 typedef struct DataApplicationCapability { /* SEQUENCE */ 99 typedef struct UnicastAddress_iPAddress { /* SEQUENCE */ 104 typedef struct UnicastAddress_iP6Address { /* SEQUENCE */ 135 typedef struct H2250LogicalChannelParameters { /* SEQUENCE */ 174 typedef struct OpenLogicalChannel_forwardLogicalChannelParameters { /* SEQUENCE */ 199 typedef struct OpenLogicalChannel_reverseLogicalChannelParameters { /* SEQUENCE */ 223 typedef struct NetworkAccessParameters { /* SEQUENCE */ 232 typedef struct OpenLogicalChannel { /* SEQUENCE */ [all …]
|
/openbmc/linux/Documentation/filesystems/ext4/ |
H A D | mmp.rst | 10 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 49 - Sequence number, updated periodically.
|
/openbmc/linux/kernel/trace/ |
H A D | trace_seq.c | 71 * trace_seq_printf - sequence printing of trace information 72 * @s: trace sequence descriptor 75 * The tracer may use either sequence operations or its own 105 * @s: trace sequence descriptor 131 * trace_seq_vprintf - sequence printing of trace information 132 * @s: trace sequence descriptor 136 * The tracer may use either sequence operations or its own 163 * @s: trace sequence descriptor 197 * trace_seq_puts - trace sequence printing of simple string 198 * @s: trace sequence descriptor [all …]
|
/openbmc/phosphor-net-ipmid/sol/ |
H A D | sol_context.hpp | 77 uint8_t packetSeqNum; //!< Packet sequence number 78 uint8_t packetAckSeqNum; //!< Packet ACK/NACK sequence number 93 * SOL sequence numbers. At the session level, SOL Payloads share the session 94 * sequence numbers for authenticated and unauthenticated packets with other 96 * their own message sequence numbers that are used for tracking missing and 97 * retried SOL messages. The sequence numbers must be non-zero. Retried 98 * packets use the same sequence number as the first packet. 104 /** @brief Get the SOL sequence number. 106 * @param[in] inbound - true for inbound sequence number and false for 107 * outbound sequence number [all …]
|
/openbmc/linux/drivers/gpu/drm/vboxvideo/ |
H A D | hgsmi_defs.h | 7 /* Buffer sequence type mask. */ 9 /* Single buffer, not a part of a sequence. */ 11 /* The first buffer in a sequence. */ 13 /* A middle buffer in a sequence. */ 15 /* The last buffer in a sequence. */ 37 /* Must be the same for all buffers in the sequence. */ 39 /* The total size of the sequence. */ 48 /* Must be the same for all buffers in the sequence. */ 50 /* Data offset in the entire sequence. */
|
/openbmc/linux/kernel/printk/ |
H A D | printk_ringbuffer.h | 16 u64 seq; /* sequence number */ 154 * The first record reserved by a writer is assigned sequence number 0. 167 * descriptor in the array could have a valid sequence number of 0.) 169 * The first time a descriptor is reserved, it is assigned a sequence number 171 * be recognized because it has a sequence number of 0 but does not have an 173 * sequence number of 0.) After the first reservation, all future reservations 174 * (recycling) simply involve incrementing the sequence number by the array 178 * Only the first descriptor in the array is allowed to have the sequence 182 * incrementing the sequence number by the array count when reserving the 183 * first descriptor in the array. In order to satisfy Req3, the sequence [all …]
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/bus/ |
H A D | hwsq.h | 9 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/lib/zstd/compress/ |
H A D | zstd_ldm.c | 395 /* If a split point would generate a sequence overlapping with in ZSTD_ldm_generateSequences_internal() 456 /* Out of sequence storage */ in ZSTD_ldm_generateSequences_internal() 551 * * Try invalidation after the sequence generation and test the in ZSTD_ldm_generateSequences() 554 * NOTE: Because of dictionaries + sequence splitting we MUST make sure in ZSTD_ldm_generateSequences() 555 * that any offset used is valid at the END of the sequence, since it may in ZSTD_ldm_generateSequences() 567 * newly generated sequence, or add the `newLeftoverSize` if none are in ZSTD_ldm_generateSequences() 613 * If the sequence length is longer than remaining then the sequence is split 616 * Returns the current sequence to handle, or if the rest of the block should 617 * be literals, it returns a sequence with offset == 0. 622 rawSeq sequence = rawSeqStore->seq[rawSeqStore->pos]; in maybeSplitSequence() local [all …]
|
/openbmc/qemu/util/ |
H A D | unicode.c | 35 * @end: set to end of sequence on return 37 * Convert the modified UTF-8 sequence at the start of @s. Modified 41 * If @n is zero or @s points to a zero byte, the sequence is invalid, 45 * byte, the sequence is invalid, and @end is set to @s + 1 48 * expected. If there are fewer, the sequence is invalid, and @end is 50 * sequence is well-formed, and @end is set to @s + 1 + expected 53 * A well-formed sequence is valid unless it encodes a codepoint 56 * overlong sequence "\xC0\x80" is valid. 58 * Conversion succeeds if and only if the sequence is valid. 70 /* empty sequence */ in mod_utf8_codepoint() [all …]
|
/openbmc/u-boot/drivers/ddr/marvell/axp/ |
H A D | ddr3_hw_training.c | 64 puts("DDR3 Training Sequence - Ver 5.7."); in ddr3_print_version() 90 DEBUG_MAIN_S("DDR3 Training Sequence - DEBUG - 1\n"); in ddr3_hw_training() 176 * Not all frequency modes support the ddr3 training sequence in ddr3_hw_training() 179 * inside the ddr3 training sequence without running the training in ddr3_hw_training() 184 DEBUG_MAIN_S("DDR3 Training Sequence - Run with PBS.\n"); in ddr3_hw_training() 186 DEBUG_MAIN_S("DDR3 Training Sequence - Run without PBS.\n"); in ddr3_hw_training() 198 DEBUG_MAIN_S("DDR3 Training Sequence - FAILED (Dfs High2Low)\n"); in ddr3_hw_training() 207 DEBUG_MAIN_S("DDR3 Training Sequence - Registered DIMM Low WL - SKIP\n"); in ddr3_hw_training() 214 DEBUG_MAIN_S("DDR3 Training Sequence - DEBUG - 2\n"); in ddr3_hw_training() 219 * If running training sequence without DFS, in ddr3_hw_training() [all …]
|
/openbmc/docs/designs/ |
H A D | sol-sysrq.md | 41 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/linux/drivers/media/test-drivers/visl/ |
H A D | visl-dec.c | 203 "stream time: %02d:%02d:%02d:%03d sequence:%u timestamp:%lld field:%s", in visl_tpg_fill_sequence() 208 run->dst->sequence, in visl_tpg_fill_sequence() 243 frame_dprintk(ctx->dev, run->dst->sequence, "%s\n", buf); in visl_tpg_fill() 244 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill() 251 frame_dprintk(ctx->dev, run->dst->sequence, "%s\n", line_str); in visl_tpg_fill() 254 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill() 269 frame_dprintk(ctx->dev, run->dst->sequence, "%s\n", buf); in visl_tpg_fill() 280 frame_dprintk(ctx->dev, run->dst->sequence, "%s\n", buf); in visl_tpg_fill() 284 frame_dprintk(ctx->dev, run->dst->sequence, ""); in visl_tpg_fill() 287 frame_dprintk(ctx->dev, run->dst->sequence, "%s\n", buf); in visl_tpg_fill() [all …]
|
/openbmc/linux/lib/zstd/decompress/ |
H A D | zstd_decompress_block.c | 784 …* This function is only called in the uncommon case where the sequence is near the end of the blo… 785 * should be fast for a single long sequence, but can be slow for several short sequences. 857 * NOTE: This function needs to be fast for a single long sequence, but doesn't need 862 BYTE* const oend, seq_t sequence, in ZSTD_execSequenceEnd() argument 866 BYTE* const oLitEnd = op + sequence.litLength; in ZSTD_execSequenceEnd() 867 size_t const sequenceLength = sequence.litLength + sequence.matchLength; in ZSTD_execSequenceEnd() 868 const BYTE* const iLitEnd = *litPtr + sequence.litLength; in ZSTD_execSequenceEnd() 869 const BYTE* match = oLitEnd - sequence.offset; in ZSTD_execSequenceEnd() 874 …RETURN_ERROR_IF(sequence.litLength > (size_t)(litLimit - *litPtr), corruption_detected, "try to re… in ZSTD_execSequenceEnd() 879 ZSTD_safecopy(op, oend_w, *litPtr, sequence.litLength, ZSTD_no_overlap); in ZSTD_execSequenceEnd() [all …]
|
/openbmc/linux/tools/testing/selftests/bpf/progs/ |
H A D | modify_return.c | 13 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/net/batman-adv/ |
H A D | bitarray.c | 24 * batadv_bit_get_packet() - receive and process one packet within the sequence 27 * @seq_bits: pointer to the sequence number receive packet 28 * @seq_num_diff: difference between the current/received sequence number and 29 * the last sequence number 40 /* sequence number is slightly older. We already got a sequence number in batadv_bit_get_packet() 49 /* sequence number is slightly newer, so we shift the window and in batadv_bit_get_packet() 60 /* sequence number is much newer, probably missed a lot of packets */ in batadv_bit_get_packet()
|
/openbmc/linux/drivers/net/arcnet/ |
H A D | rfc1201.c | 171 in->sequence, soft->split_flag, in rx() 172 soft->sequence); in rx() 173 lp->rfc1201.aborted_seq = soft->sequence; in rx() 179 in->sequence = soft->sequence; in rx() 256 soft->split_flag, in->sequence); in rx() 258 if (in->skb && in->sequence != soft->sequence) { in rx() 260 saddr, in->sequence, soft->sequence, in rx() 273 in->sequence, soft->split_flag, in rx() 274 soft->sequence); in rx() 279 in->sequence = soft->sequence; in rx() [all …]
|
/openbmc/linux/include/scsi/fc/ |
H A D | fc_fc2.h | 20 * Sequence Status Block. 25 __u8 ssb_seq_id; /* sequence ID */ 30 __be16 ssb_s_stat; /* sequence status flags */ 49 #define SSB_ST_RESP (1 << 15) /* sequence responder */ 50 #define SSB_ST_ACTIVE (1 << 14) /* sequence is active */ 53 #define SSB_ST_REQ_MASK (3 << 10) /* ACK, abort sequence condition */ 61 #define SSB_ST_TIMEOUT (1 << 7) /* sequence timed out by recipient */ 82 __u8 esb_seq_status[8]; /* sequence statuses, 8 bytes each */ 95 #define ESB_ST_SEQ_INIT (1 << 30) /* port holds sequence initiative */ 103 #define ESB_ST_ERRP_SING (1 << 24) /* abort, discard single sequence */
|
/openbmc/linux/drivers/scsi/libfc/ |
H A D | fc_exch.c | 11 * Fibre Channel exchange and sequence handling. 40 * fc_exch holds state for one exchange and links to its active sequence. 42 * fc_seq holds the state for an individual sequence. 132 * to have one per CPU. The sequence manager is one per exchange manager 136 * assigned by the Sequence Initiator that shall be unique for a specific 137 * D_ID and S_ID pair while the Sequence is open." Note that it isn't 142 * The exchange and its sequence are freed when the last sequence is received. 154 * Sequence event handling: 162 * The sequence is marked complete. 165 * with exchange and sequence tuple. [all …]
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
H A D | ramfuc.h | 10 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/openbmc/poky/meta/recipes-graphics/startup-notification/startup-notification-0.12/ |
H A D | time_t.patch | 30 @@ -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);
|