Home
last modified time | relevance | path

Searched full:use (Results 1 – 25 of 9270) sorted by relevance

12345678910>>...371

/linux/drivers/gpu/drm/msm/registers/
H A Drules-fd.xsd65 <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 Dprelude.rs11 //! 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 supe
[all...]
H A Dsync.rs8 use crate::prelude::*;
9 use crate::types::Opaque;
10 use pin_init;
24 pub use arc::{Arc, ArcBorrow, UniqueArc};
25 pub use completion::Completion;
26 pub use condvar::{new_condvar, CondVar, CondVarTimeoutResult};
27 pub use lock::global::{global_lock, GlobalGuard, GlobalLock, GlobalLockBackend, GlobalLockedBy};
28 pub use lock::mutex::{new_mutex, Mutex, MutexGuard};
29 pub use lock::spinlock::{new_spinlock, SpinLock, SpinLockGuard};
30 pub use locked_by::LockedBy;
[all …]
/linux/rust/syn/
H A Dexport.rs4 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 Dderive.rs3 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 Dfile.rs3 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 Dmac.rs4 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 Dext.rs5 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 …]
H A Dlifetime.rs4 use crate::lookahead;
5 use proc_macro2::{Ident, Span};
6 use std::cmp::Ordering;
7 use std::fmt::{self, Display};
8 use std::hash::{Hash, Hasher};
33 /// # use proc_macro2::Span;
34 /// # use syn::Lifetime;
127 use crate::error::Result;
128 use crate::lifetime::Lifetime;
129 use crate::parse::{Parse, ParseStream};
[all …]
H A Dlookahead.rs3 use crate::buffer::Cursor;
4 use crate::error::{self, Error};
5 use crate::sealed::lookahead::Sealed;
6 use crate::span::IntoSpans;
7 use crate::token::{CustomToken, Token};
8 use proc_macro2::{Delimiter, Span};
9 use std::cell::RefCell;
16 /// go ahead and use `ParseStream::peek` instead.
18 /// Use [`ParseStream::lookahead1`] to construct this object.
29 /// use syn::{ConstParam, Ident, Lifetime, LifetimeParam, Result, Token, TypeParam};
[all …]
H A Dstmt.rs3 use crate::attr::Attribute;
4 use crate::expr::Expr;
5 use crate::item::Item;
6 use crate::mac::Macro;
7 use crate::pat::Pat;
8 use crate::token;
84 use crate::attr::Attribute;
85 use crate::classify;
86 use crate::error::Result;
87 use crate::expr::{Expr, ExprBlock, ExprMacro};
[all …]
H A Drestriction.rs3 use crate::path::Path;
4 use crate::token;
63 use crate::error::Result;
64 use crate::ext::IdentExt as _;
65 use crate::ident::Ident;
66 use crate::parse::discouraged::Speculative as _;
67 use crate::parse::{Parse, ParseStream};
68 use crate::path::Path;
69 use crate::restriction::{VisRestricted, Visibility};
70 use crate::token;
[all …]
/linux/tools/perf/Documentation/
H A Dtips.txt11 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 then browse context
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-cycles
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 ; perf report --show-ref-call-graph
38 To set sampling period of individual events use perf record -e cpu/cpu-cycles,period=100001/,cpu/branches,period=10001/ ...
39 To group events which need to be collected together for accuracy use {}
[all...]
/linux/drivers/usb/serial/
H A DKconfig16 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/Documentation/userspace-api/media/v4l/
H A Dcolorspaces-defs.rst28 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/drivers/video/fbdev/via/
H A DtblDPASetting.c15 /* 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/include/linux/platform_data/
H A Dadp8870.h118 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/gpu/drm/nouveau/nvkm/core/
H A Dsubdev.c7 * 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
57 const char *action = suspend ? "suspend" : subdev->use.enabled ? "fini" : "reset"; in nvkm_subdev_fini()
71 subdev->use.enabled = false; in nvkm_subdev_fini()
130 if (subdev->use.enabled) { in nvkm_subdev_init_()
142 subdev->use.enabled = true; in nvkm_subdev_init_()
162 mutex_lock(&subdev->use.mutex); in nvkm_subdev_init()
163 if (refcount_read(&subdev->use.refcount) == 0) { in nvkm_subdev_init()
165 mutex_unlock(&subdev->use.mutex); in nvkm_subdev_init()
170 mutex_unlock(&subdev->use.mutex); in nvkm_subdev_init()
[all …]
/linux/drivers/clk/qcom/
H A DKconfig38 Say Y if you want to use peripheral devices such as UART, SPI,
47 Say Y if you want to use peripheral devices such as USB/PCIe/EDP.
74 Say Y if you want to use peripheral devices such as UART, SPI, I2C,
92 Say Y if you want to use peripheral devices such as SD/UFS.
196 Say Y if you want to use peripheral devices such as UART, SPI,
251 Say Y if you want to use peripheral devices such as UART, SPI,
259 Say Y if you want to use peripheral devices such as UART, SPI,
267 Say Y if you want to use peripheral devices such as UART, SPI,
275 Say Y if you want to use peripheral devices such as UART, SPI,
282 Say Y if you want to use peripheral devices such as UART, SPI,
[all …]
/linux/include/media/
H A Dv4l2-mc.h38 * 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 DMC68VZ328.h380 #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/w1/slaves/
H A DKconfig23 Say Y or M here if you want to use a DS2405 1-wire
31 Say Y here if you want to use a 1-wire
47 Say Y here if you want to use a 1-wire
54 Say Y or M here if you want to use a 1-wire
66 Say Y here if you want to use a 1-wire
72 Say Y here if you want to use a 1-wire
80 Say Y here if you want to use a 1-wire 256bit EEPROM
88 Say Y here if you want to use a 1-wire
94 Say Y here if you want to use a 1-wire
109 Say Y here if you want to use a 1-wire
[all …]
/linux/Documentation/arch/arm64/
H A Dacpi_object_usage.rst68 Optional, not currently supported, with no real use-case for an
206 ARM-specific error sources have been defined; please use those or the
208 Bridge), or use type 9 (Generic Hardware Error Source). Firmware first
258 descriptions and power states on ARM platforms should use the DSDT
317 use. Since these are not meant to be of general use but are limited
318 to very specific end users, they are not recommended for use and are
325 Recommend for use on arm64; use of PCC is recommended when using CPPC
428 for use with devices that can be added to a running system, but can
463 Optional, not currently supported. No known use case for arm64,
528 _CID 6.1.2 Use as needed, see also _HID.
[all …]
/linux/arch/nios2/include/asm/
H A Dasm-macros.h16 * You cannnot use the same register for reg1 & reg2.
36 * It is safe to use the same register for reg1 & reg2.
55 * It is safe to use the same register for reg1 & reg2.
75 * It is safe to use the same register for reg1 & reg2.
94 * It is safe to use the same register for reg1 & reg2.
106 * It is safe to use the same register for reg1 & reg2.
118 * It is NOT safe to use the same register for reg1 & reg2.
139 * It is NOT safe to use the same register for reg1 & reg2.
160 * It is NOT safe to use the same register for reg1 & reg2.
182 * It is NOT safe to use the same register for reg1 & reg2.
[all …]
/linux/Documentation/process/
H A Dcoding-style.rst72 Don't use commas to avoid using braces:
79 Always use braces for multiple statements:
197 Do not unnecessarily use braces where a single statement will do.
214 statement; in the latter case use braces in both branches:
225 Also, use braces when a loop contains more than a single simple statement:
237 Linux kernel style for use of spaces depends (mostly) on
238 function-versus-keyword usage. Use a space after (most) keywords. The
244 So use a space after these keywords::
264 preferred use of ``*`` is adjacent to the data name or function name and not
274 Use one space around (on each side of) most binary and ternary operators,
[all …]

12345678910>>...371