Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:isMapped
(Results
1 - 25
of
35
) sorted by relevance
1
2
/third_party/skia/src/gpu/
H
A
D
GrBufferAllocPool.cpp
98
if (!buffer->isCpuBuffer() && static_cast<GrGpuBuffer*>(buffer)->
isMapped
()) {
in deleteBlocks()
128
if (static_cast<GrGpuBuffer*>(buffer)->
isMapped
()) {
in unmap()
146
if (!buffer->isCpuBuffer() && !static_cast<const GrGpuBuffer*>(buffer)->
isMapped
()) {
in validate()
151
SkASSERT(buffer->isCpuBuffer() || !static_cast<const GrGpuBuffer*>(buffer)->
isMapped
());
in validate()
156
SkASSERT(buffer->isCpuBuffer() || !static_cast<const GrGpuBuffer*>(buffer)->
isMapped
());
in validate()
298
if (!buffer->isCpuBuffer() && static_cast<GrGpuBuffer*>(buffer)->
isMapped
()) {
in putBack()
332
if (static_cast<GrGpuBuffer*>(buffer)->
isMapped
()) {
in createBlock()
368
!static_cast<GrGpuBuffer*>(fBlocks.back().fBuffer.get())->
isMapped
());
in destroyBlock()
391
SkASSERT(!buffer->
isMapped
());
in flushCpuData()
H
A
D
GrGpuBuffer.cpp
43
bool GrGpuBuffer::
isMapped
() const { return SkToBool(fMapPtr); }
in isMapped()
function in GrGpuBuffer
47
SkASSERT(!this->
isMapped
());
in updateData()
H
A
D
GrGpuBuffer.h
61
bool
isMapped
() const;
H
A
D
GrOpsRenderPass.cpp
277
!static_cast<const GrGpuBuffer*>(drawIndirectBuffer)->
isMapped
());
in drawIndirect()
303
!static_cast<const GrGpuBuffer*>(drawIndirectBuffer)->
isMapped
());
in drawIndexedIndirect()
H
A
D
GrResourceProvider.cpp
449
SkASSERT(!buffer->
isMapped
());
in findOrMakeStaticBuffer()
455
if (buffer->
isMapped
()) {
in findOrMakeStaticBuffer()
H
A
D
SurfaceContext.cpp
638
SkASSERT(!result.fTransferBuffer->
isMapped
());
in addTransferResult()
667
SkASSERT(mappedBuffer->
isMapped
());
in addMappedPlane()
695
SkASSERT(fMappedBuffer->
isMapped
());
in data()
/third_party/skia/experimental/graphite/src/
H
A
D
Buffer.cpp
13
if (!this->
isMapped
()) {
in map()
20
SkASSERT(this->
isMapped
());
in unmap()
H
A
D
Buffer.h
23
bool
isMapped
() const { return fMapPtr; }
in isMapped()
function in skgpu::Buffer
/third_party/skia/src/gpu/dawn/
H
A
D
GrDawnBuffer.cpp
74
SkASSERT(this->
isMapped
());
in onMap()
117
SkASSERT(!this->
isMapped
());
in mapWriteAsync()
121
SkASSERT(!this->
isMapped
());
in mapReadAsync()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H
A
D
VertexArray.cpp
89
bool
isMapped
= newBinding.getBuffer().get() && newBinding.getBuffer()->
isMapped
();
90
mCachedMappedArrayBuffers.set(attribIndex,
isMapped
);
272
bool
isMapped
,
277
if (
isMapped
)
303
bool
isMapped
= buffer && buffer->
isMapped
();
306
return updateCachedArrayBuffersMasks(
isMapped
, isImmutable, isPersistent,
369
bool
isMapped
= boundBuffer->
isMapped
()
in bindVertexBufferImpl()
local
[all...]
H
A
D
Buffer.h
43
GLboolean
isMapped
() const { return mMapped; }
in isMapped()
function in gl::final
142
GLboolean
isMapped
() const { return mState.mMapped; }
in isMapped()
function in gl::final
H
A
D
Buffer.cpp
112
if (mState.
isMapped
())
in bufferDataImpl()
176
if (mState.
isMapped
())
in bufferExternalDataImpl()
H
A
D
VertexArray.h
329
void updateCachedArrayBuffersMasks(bool
isMapped
,
H
A
D
validationES3.cpp
807
if (pixelUnpackBuffer->
isMapped
() && !pixelUnpackBuffer->isPersistentlyMapped())
in ValidateES3TexImageParametersBase()
2947
if (buffer->
isMapped
())
in ValidateBeginTransformFeedback()
3384
if ((readBuffer->
isMapped
() && !isReadPersistent) ||
in ValidateCopyBufferSubData()
3385
(writeBuffer->
isMapped
() && !isWritePersistent))
in ValidateCopyBufferSubData()
/third_party/skia/src/gpu/d3d/
H
A
D
GrD3DPipelineState.cpp
162
SkASSERT(!d3dVertexBuffer->
isMapped
());
in bindBuffers()
169
SkASSERT(!d3dInstanceBuffer->
isMapped
());
in bindBuffers()
178
SkASSERT(!d3dIndexBuffer->
isMapped
());
in bindBuffers()
H
A
D
GrD3DBuffer.cpp
179
SkASSERT(!this->
isMapped
());
in internalMap()
210
SkASSERT(this->
isMapped
());
in internalUnmap()
/third_party/skia/src/gpu/gl/
H
A
D
GrGLBuffer.cpp
171
SkASSERT(!this->
isMapped
());
in onMap()
238
SkASSERT(this->
isMapped
());
in onUnmap()
268
SkASSERT(!this->
isMapped
());
in onUpdateData()
H
A
D
GrGLOpsRenderPass.cpp
150
!static_cast<const GrGpuBuffer*>(instanceBuffer)->
isMapped
());
in bindInstanceBuffer()
169
!static_cast<const GrGpuBuffer*>(vertexBuffer)->
isMapped
());
in bindVertexBuffer()
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/libGLESv2/
H
A
D
Buffer.h
45
bool
isMapped
() const { return mIsMapped; }
in isMapped()
function in es2::Buffer
H
A
D
libGLESv3.cpp
847
if(!buffer->
isMapped
())
in UnmapBuffer()
885
*params = buffer->
isMapped
() ? (void*)(((const char*)buffer->data()) + buffer->offset()) : nullptr;
in GetBufferPointerv()
1368
if(buffer->
isMapped
())
in MapBufferRange()
1422
if(!buffer->
isMapped
())
in FlushMappedBufferRange()
2439
if(!readBuffer || readBuffer->
isMapped
() || !writeBuffer || writeBuffer->
isMapped
())
in CopyBufferSubData()
3084
*params = buffer->
isMapped
();
in GetBufferParameteri64v()
/third_party/glslang/SPIRV/
H
A
D
SPVRemapper.h
198
bool isNewIdMapped(spv::Id newId) const { return
isMapped
(newId); }
in isNewIdMapped()
241
bool
isMapped
(spv::Id id) const { return id < maxMappedId() && ((mapped[id/mBits] & (1LL<<(id%mBits))) != 0); }
in isMapped()
function in spv::spirvbin_t
/third_party/skia/src/gpu/vk/
H
A
D
GrVkOpsRenderPass.cpp
745
SkASSERT(!gpuVertexBuffer->
isMapped
());
in onBindBuffers()
750
SkASSERT(!gpuInstanceBuffer->
isMapped
());
in onBindBuffers()
755
SkASSERT(!gpuIndexBuffer->
isMapped
());
in onBindBuffers()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
H
A
D
Buffer11.h
85
bool
isMapped
() const { return mMappedStorage != nullptr; }
in isMapped()
function in rx::Buffer11
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H
A
D
SafepointIRVerifier.cpp
479
bool
isMapped
(const BasicBlock *BB) const {
in isMapped()
function in __anon24223::GCPtrTracker
666
if (!
isMapped
(InBB) ||
in removeValidUnrelocatedDefs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/Coverage/
H
A
D
CoverageMapping.h
620
bool
isMapped
() const { return Mapped; }
in isMapped()
function in llvm::coverage::LineCoverageStats
Completed in 33 milliseconds
1
2