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:nextInfo
(Results
1 - 6
of
6
) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
H
A
D
VkBuffer.cpp
38
const auto *
nextInfo
= reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext);
in Buffer()
local
39
for(;
nextInfo
!= nullptr;
nextInfo
=
nextInfo
->pNext)
in Buffer()
41
if(
nextInfo
->sType == VK_STRUCTURE_TYPE_EXTERNAL_MEMORY_BUFFER_CREATE_INFO)
in Buffer()
43
const auto *externalInfo = reinterpret_cast<const VkExternalMemoryBufferCreateInfo *>(
nextInfo
);
in Buffer()
H
A
D
VkSemaphore.cpp
98
for(const auto *
nextInfo
= reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext);
in SemaphoreCreateInfo()
99
nextInfo
!= nullptr;
nextInfo
=
nextInfo
->pNext)
in SemaphoreCreateInfo()
101
switch(
nextInfo
->sType)
in SemaphoreCreateInfo()
105
const auto *exportInfo = reinterpret_cast<const VkExportSemaphoreCreateInfo *>(
nextInfo
);
in SemaphoreCreateInfo()
118
const auto *tlsInfo = reinterpret_cast<const VkSemaphoreTypeCreateInfo *>(
nextInfo
);
in SemaphoreCreateInfo()
124
WARN("
nextInfo
->sType = %s", vk::Stringify(
nextInfo
->sType).c_str());
in SemaphoreCreateInfo()
H
A
D
libVulkan.cpp
1358
auto *
nextInfo
= reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext);
in vkCreateFence()
local
1359
while(
nextInfo
)
in vkCreateFence()
1361
switch(
nextInfo
->sType)
in vkCreateFence()
1367
UNSUPPORTED("pCreateInfo->pNext sType = %s", vk::Stringify(
nextInfo
->sType).c_str());
in vkCreateFence()
1370
nextInfo
=
nextInfo
->pNext;
in vkCreateFence()
1424
for(const auto *
nextInfo
= reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext);
in vkCreateSemaphore()
1425
nextInfo
!= nullptr;
nextInfo
=
nextInfo
in vkCreateSemaphore()
1652
auto *
nextInfo
= reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext);
vkCreateBuffer()
local
1935
auto *
nextInfo
= reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext);
vkCreateShaderModule()
local
2119
auto *
nextInfo
= reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext);
vkCreatePipelineLayout()
local
2395
auto *
nextInfo
= reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext);
vkCreateCommandPool()
local
2434
auto *
nextInfo
= reinterpret_cast<const VkBaseInStructure *>(pAllocateInfo->pNext);
vkAllocateCommandBuffers()
local
2465
auto *
nextInfo
= reinterpret_cast<const VkBaseInStructure *>(pBeginInfo->pNext);
vkBeginCommandBuffer()
local
[all...]
H
A
D
VkImage.cpp
130
auto
nextInfo
= reinterpret_cast<VkBaseInStructure const *>(pCreateInfo->pNext);
in GetImageFormat()
local
131
while(
nextInfo
)
in GetImageFormat()
133
switch(
nextInfo
->sType)
in GetImageFormat()
138
const VkExternalFormatANDROID *externalFormatAndroid = reinterpret_cast<const VkExternalFormatANDROID *>(
nextInfo
);
in GetImageFormat()
162
UNSUPPORTED("pCreateInfo->pNext->sType = %s", vk::Stringify(
nextInfo
->sType).c_str());
in GetImageFormat()
166
nextInfo
=
nextInfo
->pNext;
in GetImageFormat()
195
const auto *
nextInfo
= reinterpret_cast<const VkBaseInStructure *>(pCreateInfo->pNext);
in Image()
local
196
for(;
nextInfo
!= nullptr;
nextInfo
in Image()
[all...]
H
A
D
VkPhysicalDevice.cpp
875
for(const auto *
nextInfo
= reinterpret_cast<const VkBaseInStructure *>(pExternalSemaphoreInfo->pNext);
in getProperties()
876
nextInfo
!= nullptr;
nextInfo
=
nextInfo
->pNext)
in getProperties()
878
switch(
nextInfo
->sType)
in getProperties()
882
const auto *tlsInfo = reinterpret_cast<const VkSemaphoreTypeCreateInfo *>(
nextInfo
);
in getProperties()
894
WARN("
nextInfo
->sType = %s", vk::Stringify(
nextInfo
->sType).c_str());
in getProperties()
/third_party/skia/src/gpu/
H
A
D
SurfaceContext.cpp
1184
GrImageInfo
nextInfo
(input->colorInfo(), nextDims);
in rescaleInto()
1185
tempB = fContext->priv().makeSFCWithFallback(
nextInfo
, SkBackingFit::kApprox);
in rescaleInto()
Completed in 16 milliseconds