| /linux/include/linux/atomic/ |
| H A D | atomic-instrumented.h | 25 * Unsafe to use in noinstr code; use raw_atomic_read() there. 42 * Unsafe to use in noinstr code; use raw_atomic_read_acquire() there. 60 * Unsafe to use in noinstr code; use raw_atomic_set() there. 78 * Unsafe to use in noinstr code; use raw_atomic_set_release() there. 97 * Unsafe to use in noinstr code; use raw_atomic_ad [all...] |
| H A D | atomic-long.h | 30 * Safe to use in noinstr code; prefer atomic_long_read() elsewhere. 50 * Safe to use in noinstr code; prefer atomic_long_read_acquire() elsewhere. 71 * Safe to use in noinstr code; prefer atomic_long_set() elsewhere. 92 * Safe to use in noinstr code; prefer atomic_long_set_release() elsewhere. 113 * Safe to use in noinstr code; prefer atomic_long_add() elsewhere. 134 * Safe to use in noinstr code; prefer atomic_long_add_return() elsewhere. 155 * Safe to use in noinstr code; prefer atomic_long_add_return_acquire() elsewhere. 176 * Safe to use in noinstr code; prefer atomic_long_add_return_release() elsewhere. 197 * Safe to use in noinstr code; prefer atomic_long_add_return_relaxed() elsewhere. 218 * Safe to use i [all...] |
| H A D | atomic-arch-fallback.h | 450 * Safe to use in noinstr code; prefer atomic_read() elsewhere. 466 * Safe to use in noinstr code; prefer atomic_read_acquire() elsewhere. 496 * Safe to use in noinstr code; prefer atomic_set() elsewhere. 513 * Safe to use in noinstr code; prefer atomic_set_release() elsewhere. 539 * Safe to use in noinstr code; prefer atomic_add() elsewhere. 556 * Safe to use in noinstr code; prefer atomic_add_return() elsewhere. 583 * Safe to use in noinstr code; prefer atomic_add_return_acquire() elsewhere. 610 * Safe to use in noinstr code; prefer atomic_add_return_release() elsewhere. 636 * Safe to use in noinstr code; prefer atomic_add_return_relaxed() elsewhere. 659 * Safe to use i [all...] |
| /linux/drivers/gpu/drm/msm/registers/ |
| H A D | rules-fd.xsd | 65 <attribute name="name" type="string" use="required" /> 66 <attribute name="email" type="string" use="required" /> 73 <attribute name="name" type="string" use="required" /> 92 <attribute name="file" type="string" use="required" /> 105 <attribute name="year" type="nonNegativeInteger" use="optional" /> 117 <attribute name="name" type="NMTOKEN" use="required" /> 118 <attribute name="prefix" type="NMTOKENS" use="optional" /> 119 <attribute name="width" type="rng:DomainWidth" use="optional" /> 120 <attribute name="varset" type="NMTOKEN" use="optional" /> 121 <attribute name="variants" type="string" use="optional" /> [all …]
|
| /linux/rust/kernel/ |
| H A D | prelude.rs | 11 //! use kernel::prelude::*; 15 pub use core::{ 20 pub use ::ffi::{ 25 pub use crate::alloc::{flags::*, Box, KBox, KVBox, KVVec, KVec, VBox, VVec, Vec}; 28 pub use macros::{export, fmt, kunit_tests, module, vtable}; 30 pub use pin_init::{init, pin_data, pin_init, pinned_drop, InPlaceWrite, Init, PinInit, Zeroable}; 32 pub use super::{build_assert, build_error}; 36 pub use super::dbg; 37 pub use super::{dev_alert, dev_crit, dev_dbg, dev_emerg, dev_err, dev_info, dev_notice, dev_warn}; 38 pub use super::{pr_alert, pr_crit, pr_debug, pr_emerg, pr_err, pr_info, pr_notice, pr_warn}; [all …]
|
| H A D | sync.rs | 8 use crate::prelude::*; 9 use crate::types::Opaque; 10 use pin_init; 25 pub use arc::{Arc, ArcBorrow, UniqueArc}; 26 pub use completion::Completion; 27 pub use condvar::{new_condvar, CondVar, CondVarTimeoutResult}; 28 pub use lock::global::{global_lock, GlobalGuard, GlobalLock, GlobalLockBackend, GlobalLockedBy}; 29 pub use lock::mutex::{new_mutex, Mutex, MutexGuard}; 30 pub use lock::spinlock::{new_spinlock, SpinLock, SpinLockGuard}; 31 pub use locked_b [all...] |
| /linux/rust/syn/ |
| H A D | export.rs | 4 pub use std::clone::Clone; 6 pub use std::cmp::{Eq, PartialEq}; 8 pub use std::concat; 10 pub use std::default::Default; 12 pub use std::fmt::Debug; 14 pub use std::hash::{Hash, Hasher}; 16 pub use std::marker::Copy; 18 pub use std::option::Option::{None, Some}; 20 pub use std::result::Result::{Err, Ok}; 22 pub use std::stringify; [all …]
|
| H A D | derive.rs | 3 use crate::attr::Attribute; 4 use crate::data::{Fields, FieldsNamed, Variant}; 5 use crate::generics::Generics; 6 use crate::ident::Ident; 7 use crate::punctuated::Punctuated; 8 use crate::restriction::Visibility; 9 use crate::token; 70 use crate::attr::Attribute; 71 use crate::data::{Fields, FieldsNamed, Variant}; 72 use crate::derive::{Data, DataEnum, DataStruct, DataUnion, DeriveInput}; [all …]
|
| H A D | file.rs | 3 use crate::attr::Attribute; 4 use crate::item::Item; 19 /// use std::env; 20 /// use std::fs; 21 /// use std::process; 54 /// Use( 58 /// use_token: Use, 90 use crate::attr::Attribute; 91 use crate::error::Result; 92 use crate::file::File; [all …]
|
| H A D | mac.rs | 4 use crate::error::Result; 6 use crate::parse::{Parse, ParseStream, Parser}; 7 use crate::path::Path; 8 use crate::token::{Brace, Bracket, Paren}; 9 use proc_macro2::extra::DelimSpan; 11 use proc_macro2::Delimiter; 12 use proc_macro2::TokenStream; 14 use proc_macro2::TokenTree; 65 /// use syn::{parse_quote, Expr, ExprLit, Ident, Lit, LitStr, Macro, Token}; 66 /// use syn::ext::IdentExt; [all …]
|
| H A D | ext.rs | 5 use crate::buffer::Cursor; 6 use crate::error::Result; 7 use crate::parse::ParseStream; 8 use crate::parse::Peek; 9 use crate::sealed::lookahead; 10 use crate::token::CustomToken; 11 use proc_macro2::Ident; 26 /// use syn::{Error, Ident, Result, Token}; 27 /// use syn::ext::IdentExt; 28 /// use syn::parse::ParseStream; [all …]
|
| /linux/tools/perf/Documentation/ |
| H A D | tips.txt | 11 Use parent filter to see specific call path: perf report -p <regex> 14 Use --symfs <dir> if your symbol files are in non-standard locations 16 To see call chains by final symbol taking CPU time (bottom up) use perf report -G 20 To show assembler sample context control flow use perf record -b / perf report --samples 10 and the… 21 To adjust path to source files to local file system use perf report --prefix=... --prefix-strip=... 23 Show estimate cycles per function and IPC in annotate use perf record -b ... ; perf report --total-… 36 To show information about system the samples were collected on use perf report --header 37 To only collect call graph on one event use perf record -e cpu/cpu-cycles,callgraph=1/,branches ; p… 38 To set sampling period of individual events use perf record -e cpu/cpu-cycles,period=100001/,cpu/br… 39 To group events which need to be collected together for accuracy use {}: perf record -e {cycles,bra… [all …]
|
| /linux/drivers/usb/serial/ |
| H A D | Kconfig | 16 supported, and on how to use them. 27 If you say Y here, it will be possible to use a USB to serial 41 kernel will automatically use the first USB to serial converter 49 Say Y here if you want to use the generic USB serial driver. Please 58 Say Y here to use the USB serial "simple" driver. This driver 82 Say Y here if you want to use USB AIRcable Bluetooth Dongle. 90 Say Y here if you want to use a ARK Micro 3116 USB to Serial 99 Say Y here if you want to use a Belkin USB Serial single port 109 Say Y here if you want to use a Winchiphead CH341 single port 119 Say Y here if you want to use a ConnectTech WhiteHEAT 4 port [all …]
|
| /linux/drivers/gpu/drm/tyr/ |
| H A D | driver.rs | 3 use kernel::clk::Clk; 4 use kernel::clk::OptionalClk; 5 use kernel::device::Bound; 6 use kernel::device::Core; 7 use kernel::device::Device; 8 use kernel::devres::Devres; 9 use kernel::drm; 10 use kernel::drm::ioctl; 11 use kernel::io::poll; 12 use kernel::new_mutex; [all …]
|
| /linux/Documentation/userspace-api/media/v4l/ |
| H A D | colorspaces-defs.rst | 28 two basic ways to do it: Divide the angular value by 2 (0-179), or use the 88 - Use the default transfer function as defined by the colorspace. 90 - Use the Rec. 709 transfer function. 92 - Use the sRGB transfer function. 94 - Use the opRGB transfer function. 96 - Use the SMPTE 240M transfer function. 98 - Do not use a transfer function (i.e. use linear RGB values). 100 - Use the DCI-P3 transfer function. 102 - Use the SMPTE 2084 transfer function. See :ref:`xf-smpte-2084`. 117 - Use the default Y'CbCr encoding as defined by the colorspace. [all …]
|
| /linux/include/uapi/linux/ |
| H A D | cryptouser.h | 35 CRYPTO_MSG_GETSTAT, /* No longer supported, do not use. */ 57 CRYPTOCFGA_STAT_LARVAL, /* No longer supported, do not use. */ 58 CRYPTOCFGA_STAT_HASH, /* No longer supported, do not use. */ 59 CRYPTOCFGA_STAT_BLKCIPHER, /* No longer supported, do not use. */ 60 CRYPTOCFGA_STAT_AEAD, /* No longer supported, do not use. */ 61 CRYPTOCFGA_STAT_COMPRESS, /* No longer supported, do not use. */ 62 CRYPTOCFGA_STAT_RNG, /* No longer supported, do not use. */ 63 CRYPTOCFGA_STAT_CIPHER, /* No longer supported, do not use. */ 64 CRYPTOCFGA_STAT_AKCIPHER, /* No longer supported, do not use. */ 65 CRYPTOCFGA_STAT_KPP, /* No longer supported, do not use. */ [all …]
|
| /linux/include/linux/platform_data/ |
| H A D | adp8870.h | 118 u8 l1_daylight_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */ 119 u8 l1_daylight_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */ 120 u8 l2_bright_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */ 121 u8 l2_bright_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */ 122 u8 l3_office_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */ 123 u8 l3_office_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */ 124 u8 l4_indoor_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */ 125 u8 l4_indor_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */ 126 u8 l5_dark_max; /* use BL_CUR_mA(I) 0 <= I <= 30 mA */ 127 u8 l5_dark_dim; /* typ = 0, use BL_CUR_mA(I) 0 <= I <= 30 mA */ [all …]
|
| /linux/drivers/video/fbdev/via/ |
| H A D | tblDPASetting.c | 15 /* LCK/VCK < 30000000 will use this value */ 18 /* 30000000 < LCK/VCK < 50000000 will use this value */ 21 /* 50000000 < LCK/VCK < 70000000 will use this value */ 24 /* 70000000 < LCK/VCK < 100000000 will use this value */ 27 /* 100000000 < LCK/VCK < 15000000 will use this value */ 30 /* 15000000 < LCK/VCK will use this value */ 40 /* LCK/VCK < 30000000 will use this value */ 42 /* 30000000 < LCK/VCK < 50000000 will use this value */ 44 /* 50000000 < LCK/VCK < 70000000 will use this value */ 46 /* 70000000 < LCK/VCK < 100000000 will use this value */ [all …]
|
| /linux/Documentation/devicetree/bindings/ |
| H A D | writing-bindings.rst | 24 - DO use node names matching the class of the device. Many standard names are 34 - DON'T treat device node names as a stable ABI, but instead use phandles or 38 - DON'T use 'syscon' alone without a specific compatible string. A 'syscon' 42 - DON'T use 'simple-mfd' compatible for non-trivial devices, where children 53 - DON'T use wildcards or device-family names in compatible strings. 55 - DO use fallback compatibles when devices are the same as or a superset of 60 - DO use a SoC-specific compatible for all SoC devices, followed by a 64 - DON'T use bus suffixes to encode the type of interface device is using. 68 - DO use a vendor prefix on device-specific property names. Consider if 78 - DO use common property unit suffixes for properties with scientific units. [all …]
|
| /linux/drivers/gpu/drm/nouveau/nvkm/core/ |
| H A D | subdev.c | 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 63 action = subdev->use.enabled ? "fini" : "reset"; in nvkm_subdev_fini() 83 subdev->use.enabled = false; in nvkm_subdev_fini() 142 if (subdev->use.enabled) { in nvkm_subdev_init_() 154 subdev->use.enabled = true; in nvkm_subdev_init_() 174 mutex_lock(&subdev->use.mutex); in nvkm_subdev_init() 175 if (refcount_read(&subdev->use.refcount) == 0) { in nvkm_subdev_init() 177 mutex_unlock(&subdev->use.mutex); in nvkm_subdev_init() 182 mutex_unlock(&subdev->use.mutex); in nvkm_subdev_init() [all …]
|
| /linux/drivers/gpu/drm/exynos/ |
| H A D | Kconfig | 26 Choose this option if you want to use Exynos FIMD for DRM. 31 Choose this option if you want to use Exynos5433 DECON for DRM. 37 Choose this option if you want to use Exynos DECON for DRM. 42 Choose this option if you want to use Exynos Mixer for DRM. 47 Choose this option if you want to use Exynos VIDI for DRM. 84 Choose this option if you want to use Exynos HDMI for DRM. 90 Choose this option if you want to use Exynos MIC for DRM. 98 Choose this option if you want to use Exynos G2D for DRM. 107 Choose this option if you want to use Exynos FIMC for DRM. 113 Choose this option if you want to use Exynos Rotator for DRM. [all …]
|
| /linux/drivers/media/rc/ |
| H A D | Kconfig | 51 remote control and you would like to use it with a raw IR 52 receiver, or if you wish to use an encoder to transmit this IR. 68 Windows Media Center Edition, which you would like to use with 178 Say Y if you want to use GPIO based IR Receiver. 199 Say Y here if you want to use hisilicon hix5hd2 remote control. 209 Say Y here if you want to use the IgorPlug-USB IR Receiver by 222 Say Y here if you want to use the IguanaWorks USB IR Transceiver. 224 change the ID or the pin config, use the user space driver from 236 Say Y here if you want to use a SoundGraph iMON (aka Antec Veris) 246 Say Y here if you want to use a SoundGraph iMON IR Receiver, [all …]
|
| /linux/include/media/ |
| H A D | v4l2-mc.h | 38 * hardware should not use this routine, as it will not build the right graph. 43 * v4l_enable_media_source() - Hold media source for exclusive use 49 * media source is free for use. The enable_source handler is 75 * v4l_vb2q_enable_media_tuner - Hold media source for exclusive use 143 * v4l2_pipeline_pm_get - Increase the use count of a pipeline 146 * THIS FUNCTION IS DEPRECATED. DO NOT USE IN NEW DRIVERS. USE RUNTIME PM 149 * Update the use count of all entities in the pipeline and power entities on. 152 * struct media_entity.use_count to track the power status. The use 160 * v4l2_pipeline_pm_put - Decrease the use count of a pipeline 163 * THIS FUNCTION IS DEPRECATED. DO NOT USE IN NEW DRIVERS. USE RUNTIME PM [all …]
|
| /linux/arch/m68k/include/asm/ |
| H A D | MC68VZ328.h | 380 #define PB_CSB0 0x01 /* Use CSB0 as PB[0] */ 381 #define PB_CSB1 0x02 /* Use CSB1 as PB[1] */ 382 #define PB_CSC0_RAS0 0x04 /* Use CSC0/RAS0 as PB[2] */ 383 #define PB_CSC1_RAS1 0x08 /* Use CSC1/RAS1 as PB[3] */ 384 #define PB_CSD0_CAS0 0x10 /* Use CSD0/CAS0 as PB[4] */ 385 #define PB_CSD1_CAS1 0x20 /* Use CSD1/CAS1 as PB[5] */ 386 #define PB_TIN_TOUT 0x40 /* Use TIN/TOUT as PB[6] */ 387 #define PB_PWMO 0x80 /* Use PWMO as PB[7] */ 404 #define PC_LD0 0x01 /* Use LD0 as PC[0] */ 405 #define PC_LD1 0x02 /* Use LD1 as PC[1] */ [all …]
|
| /linux/drivers/tty/serial/ |
| H A D | Kconfig | 37 Say Y here if you wish to use an AMBA PrimeCell UART as the system 65 Say Y here if you wish to use an AMBA PrimeCell UART as the system 121 If you say Y here, it will be possible to use a serial port as the 145 Say Y here if you wish to use an on-chip UART on a Atmel 155 Say Y here if you wish to use the PDC to do DMA transfers to 157 actually use DMA transfers, make sure that the use_dma_tx 163 this matters don't use DMA. 177 To use this, you should create suitable ttyATn device nodes in 196 Say Y here if you wish to use a Amlogic MesonX UART as the 246 Allow selection of the S3C24XX on-board serial ports for use as [all …]
|