Home
last modified time | relevance | path

Searched refs:enables (Results 1 – 25 of 1578) sorted by relevance

12345678910>>...64

/external/rust/android-crates-io/crates/vulkano/autogen/
Dspirv_reqs.rs52 enables: Vec<(Enable, String)>, field
70 let items = members.iter().map(|SpirvReqsMember { name, enables }| { in spirv_reqs_output()
78 if enables.is_empty() { in spirv_reqs_output()
83 let enables_items = enables.iter().map(|(enable, _description)| match enable { in spirv_reqs_output()
110 let description_items = enables.iter().map(|(_enable, description)| description); in spirv_reqs_output()
154 let mut enables: Vec<_> = ext_or_cap.enables.iter().filter_map(make_enable).collect(); in spirv_capabilities_members() localVariable
155 enables.dedup(); in spirv_capabilities_members()
184 entry.into_mut().enables.extend(enables); in spirv_capabilities_members()
189 enables, in spirv_capabilities_members()
202 let enables: Vec<_> = ext_or_cap.enables.iter().filter_map(make_enable).collect(); in spirv_extensions_members() localVariable
[all …]
/external/rust/android-crates-io/crates/spin/
DREADME.md73 - `mutex` enables the `Mutex` type.
75 - `spin_mutex` enables the `SpinMutex` type.
77 - `ticket_mutex` enables the `TicketMutex` type.
83 - `rwlock` enables the `RwLock` type.
85 - `once` enables the `Once` type.
87 - `lazy` enables the `Lazy` type.
89 - `barrier` enables the `Barrier` type.
91 - `lock_api` enables support for [`lock_api`](https://crates.io/crates/lock_api)
93 - `std` enables support for thread yielding instead of spinning.
95 - `portable_atomic` enables usage of the `portable-atomic` crate
/external/libcxx/docs/DesignDocs/
DDebugMode.rst13 Libc++ provides a debug mode that enables assertions meant to detect incorrect
26 Defining ``_LIBCPP_DEBUG`` to ``0`` or greater enables most of libc++'s
27 assertions. Defining ``_LIBCPP_DEBUG`` to ``1`` enables "iterator debugging"
71 Libc++'s debug mode offers two levels of checking. The first enables various
72 precondition checks throughout libc++. The second additionally enables
/external/coreboot/src/soc/mediatek/mt8173/
DKconfig41 This option enables I2C related debug messages.
47 This option enables PMIC related debug messages.
53 This option enables PMIC WRAP related debug messages.
/external/e2fsprogs/tests/f_yes/
Dexpect26 Clear ('a' enables 'yes' to all) <y>? yes
28 Clear ('a' enables 'yes' to all) <y>? yes
30 Clear ('a' enables 'yes' to all) <y>? yes
33 Inode 12 ref count is 34463, should be 1. Fix ('a' enables 'yes' to all) <y>? yes
/external/coreboot/payloads/libpayload/vboot/
DKconfig8 This option enables compiling and building vboot libraries vboot_fw and tlcl.
23 This option enables TPM 2.0 support in vboot. Disabling it allows using TPM 1.2.
31 This option enables SHA256 implementation using x86 SHA processor extension
50 This option enables SHA256 implementation using ARMv8 Crypto Extension.
/external/libpng/scripts/
Dpnglibconf.dfa33 # option <name> [requires ...] [if ...] [enables ...] [disabled]
36 # chunk <name> [requires ...] [enables ...] [disabled]
39 # WRITE_something for write, but the enables list members are
40 # used as given (e.g. enables GAMMA just expands to that on the
235 option ARM_NEON_API disabled requires ALIGNED_MEMORY enables SET_OPTION,
266 option POWERPC_VSX_API disabled enables SET_OPTION,
298 option MIPS_MSA_API disabled requires ALIGNED_MEMORY enables SET_OPTION,
330 option MIPS_MMI_API disabled requires ALIGNED_MEMORY enables SET_OPTION,
435 option DISABLE_ADLER32_CHECK requires READ enables SET_OPTION disabled
547 option READ enables READ_INTERLACING SET_OPTION
[all …]
/external/trusty/arm-trusted-firmware/docs/perf/
Dperformance-monitoring-unit.rst84 - If equal to the ``P`` bit it enables the associated ``PMEVCNTR<n>`` at
97 - If different to the ``NSH`` bit it enables the associated ``PMEVCNTR<n>``
104 - If equal to the ``P`` bit it enables the associated ``PMEVCNTR<n>`` at
119 - Setting bit ``P[n]`` to ``1`` enables counter ``PMEVCNTR<n>``.
127 - If set to ``1`` enables the cycle counter ``PMCCNTR``.
/external/arm-trusted-firmware/docs/perf/
Dperformance-monitoring-unit.rst84 - If equal to the ``P`` bit it enables the associated ``PMEVCNTR<n>`` at
97 - If different to the ``NSH`` bit it enables the associated ``PMEVCNTR<n>``
104 - If equal to the ``P`` bit it enables the associated ``PMEVCNTR<n>`` at
119 - Setting bit ``P[n]`` to ``1`` enables counter ``PMEVCNTR<n>``.
127 - If set to ``1`` enables the cycle counter ``PMCCNTR``.
/external/trace-cmd/Documentation/trace-cmd/
Dtrace-cmd-stack.1.txt14 The trace-cmd(1) stack enables the Ftrace stack tracer within the kernel.
15 The stack tracer enables the function tracer and at each function call
29 the log level to specific value enables all logs from that and all previous levels. The level will
/external/coreboot/src/soc/mediatek/common/
DKconfig30 This option enables DRAM calibration with multiple frequencies (low,
54 This option enables DRAM data scramble, which can prevent DRAM data from
61 This option enables memory basic compare test to verify the DRAM read
68 This option enables four channel configuration for DPM.
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/rand-0.8.5/
DREADME.md114 - `std` enables functionality dependent on the `std` lib
115 - `alloc` (implied by `std`) enables functionality requiring an allocator
118 - `std_rng` enables inclusion of `StdRng`, `thread_rng` and `random`
123 - `log` enables logging via the `log` crate
127 - `small_rng` enables inclusion of the `SmallRng` PRNG
128 - `nightly` enables some optimizations requiring nightly Rust
129 - `simd_support` (experimental) enables sampling of SIMD values
131 - `min_const_gen` enables generating random arrays of
DCargo.toml.orig31 nightly = [] # enables performance optimizations requiring nightly rust
35 # enables functionality expected to be available on a standard platform.
38 # Option: "alloc" enables support for Vec and Box when not using "std"
/external/rust/android-crates-io/crates/rand/
DREADME.md114 - `std` enables functionality dependent on the `std` lib
115 - `alloc` (implied by `std`) enables functionality requiring an allocator
118 - `std_rng` enables inclusion of `StdRng`, `thread_rng` and `random`
123 - `log` enables logging via the `log` crate
127 - `small_rng` enables inclusion of the `SmallRng` PRNG
128 - `nightly` enables some optimizations requiring nightly Rust
129 - `simd_support` (experimental) enables sampling of SIMD values
131 - `min_const_gen` enables generating random arrays of
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/rand-0.8.5/
DREADME.md114 - `std` enables functionality dependent on the `std` lib
115 - `alloc` (implied by `std`) enables functionality requiring an allocator
118 - `std_rng` enables inclusion of `StdRng`, `thread_rng` and `random`
123 - `log` enables logging via the `log` crate
127 - `small_rng` enables inclusion of the `SmallRng` PRNG
128 - `nightly` enables some optimizations requiring nightly Rust
129 - `simd_support` (experimental) enables sampling of SIMD values
131 - `min_const_gen` enables generating random arrays of
DCargo.toml.orig31 nightly = [] # enables performance optimizations requiring nightly rust
35 # enables functionality expected to be available on a standard platform.
38 # Option: "alloc" enables support for Vec and Box when not using "std"
/external/rust/android-crates-io/crates/vulkano/src/command_buffer/commands/
Ddynamic_state.rs106 pub fn set_color_write_enable<I>(&mut self, enables: I) -> &mut Self in set_color_write_enable()
111 let enables = enables.into_iter(); in set_color_write_enable() localVariable
113 self.validate_set_color_write_enable(&enables).unwrap(); in set_color_write_enable()
116 self.inner.set_color_write_enable(enables); in set_color_write_enable()
124 enables: &impl ExactSizeIterator, in validate_set_color_write_enable()
156 if enables.len() != color_blend_state.attachments.len() { in validate_set_color_write_enable()
159 provided_count: enables.len() as u32, in validate_set_color_write_enable()
1751 pub unsafe fn set_color_write_enable(&mut self, enables: impl IntoIterator<Item = bool>) { in set_color_write_enable()
1753 enables: Mutex<Option<I>>, in set_color_write_enable() field
1765 out.set_color_write_enable(self.enables.lock().take().unwrap()); in set_color_write_enable()
[all …]
/external/coreboot/payloads/libpayload/libcbfs/
DKconfig15 This option enables additional CBFS related debug messages.
29 This option enables hash verification of CBFS files in RO (COREBOOT) and RW regions.
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/rand_core-0.6.4/
DCargo.toml.orig28 alloc = [] # enables Vec and Box support without std
29 serde1 = ["serde"] # enables serde for BlockRng wrapper
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/rand_core-0.6.4/
DCargo.toml.orig28 alloc = [] # enables Vec and Box support without std
29 serde1 = ["serde"] # enables serde for BlockRng wrapper
/external/mesa3d/src/vulkan/util/
Dvk_physical_device_spirv_caps_gen.py90 enables = cap.findall('enable')
92 lst += [process_enable(x) for x in enables]
/external/mesa3d/docs/
Du_trace.rst38 enables Perfetto instrumentation prior to connecting, Perfetto
42 enables marker instrumentation, will print trace markers into
48 enables indirect data capture for some of the tracepoints (like
/external/openthread/tests/toranj/
DREADME.md7 - `toranj-cli` which enables testing of OpenThread using its CLI interface.
8 - `toranj-ncp` which enables testing of the combined behavior of OpenThread (in NCP mode), spinel i…
/external/rust/android-crates-io/crates/document-features/
DREADME.md20 ## The foo feature enables the `foo` functions
22 ## The bar feature enables the [`bar`] module
/external/tensorflow/tensorflow/core/profiler/
Dprofiler_options.proto35 // - Level 1 enables tracing of only user instrumented (or default) TraceMe.
36 // - Level 2 enables tracing of all level 1 TraceMe(s) and instrumented high
39 // - Level 3 enables tracing of all level 2 TraceMe(s) and more verbose

12345678910>>...64