/kernel/linux/linux-6.6/rust/alloc/vec/ |
H A D | mod.rs | 56 #![stable(feature = "rust1", since = "1.0.0")] 83 #[stable(feature = "vec_splice", since = "1.21.0")] 89 #[stable(feature = "drain", since = "1.6.0")] 100 #[stable(feature = "rust1", since = "1.0.0")] 396 #[stable(feature = "rust1", since = "1.0.0")] 420 #[rustc_const_stable(feature = "const_vec_new", since = "1.39.0")] 421 #[stable(feature = "rust1", since = "1.0.0")] 472 /// // A vector of a zero-sized type will always over-allocate, since no 479 #[stable(feature = "rust1", since = "1.0.0")] 529 /// // A vector of a zero-sized type will always over-allocate, since n [all...] |
H A D | partial_eq.rs | 25 __impl_slice_eq1! { [A1: Allocator, A2: Allocator] Vec<T, A1>, Vec<U, A2>, #[stable(feature = "rust1", since = "1.0.0")] } 26 __impl_slice_eq1! { [A: Allocator] Vec<T, A>, &[U], #[stable(feature = "rust1", since = "1.0.0")] } 27 __impl_slice_eq1! { [A: Allocator] Vec<T, A>, &mut [U], #[stable(feature = "rust1", since = "1.0.0")] } 28 __impl_slice_eq1! { [A: Allocator] &[T], Vec<U, A>, #[stable(feature = "partialeq_vec_for_ref_slice", since = "1.46.0")] } 29 __impl_slice_eq1! { [A: Allocator] &mut [T], Vec<U, A>, #[stable(feature = "partialeq_vec_for_ref_slice", since = "1.46.0")] } 30 __impl_slice_eq1! { [A: Allocator] Vec<T, A>, [U], #[stable(feature = "partialeq_vec_for_slice", since = "1.48.0")] } 31 __impl_slice_eq1! { [A: Allocator] [T], Vec<U, A>, #[stable(feature = "partialeq_vec_for_slice", since = "1.48.0")] } 33 __impl_slice_eq1! { [A: Allocator] Cow<'_, [T]>, Vec<U, A> where T: Clone, #[stable(feature = "rust1", since = "1.0.0")] } 35 __impl_slice_eq1! { [] Cow<'_, [T]>, &[U] where T: Clone, #[stable(feature = "rust1", since = "1.0.0")] } 37 __impl_slice_eq1! { [] Cow<'_, [T]>, &mut [U] where T: Clone, #[stable(feature = "rust1", since [all...] |
H A D | drain.rs | 23 #[stable(feature = "drain", since = "1.6.0")] 38 #[stable(feature = "collection_debug", since = "1.17.0")] 58 #[stable(feature = "vec_drain_as_slice", since = "1.46.0")] in fmt() 141 #[stable(feature = "vec_drain_as_slice", since = "1.46.0")] 148 #[stable(feature = "drain", since = "1.6.0")] 150 #[stable(feature = "drain", since = "1.6.0")] 153 #[stable(feature = "drain", since = "1.6.0")] 167 #[stable(feature = "drain", since = "1.6.0")] 175 #[stable(feature = "drain", since = "1.6.0")] 234 // it from the original vec but also avoid creating a &mut to the front since tha in drop() [all...] |
H A D | into_iter.rs | 33 #[stable(feature = "rust1", since = "1.0.0")] 51 #[stable(feature = "vec_intoiter_debug", since = "1.13.0")] 70 #[stable(feature = "vec_into_iter_as_slice", since = "1.15.0")] in fmt() 88 #[stable(feature = "vec_into_iter_as_slice", since = "1.15.0")] in fmt() 156 // since our `Drop` impl isn't going to run so there's no more code. in fmt() 173 #[stable(feature = "vec_intoiter_as_ref", since = "1.46.0")] 180 #[stable(feature = "rust1", since = "1.0.0")] 182 #[stable(feature = "rust1", since = "1.0.0")] 185 #[stable(feature = "rust1", since = "1.0.0")] 296 #[stable(feature = "rust1", since [all...] |
/kernel/linux/linux-6.6/rust/alloc/collections/ |
H A D | mod.rs | 5 #![stable(feature = "rust1", since = "1.0.0")] 17 #[stable(feature = "rust1", since = "1.0.0")] 20 #[stable(feature = "rust1", since = "1.0.0")] 25 #[stable(feature = "rust1", since = "1.0.0")] 28 #[stable(feature = "rust1", since = "1.0.0")] 33 #[stable(feature = "rust1", since = "1.0.0")] 38 #[stable(feature = "rust1", since = "1.0.0")] 43 #[stable(feature = "rust1", since = "1.0.0")] 48 #[stable(feature = "rust1", since = "1.0.0")] 53 #[stable(feature = "rust1", since [all...] |
/kernel/linux/linux-6.6/rust/alloc/ |
H A D | boxed.rs | 70 //! pointer pointing into previously allocated memory that since got freed is 96 //! `foo_delete` is represented in Rust as `Option<Box<Foo>>`, since `Box<Foo>` 149 #![stable(feature = "rust1", since = "1.0.0")] 195 #[stable(feature = "rust1", since = "1.0.0")] 216 #[stable(feature = "rust1", since = "1.0.0")] 284 #[stable(feature = "pin", since = "1.33.0")] 450 // NOTE: Prefer match over unwrap_or_else since closure sometimes not inlineable. in new_uninit_in() 524 // NOTE: Prefer match over unwrap_or_else since closure sometimes not inlineable. in new_zeroed_in() 951 #[stable(feature = "box_raw", since = "1.4.0")] 1053 #[stable(feature = "box_raw", since [all...] |
H A D | slice.rs | 12 #![stable(feature = "rust1", since = "1.0.0")] 46 #[stable(feature = "inherent_ascii_escape", since = "1.60.0")] 48 #[stable(feature = "slice_get_slice", since = "1.28.0")] 50 #[stable(feature = "from_ref", since = "1.28.0")] 54 #[stable(feature = "rust1", since = "1.0.0")] 56 #[stable(feature = "rust1", since = "1.0.0")] 58 #[stable(feature = "chunks_exact", since = "1.31.0")] 60 #[stable(feature = "rust1", since = "1.0.0")] 64 #[stable(feature = "rust1", since = "1.0.0")] 66 #[stable(feature = "rchunks", since [all...] |
H A D | alloc.rs | 5 #![stable(feature = "alloc_module", since = "1.28.0")] 13 #[stable(feature = "alloc_module", since = "1.28.0")] 91 #[stable(feature = "global_alloc", since = "1.28.0")] 116 #[stable(feature = "global_alloc", since = "1.28.0")] 134 #[stable(feature = "global_alloc", since = "1.28.0")] 168 #[stable(feature = "global_alloc", since = "1.28.0")] 360 #[stable(feature = "global_alloc", since = "1.28.0")]
|
/kernel/linux/linux-5.10/lib/ |
H A D | errseq.c | 9 * number of "subscribers" to tell whether it has changed since a previous 18 * can later be used to tell whether any new errors have occurred since that 22 * frequently, since we have so few bits to use as a counter. 25 * been sampled since a new value was recorded. That allows us to avoid bumping 26 * the counter if no one has sampled it since the last time an error was 32 * has ever been an error set since it was first initialized. 134 * errseq_check() - Has an error occurred since a particular sample point? 136 * @since: Previously-sampled errseq_t from which to check. 138 * Grab the value that eseq points to, and see if it has changed @since 139 * the given value was sampled. The @since valu 144 errseq_check(errseq_t *eseq, errseq_t since) errseq_check() argument 174 errseq_check_and_advance(errseq_t *eseq, errseq_t *since) errseq_check_and_advance() argument [all...] |
/kernel/linux/linux-6.6/lib/ |
H A D | errseq.c | 10 * number of "subscribers" to tell whether it has changed since a previous 19 * can later be used to tell whether any new errors have occurred since that 23 * frequently, since we have so few bits to use as a counter. 26 * been sampled since a new value was recorded. That allows us to avoid bumping 27 * the counter if no one has sampled it since the last time an error was 33 * has ever been an error set since it was first initialized. 135 * errseq_check() - Has an error occurred since a particular sample point? 137 * @since: Previously-sampled errseq_t from which to check. 139 * Grab the value that eseq points to, and see if it has changed @since 140 * the given value was sampled. The @since valu 145 errseq_check(errseq_t *eseq, errseq_t since) errseq_check() argument 175 errseq_check_and_advance(errseq_t *eseq, errseq_t *since) errseq_check_and_advance() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/ |
H A D | i915_drv.h | 450 #define IS_DISPLAY_STEP(__i915, since, until) \ 452 INTEL_DISPLAY_STEP(__i915) >= (since) && INTEL_DISPLAY_STEP(__i915) < (until)) 454 #define IS_GRAPHICS_STEP(__i915, since, until) \ 456 INTEL_GRAPHICS_STEP(__i915) >= (since) && INTEL_GRAPHICS_STEP(__i915) < (until)) 458 #define IS_MEDIA_STEP(__i915, since, until) \ 460 INTEL_MEDIA_STEP(__i915) >= (since) && INTEL_MEDIA_STEP(__i915) < (until)) 462 #define IS_BASEDIE_STEP(__i915, since, until) \ 464 INTEL_BASEDIE_STEP(__i915) >= (since) && INTEL_BASEDIE_STEP(__i915) < (until)) 658 #define IS_XEHPSDV_GRAPHICS_STEP(__i915, since, until) \ 659 (IS_XEHPSDV(__i915) && IS_GRAPHICS_STEP(__i915, since, unti [all...] |
/kernel/linux/linux-6.6/fs/xfs/scrub/ |
H A D | stats.h | 33 static inline u64 xchk_stats_elapsed_ns(u64 since) in xchk_stats_elapsed_ns() argument 42 if (now == since) in xchk_stats_elapsed_ns() 45 return now - since; in xchk_stats_elapsed_ns()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | errseq.h | 12 int errseq_check(errseq_t *eseq, errseq_t since); 13 int errseq_check_and_advance(errseq_t *eseq, errseq_t *since);
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | errseq.h | 12 int errseq_check(errseq_t *eseq, errseq_t since); 13 int errseq_check_and_advance(errseq_t *eseq, errseq_t *since);
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/ |
H A D | i915_drv.h | 1315 * Return true if revision is in range [since,until] inclusive. 1317 * Use 0 for open-ended since, and REVID_FOREVER for open-ended until. 1319 #define IS_REVID(p, since, until) \ 1320 (INTEL_REVID(p) >= (since) && INTEL_REVID(p) <= (until)) 1495 #define IS_SKL_REVID(p, since, until) (IS_SKYLAKE(p) && IS_REVID(p, since, until)) 1503 #define IS_BXT_REVID(dev_priv, since, until) \ 1504 (IS_BROXTON(dev_priv) && IS_REVID(dev_priv, since, until)) 1526 #define IS_KBL_GT_REVID(dev_priv, since, until) \ 1528 kbl_revids[INTEL_REVID(dev_priv)].gt_stepping >= since [all...] |
/kernel/linux/linux-5.10/fs/nfs/ |
H A D | file.c | 143 errseq_t since; in nfs_file_flush() local 152 since = filemap_sample_wb_err(file->f_mapping); in nfs_file_flush() 154 return filemap_check_wb_err(file->f_mapping, since); in nfs_file_flush() 618 errseq_t since; in nfs_file_write() local 644 since = filemap_sample_wb_err(file->f_mapping); in nfs_file_write() 663 error = filemap_check_wb_err(file->f_mapping, since); in nfs_file_write() 842 * on NFSv2/3 since NLMv3/4 support DOS share modes, but for now the in nfs_flock()
|
H A D | nfs4file.c | 116 errseq_t since; in nfs4_file_flush() local 132 since = filemap_sample_wb_err(file->f_mapping); in nfs4_file_flush() 134 return filemap_check_wb_err(file->f_mapping, since); in nfs4_file_flush()
|
/kernel/linux/linux-5.10/arch/arc/kernel/ |
H A D | entry.S | 67 ; user mode, in a round about way since that is always done from 167 ; using ERET won't work since next-PC has already committed 185 ; clobbered them (since they are in scratch regs). The tracer could also 315 ; in pt_reg since the "C" ABI (kernel code) will automatically
|
/kernel/linux/linux-6.6/fs/nfs/ |
H A D | file.c | 142 errseq_t since; in nfs_file_flush() local 151 since = filemap_sample_wb_err(file->f_mapping); in nfs_file_flush() 153 return filemap_check_wb_err(file->f_mapping, since); in nfs_file_flush() 643 errseq_t since; in nfs_file_write() local 669 since = filemap_sample_wb_err(file->f_mapping); in nfs_file_write() 699 error = filemap_check_wb_err(file->f_mapping, since); in nfs_file_write()
|
H A D | nfs4file.c | 113 errseq_t since; in nfs4_file_flush() local 129 since = filemap_sample_wb_err(file->f_mapping); in nfs4_file_flush() 131 return filemap_check_wb_err(file->f_mapping, since); in nfs4_file_flush()
|
/kernel/linux/linux-6.6/arch/arc/mm/ |
H A D | tlbex.S | 54 ; [All of this dance is to avoid stack switching for each TLB Miss, since we
|
/kernel/linux/linux-6.6/net/rxrpc/ |
H A D | input.c | 758 rxrpc_seq_t since) in rxrpc_input_soft_acks() 768 if (after_eq(seq, since)) in rxrpc_input_soft_acks() 772 if (before(seq, since)) { in rxrpc_input_soft_acks() 842 rxrpc_seq_t first_soft_ack, hard_ack, prev_pkt, since; in rxrpc_input_ack() local 930 since = rxrpc_input_check_prev_ack(call, &summary, first_soft_ack); in rxrpc_input_ack() 936 since = first_soft_ack; in rxrpc_input_ack() 986 rxrpc_input_soft_acks(call, &summary, skb, first_soft_ack, since); in rxrpc_input_ack() 754 rxrpc_input_soft_acks(struct rxrpc_call *call, struct rxrpc_ack_summary *summary, struct sk_buff *skb, rxrpc_seq_t seq, rxrpc_seq_t since) rxrpc_input_soft_acks() argument
|
/kernel/linux/linux-5.10/arch/arm/mach-prima2/ |
H A D | sleep.S | 45 @ Following code has to run from cache since
|
/kernel/linux/linux-5.10/arch/alpha/kernel/ |
H A D | head.S | 61 # on the PC164 (at least), since that PALcode manages the interrupt
|
/kernel/linux/linux-6.6/arch/alpha/kernel/ |
H A D | head.S | 61 # on the PC164 (at least), since that PALcode manages the interrupt
|