Home
last modified time | relevance | path

Searched +full:- +full:- +full:allow +full:- +full:dirty (Results 1 – 25 of 301) sorted by relevance

12345678910>>...13

/third_party/rust/rust/tests/incremental/
Ddirty_clean.rs2 // compile-flags: -Z query-dep-graph
4 #![allow(warnings)]
7 // Sanity check for the dirty-clean system. Give the opposite
15 pub fn x() -> usize { in x()
20 pub fn x() -> u32 { in x()
33 //[cfail2]~^ ERROR `hir_owner(y)` should be dirty but is not in y()
34 //[cfail2]~| ERROR `hir_owner_nodes(y)` should be dirty but is not in y()
35 //[cfail2]~| ERROR `generics_of(y)` should be dirty but is not in y()
36 //[cfail2]~| ERROR `predicates_of(y)` should be dirty but is not in y()
37 //[cfail2]~| ERROR `type_of(y)` should be dirty but is not in y()
[all …]
Dunchecked_dirty_clean.rs2 // compile-flags: -Z query-dep-graph
4 #![allow(warnings)]
7 // Sanity check for the dirty-clean system. We add #[rustc_clean]
/third_party/rust/rust/tests/ui/dep-graph/
Ddep-graph-check-attr.rs1 // Test that using rustc_clean/dirty/if_this_changed/then_this_would_need
2 // are forbidden when `-Z query-dep-graph` is not enabled.
5 #![allow(dead_code)]
6 #![allow(unused_variables)]
8 #[rustc_clean(hir_owner)] //~ ERROR attribute requires -Z query-dep-graph
11 #[rustc_if_this_changed(hir_owner)] //~ ERROR attribute requires -Z query-dep-graph
16 #[rustc_clean(hir_owner)] //~ ERROR attribute requires -Z query-dep-graph
19 #[rustc_then_this_would_need(variances_of)] //~ ERROR attribute requires -Z query-dep-graph
/third_party/rust/rust/src/tools/clippy/clippy_dev/src/
Ddogfood.rs11 .args(["test", "--test", "dogfood"]) in dogfood()
12 .args(["--features", "internal"]) in dogfood()
13 .args(["--", "dogfood_clippy", "--nocapture"]); in dogfood()
17 dogfood_args.push("--fix"); in dogfood()
21 dogfood_args.push("--allow-dirty"); in dogfood()
25 dogfood_args.push("--allow-staged"); in dogfood()
Dmain.rs1 #![cfg_attr(feature = "deny-warnings", deny(warnings))]
2 // warn on lints, that are included in `rust-lang/rust`s bootstrap
20 matches.get_flag("allow-dirty"), in main()
21 matches.get_flag("allow-staged"), in main()
28 if matches.get_flag("print-only") { in main()
55 .get_one::<String>("rustc-repo-path") in main()
60 Some(("git-hook", matches)) => { in main()
64 setup::git_hook::install_hook(matches.get_flag("force-override")); in main()
67 Some(("vscode-tasks", matches)) => { in main()
71 setup::vscode::install_tasks(matches.get_flag("force-override")); in main()
[all …]
/third_party/skia/third_party/externals/angle2/doc/
DDirtyBits.md1 # Dirty Bits and State Changes
30 back-end as efficiently as possible.
32 ## Dirty Bits
36 notify the back-end when app changes front-end state. We decided to bundle changed state into
37 bitsets. Each 1 bit indicates a specific changed state value. We call these bitsets "*dirty bits*".
40 Each back-end handles state changes in a `syncState` implementation function that takes a dirty
41 bitset. See examples in the [GL back-end][GLSyncState], [D3D11 back-end][D3D11SyncState] and
42 [Vulkan back-end][VulkanSyncState].
44 Container objects such as Vertex Array Objects and Framebuffers also have their own OpenGL front-end
47 dirty bits and `syncState` methods. See [`gl::Framebuffer::DirtyBitType`][FBODirtyBits] and
[all …]
/third_party/openssl/doc/internal/man7/
DEVP_PKEY.pod5 EVP_PKEY - an internal description
32 internal key in the B<EVP_PKEY> is a pointer to the low-level key
43 =item provider-native origin
46 key data (see L<provider-keymgmt(7)>). The internal key in the
57 These two forms can never co-exist in the same B<EVP_PKEY>, the main
76 OpenSSL providers allow it for the following:
91 Every time the B<EVP_PKEY> internal key mutates, an internal dirty
92 count is incremented. The need for a dirty count is explained further
96 the L<EVP_KEYMGMT(3)>, the dirty count is maintained in the B<EVP_PKEY>
101 of OpenSSL's built-in L<EVP_PKEY_ASN1_METHOD(3)> implement this
[all …]
/third_party/mesa3d/src/amd/vulkan/meta/
Dradv_meta.c6 * SPDX-License-Identifier: MIT
22 cmd_buffer->state.flush_bits &= ~RADV_CMD_FLAG_START_PIPELINE_STATS; in radv_suspend_queries()
23 cmd_buffer->state.flush_bits |= RADV_CMD_FLAG_STOP_PIPELINE_STATS; in radv_suspend_queries()
27 if (cmd_buffer->state.active_pipeline_queries > 0) { in radv_suspend_queries()
28 state->active_emulated_pipeline_queries = cmd_buffer->state.active_emulated_pipeline_queries; in radv_suspend_queries()
29 cmd_buffer->state.active_emulated_pipeline_queries = 0; in radv_suspend_queries()
30 cmd_buffer->state.dirty |= RADV_CMD_DIRTY_SHADER_QUERY; in radv_suspend_queries()
34 if (cmd_buffer->state.active_occlusion_queries) { in radv_suspend_queries()
35 state->active_occlusion_queries = cmd_buffer->state.active_occlusion_queries; in radv_suspend_queries()
36 cmd_buffer->state.active_occlusion_queries = 0; in radv_suspend_queries()
[all …]
/third_party/mesa3d/src/gallium/drivers/etnaviv/
Detnaviv_texture.c2 * Copyright (c) 2012-2015 Etnaviv Project
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
39 #include "drm-uapi/drm_fourcc.h"
48 struct etna_screen *screen = ctx->screen; in etna_bind_sampler_states()
54 ctx->num_fragment_samplers = num_samplers; in etna_bind_sampler_states()
57 offset = screen->specs.vertex_sampler_offset; in etna_bind_sampler_states()
66 ctx->sampler[offset + idx] = samplers[idx]; in etna_bind_sampler_states()
68 ctx->active_samplers |= mask; in etna_bind_sampler_states()
70 ctx->active_samplers &= ~mask; in etna_bind_sampler_states()
73 ctx->dirty |= ETNA_DIRTY_SAMPLERS; in etna_bind_sampler_states()
[all …]
/third_party/FreeBSD/sbin/fsck_msdosfs/
Dext.h1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
48 extern int allow_mmap; /* allow the use of mmap() */
56 * Check the dirty flag. If the file system is clean, then return 1.
57 * Otherwise, return 0 (this includes the case of FAT12 file systems --
58 * they have no dirty flag, so they must be assumed to be unclean).
76 #define FSDIRTY 32 /* File system is dirty */
126 * Cross-check routines run after everything is completely in memory
/third_party/mesa3d/docs/relnotes/
D18.1.4.rst16 ----------------
20 SHA256: 8acd42e4ac4d1e96ed22344073b3d4fef03d10f225f4eaf3f88c001dfc10e2db mesa-18.1.4.tar.gz
21 SHA256: 3061488b5d85504092cf4343816cfb2d96f2ad9bc2edec31fc96933d184cf58b mesa-18.1.4.tar.xz
24 ------------
29 ---------
31 - `Bug 106906 <https://bugs.freedesktop.org/show_bug.cgi?id=106906>`__
32 - Failed to recongnize keyword “sampler2DRect” and
34 - `Bug 106928 <https://bugs.freedesktop.org/show_bug.cgi?id=106928>`__
35 - When starting a match Rocket League crashes on "Go"
36 - `Bug 107193 <https://bugs.freedesktop.org/show_bug.cgi?id=107193>`__
[all …]
/third_party/rust/rust/src/tools/rust-analyzer/.github/workflows/
Dpublish-libs.yaml1 name: publish-libs
6 - master
8 - "lib/**"
11 publish-libs:
13 runs-on: ubuntu-latest
15 - name: Checkout repository
18 fetch-depth: 0
20 - name: Install Rust toolchain
21 run: rustup update --no-self-update stable
23 - name: Install cargo-workspaces
[all …]
Dautopublish.yaml6 # - cron: "0 0 * * *" # midnight UTC
10 - release
15 runs-on: ubuntu-latest
17 - name: Checkout repository
20 fetch-depth: 0
22 - name: Install Rust toolchain
23 run: rustup update --no-self-update stable
25 - name: Install cargo-workspaces
26 run: cargo install cargo-workspaces
28 - name: Publish Crates
[all …]
/third_party/rust/rust/src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/
Dincorrect_case.rs13 // Diagnostic: incorrect-ident-case
15 // This diagnostic is triggered if an item name doesn't follow https://doc.rust-lang.org/1.0.0/styl…
16 pub(crate) fn incorrect_case(ctx: &DiagnosticsContext<'_>, d: &hir::IncorrectCase) -> Diagnostic { in incorrect_case()
18 "incorrect-ident-case", in incorrect_case()
29 fn fixes(ctx: &DiagnosticsContext<'_>, d: &hir::IncorrectCase) -> Option<Vec<Assist>> { in fixes()
57 pub fn some_fn(val: test_struct) -> test_struct { in test_rename_incorrect_case()
64 pub fn some_fn(val: TestStruct) -> TestStruct { in test_rename_incorrect_case()
72 pub fn some_fn(NonSnakeCase$0: u8) -> u8 { in test_rename_incorrect_case()
77 pub fn some_fn(non_snake_case: u8) -> u8 { in test_rename_incorrect_case()
85 pub fn SomeFn$0(val: u8) -> u8 { in test_rename_incorrect_case()
[all …]
/third_party/mesa3d/docs/vulkan/
Dgraphics-state.rst6 command buffer. No such helpers are provided for compute or ray-tracing
11 --------------
15 pointers to sub-structures for each of the different state categories.
46 .. code-block:: c
50 vk_graphics_pipeline_state_fill(&device->vk, &state, pCreateInfo,
55 The :c:struct:`vk_graphics_pipeline_all_state` structure exists to allow
62 .. code-block:: c
65 memset(&pipeline->state, 0, sizeof(pipeline->state));
67 for (uint32_t i = 0; i < lib_info->libraryCount; i++) {
68 VK_FROM_HANDLE(drv_graphics_pipeline_library, lib, lib_info->pLibraries[i]);
[all …]
/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_resource_buffer.c2 * Copyright (c) 2008-2024 Broadcom. All Rights Reserved.
5 * SPDX-License-Identifier: MIT
31 * Vertex- and index buffers need hardware backing. Constant buffers
32 * do on vgpu10. Staging texture-upload buffers do when they are
43 if (ss->sws->have_vgpu10) { in svga_buffer_needs_hw_storage()
45 * Driver-created upload const0- and staging texture upload buffers in svga_buffer_needs_hw_storage()
51 * Don't create hardware storage for state-tracker constant buffers, in svga_buffer_needs_hw_storage()
58 if (template->flags & PIPE_RESOURCE_FLAG_MAP_PERSISTENT) in svga_buffer_needs_hw_storage()
61 return !!(template->bind & bind_mask); in svga_buffer_needs_hw_storage()
69 struct svga_buffer *sbuf = svga_buffer(st->resource); in need_buf_readback()
[all …]
/third_party/ninja/src/
Dgraph.cc7 // http://www.apache.org/licenses/LICENSE-2.0
35 mtime_ = disk_interface->Stat(path_, err); in Stat()
36 if (mtime_ == -1) { in Stat()
58 // checked for dirty state, keep a queue of nodes to visit. in RecomputeDirty()
73 validation_nodes->insert(validation_nodes->end(), in RecomputeDirty()
85 Edge* edge = node->in_edge(); in RecomputeNodeDirty()
88 if (node->status_known()) in RecomputeNodeDirty()
90 // This node has no in-edge; it is dirty if it is missing. in RecomputeNodeDirty()
91 if (!node->StatIfNecessary(disk_interface_, err)) in RecomputeNodeDirty()
93 if (!node->exists()) in RecomputeNodeDirty()
[all …]
/third_party/cups/scheduler/
Dsysman.c4 * Copyright © 2020-2024 by OpenPrinting.
5 * Copyright @ 2007-2018 by Apple Inc.
34 * printing a job. And on macOS we can also "sleep print" - basically the
41 * 'cupsdCleanDirty()' - Write dirty config and state files.
65 if (job->dirty) in cupsdCleanDirty()
80 * 'cupsdMarkDirty()' - Mark config or state files as needing a write.
84 cupsdMarkDirty(int what) /* I - What file(s) are dirty? */ in cupsdMarkDirty()
87 (what & CUPSD_DIRTY_PRINTERS) ? 'P' : '-', in cupsdMarkDirty()
88 (what & CUPSD_DIRTY_CLASSES) ? 'C' : '-', in cupsdMarkDirty()
89 (what & CUPSD_DIRTY_PRINTCAP) ? 'p' : '-', in cupsdMarkDirty()
[all …]
/third_party/json/tools/serve_header/
Dserve_header.py27 DATETIME_FORMAT = '%Y-%m-%d %H:%M:%S'
73 delta = datetime.now() - time
106 self.dirty = True
123 if self.dirty:
128 logging.info(f'{self.name}: working tree marked dirty')
129 self.dirty = True
132 if not self.dirty:
145 self.dirty = False
181 if scan_dir.endswith('/_deps/json-src'):
243 class HeaderRequestHandler(SimpleHTTPRequestHandler): # lgtm[py/missing-call-to-init]
[all …]
/third_party/libdrm/intel/
Dintel_bufmgr_fake.c20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
53 if (bufmgr_fake->bufmgr.debug) \
65 * specific to our use of memcpy for uploads - an upload that was
84 /** Cache domain the target buffer will have dirty cachelines in. */
168 /** Driver-supplied argument to driver callbacks */
171 * Pointer to kernel-updated sarea data for the last completed user irq
188 unsigned dirty:1; member
190 * has the card written to this buffer - we make need to copy it back
201 /** Cache domain the target buffer will have dirty cachelines in. */
235 if (a < b && b - a < (1 << 24)) in FENCE_LTE()
[all …]
/third_party/mesa3d/src/gallium/drivers/panfrost/
Dpan_context.h61 /* Dirty tracking flags. 3D is for general 3D state. Shader flags are
62 * per-stage. Renderer refers to Renderer State Descriptors. Vertex refers to
100 /* For computed queries. 64-bit to prevent overflow */
130 /* Dirty global state */
131 enum pan_dirty_3d dirty; member
133 /* Per shader stage dirty state */
139 /* Sync obj used to keep track of in-flight jobs. */
218 * per-sample shading should be enabled.
264 /* Per-vertex stride for general varying buffer */
271 /* Allow 2D of sysval IDs, while allowing nonparametric sysvals to equal
[all …]
/third_party/rust/rust/tests/incremental/change_private_impl_method_cc/
Dstruct_point.rs5 // compile-flags: -Z query-dep-graph
6 // aux-build:point.rs
7 // build-pass (FIXME(62277): could be check-pass?)
12 #![allow(dead_code)]
14 #![rustc_partition_reused(module="struct_point-fn_read_field", cfg="cfail2")]
15 #![rustc_partition_reused(module="struct_point-fn_write_field", cfg="cfail2")]
16 #![rustc_partition_reused(module="struct_point-fn_make_struct", cfg="cfail2")]
18 #![rustc_partition_reused(module="struct_point-fn_calls_methods_in_same_impl", cfg="cfail2")]
19 #![rustc_partition_reused(module="struct_point-fn_calls_methods_in_another_impl", cfg="cfail2")]
39 pub fn dirty() { in dirty() function
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DMemoryDependenceAnalysis.cpp1 //===- MemoryDependenceAnalysis.cpp - Mem Deps Implementation -------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
14 //===----------------------------------------------------------------------===//
68 STATISTIC(NumCacheNonLocal, "Number of fully cached non-local responses");
69 STATISTIC(NumCacheDirtyNonLocal, "Number of dirty cached non-local responses");
70 STATISTIC(NumUncacheNonLocal, "Number of uncached non-local responses");
73 "Number of fully cached non-local ptr responses");
75 "Number of cached, but dirty, non-local ptr responses");
76 STATISTIC(NumUncacheNonLocalPtr, "Number of uncached non-local ptr responses");
[all …]
/third_party/mesa3d/src/intel/vulkan/
DgenX_cmd_draw.c42 anv_pipeline_to_graphics(cmd_buffer->state.gfx.base.pipeline); in cmd_buffer_alloc_gfx_push_constants()
43 VkShaderStageFlags stages = pipeline->base.base.active_stages; in cmd_buffer_alloc_gfx_push_constants()
54 if (stages == cmd_buffer->state.gfx.push_constant_stages) in cmd_buffer_alloc_gfx_push_constants()
59 const struct intel_device_info *devinfo = cmd_buffer->device->info; in cmd_buffer_alloc_gfx_push_constants()
61 push_constant_kb = devinfo->mesh_max_constant_urb_size_kb; in cmd_buffer_alloc_gfx_push_constants()
63 push_constant_kb = devinfo->max_constant_urb_size_kb; in cmd_buffer_alloc_gfx_push_constants()
79 anv_batch_emit(&cmd_buffer->batch, in cmd_buffer_alloc_gfx_push_constants()
88 anv_batch_emit(&cmd_buffer->batch, in cmd_buffer_alloc_gfx_push_constants()
91 alloc.ConstantBufferSize = push_constant_kb - kb_used; in cmd_buffer_alloc_gfx_push_constants()
102 anv_batch_emit(&cmd_buffer->batch, GENX(3DSTATE_CONSTANT_ALL), c) { in cmd_buffer_alloc_gfx_push_constants()
[all …]
/third_party/libcoap/src/
Dcoap_resource.c1 /* coap_resource.c -- generic resource handling
3 * Copyright (C) 2010--2023 Olaf Bergmann <bergmann@tzi.org>
5 * SPDX-License-Identifier: BSD-2-Clause
44 (Offset)--; \
59 * characters are skipped. Output may be truncated to Bufend - Buf
76 if (text->length < pattern->length) in match()
80 const uint8_t *next_token = text->s; in match()
81 size_t remaining_length = text->length; in match()
88 token_length = next_token - token; in match()
89 remaining_length -= (token_length + 1); in match()
[all …]

12345678910>>...13