Home
last modified time | relevance | path

Searched refs:backing (Results 1 – 25 of 107) sorted by relevance

12345

/external/mesa3d/src/gallium/winsys/amdgpu/drm/
Damdgpu_bo.c605 struct amdgpu_sparse_backing *backing = 0; in sparse_dump() local
609 backing = bo->u.sparse.commitments[va_page].backing; in sparse_dump()
614 (backing != span_backing || in sparse_dump()
627 if (backing && !span_backing) { in sparse_dump()
628 span_backing = backing; in sparse_dump()
638 list_for_each_entry(struct amdgpu_sparse_backing, backing, &bo->u.sparse.backing, list) { in sparse_dump()
639 fprintf(stderr, " %p (size=%"PRIu64")\n", backing, backing->bo->base.size); in sparse_dump()
640 for (unsigned i = 0; i < backing->num_chunks; ++i) in sparse_dump()
641 fprintf(stderr, " %u..%u\n", backing->chunks[i].begin, backing->chunks[i].end); in sparse_dump()
663 list_for_each_entry(struct amdgpu_sparse_backing, backing, &bo->u.sparse.backing, list) { in sparse_backing_alloc()
[all …]
Damdgpu_bo.h54 struct amdgpu_sparse_backing *backing; member
82 struct list_head backing; member
Damdgpu_cs.c569 list_for_each_entry(struct amdgpu_sparse_backing, backing, &bo->u.sparse.backing, list) { in amdgpu_lookup_or_add_sparse_buffer()
571 acs->main.base.used_vram += backing->bo->base.size; in amdgpu_lookup_or_add_sparse_buffer()
573 acs->main.base.used_gart += backing->bo->base.size; in amdgpu_lookup_or_add_sparse_buffer()
1184 list_for_each_entry(struct amdgpu_sparse_backing, backing, &bo->u.sparse.backing, list) { in amdgpu_add_sparse_backing_buffers()
1188 int idx = amdgpu_do_add_real_buffer(cs, backing->bo); in amdgpu_add_sparse_backing_buffers()
1197 p_atomic_inc(&backing->bo->num_active_ioctls); in amdgpu_add_sparse_backing_buffers()
/external/clang/test/Analysis/objc/
Ddirect-ivar-assignment-in-annotated-functions.m38 @property (assign) MyClass* NotA; // warnings should be suppressed, backing ivar is annotated
47 …(__A) = In; // expected-warning {{Direct assignment to an instance variable backing a property; us…
48 …_X = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
49 …_Y = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
50 …_Z = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
51 …_nonSynth = 0; // expected-warning {{Direct assignment to an instance variable backing a property;…
/external/clang/test/Analysis/
Dobjc-properties.m66 …(__A) = In; // expected-warning {{Direct assignment to an instance variable backing a property; us…
67 …_X = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
68 …_Y = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
69 …_Z = In; // expected-warning {{Direct assignment to an instance variable backing a property; use t…
70 …_nonSynth = 0; // expected-warning {{Direct assignment to an instance variable backing a property;…
DNSWindow.m38 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle backing:(NSBackingStoreT…
39 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle backing:(NSBackingStoreT…
51 backing:NSBackingStoreBuffered
61 backing:NSBackingStoreBuffered
73 backing:NSBackingStoreBuffered
DNSPanel.m55 - (id)initWithContentRect:(NSRect)contentRect styleMask:(NSUInteger)aStyle backing:(NSBackingStoreT…
75 …hContentRect:NSMakeRect(0, 0, 200, 200) styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuf…
83 …hContentRect:NSMakeRect(0, 0, 200, 200) styleMask:NSBorderlessWindowMask backing:NSBackingStoreBuf…
/external/toybox/www/doc/
Dmount.txt67 think of when they mount things. The name means that the "backing store"
78 The backing store is a server somewhere, and the filesystem driver is talking
87 been swapped out but the filesystem needs to write data to its backing
102 These are very simple filesystems that don't implement a backing store. Data
104 to flush it to backing store (reporting all the pages as pinned and
135 These filesystems don't have any backing store either, because they don't
152 Those are the four types of filesystems: backing store can be a fixed length
153 block of storage, backing store can be some server the driver connects to,
154 backing store can not exist and the files merely reside in the disk cache,
/external/guava/guava/src/com/google/common/collect/
DTreeBasedTable.java233 SortedMap<C, V> backing = backingRowMap(); in firstKey() local
234 if (backing == null) { in firstKey()
241 SortedMap<C, V> backing = backingRowMap(); in lastKey() local
242 if (backing == null) { in lastKey()
/external/ltp/testcases/kernel/syscalls/epoll2/man/
Depoll_create.txt15 event backing store dimensioned for size descriptors. The size is not
16 the maximum size of the backing store but just a hint to the kernel
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_tensor_coding.cc230 [](void* backing) { static_cast<TensorBuffer*>(backing)->Unref(); }, in EncodeTensorToByteBuffer() argument
/external/guava/guava-tests/test/com/google/common/collect/
DSynchronizedBiMapTest.java93 BiMap<String, String> backing = in create() local
95 BiMap<String, String> result = Synchronized.biMap(backing, mutex); in create()
/external/squashfs-tools/RELEASE-READMEs/
DDONATIONS4 the only widely used Linux file systems that has no company backing. Squashfs
/external/webrtc/webrtc/examples/objc/AppRTCDemo/mac/
DAPPRTCAppDelegate.m41 backing:NSBackingStoreBuffered
/external/deqp/framework/platform/osx/
DtcuOSXMetalView.mm41 // Callback to create the backing metal layer
/external/mockito/src/main/java/org/mockito/internal/util/concurrent/
DREADME.md9 … many threads write to the map concurrently (this is implied by the maps backing by a `ConcurrentH…
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_MutableDenseHashTable.pbtxt63 summary: "Creates an empty hash table that uses tensors as the backing store."
Dapi_def_MutableDenseHashTableV2.pbtxt65 summary: "Creates an empty hash table that uses tensors as the backing store."
/external/clang/test/CodeGenObjC/
Ddebug-info-property-class-extension.m32 // generate debug info for the property via the backing ivar.
/external/webrtc/webrtc/modules/video_render/mac/
Dcocoa_full_screen_window.mm50 backing:NSBackingStoreBuffered
/external/webrtc/webrtc/modules/video_render/test/testAPI/
DtestAPI_mac.mm41 backing:NSBackingStoreBuffered
/external/libchrome/mojo/public/tools/bindings/generators/cpp_templates/
Dstruct_definition.tmpl14 // NOTE: The memory backing |object| may be smaller than |sizeof(*object)| if
/external/libunwind/doc/
DNOTES113 register backing store pointer (bsp). One quirk with this
116 backing store (i.e., as if a "flushrs" instruction had been executed).
/external/libunwind/src/ia64/
DNOTES5 - bsp current backing store pointer
/external/autotest/site_utils/lxc/
Dutils.py105 backing = aufs_arg

12345