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:dpci
(Results
1 - 2
of
2
) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/zink/
H
A
D
zink_descriptors.c
328
VkDescriptorPoolCreateInfo
dpci
= {0};
in descriptor_pool_create()
local
329
dpci
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
in descriptor_pool_create()
330
dpci
.pPoolSizes = pool_key->sizes;
in descriptor_pool_create()
331
dpci
.poolSizeCount = pool_key->num_type_sizes;
in descriptor_pool_create()
332
dpci
.flags = 0;
in descriptor_pool_create()
333
dpci
.maxSets = ZINK_DEFAULT_MAX_DESCS;
in descriptor_pool_create()
335
VkResult result = VKSCR(CreateDescriptorPool)(screen->dev, &
dpci
, 0, &pool->descpool);
in descriptor_pool_create()
1968
VkDescriptorPoolCreateInfo
dpci
= {0};
in zink_descriptors_init_bindless()
local
1974
dpci
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
in zink_descriptors_init_bindless()
1975
dpci
in zink_descriptors_init_bindless()
[all...]
H
A
D
zink_descriptors_lazy.c
373
VkDescriptorPoolCreateInfo
dpci
= {0};
in create_pool()
local
374
dpci
.sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO;
in create_pool()
375
dpci
.pPoolSizes = sizes;
in create_pool()
376
dpci
.poolSizeCount = num_type_sizes;
in create_pool()
377
dpci
.flags = flags;
in create_pool()
378
dpci
.maxSets = MAX_LAZY_DESCRIPTORS;
in create_pool()
379
VkResult result = VKSCR(CreateDescriptorPool)(screen->dev, &
dpci
, 0, &pool);
in create_pool()
Completed in 6 milliseconds