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:pVersion
(Results
1 - 5
of
5
) sorted by relevance
/third_party/mesa3d/include/vulkan/
H
A
D
vk_icd.h
50
typedef VkResult(VKAPI_PTR *PFN_vkNegotiateLoaderICDInterfaceVersion)(uint32_t *
pVersion
);
58
typedef VkResult (VKAPI_PTR *PFN_vk_icdNegotiateLoaderICDInterfaceVersion)(uint32_t*
pVersion
);
71
VKAPI_ATTR VkResult VKAPI_CALL vk_icdNegotiateLoaderICDInterfaceVersion(uint32_t*
pVersion
);
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
H
A
D
vk_icd.h
50
typedef VkResult(VKAPI_PTR *PFN_vkNegotiateLoaderICDInterfaceVersion)(uint32_t *
pVersion
);
58
typedef VkResult (VKAPI_PTR *PFN_vk_icdNegotiateLoaderICDInterfaceVersion)(uint32_t*
pVersion
);
71
VKAPI_ATTR VkResult VKAPI_CALL vk_icdNegotiateLoaderICDInterfaceVersion(uint32_t*
pVersion
);
/third_party/skia/third_party/externals/dawn/third_party/khronos/vulkan/
H
A
D
vk_icd.h
50
typedef VkResult(VKAPI_PTR *PFN_vkNegotiateLoaderICDInterfaceVersion)(uint32_t *
pVersion
);
58
typedef VkResult (VKAPI_PTR *PFN_vk_icdNegotiateLoaderICDInterfaceVersion)(uint32_t*
pVersion
);
71
VKAPI_ATTR VkResult VKAPI_CALL vk_icdNegotiateLoaderICDInterfaceVersion(uint32_t*
pVersion
);
/third_party/vulkan-headers/include/vulkan/
H
A
D
vk_icd.h
44
typedef VkResult(VKAPI_PTR *PFN_vkNegotiateLoaderICDInterfaceVersion)(uint32_t *
pVersion
);
52
typedef VkResult (VKAPI_PTR *PFN_vk_icdNegotiateLoaderICDInterfaceVersion)(uint32_t*
pVersion
);
65
VKAPI_ATTR VkResult VKAPI_CALL vk_icdNegotiateLoaderICDInterfaceVersion(uint32_t*
pVersion
);
/third_party/vulkan-loader/loader/
H
A
D
loader.c
1345
// @param
pVersion
Output parameter indicating which version to use or 0 if
1349
bool loader_get_icd_interface_version(PFN_vkNegotiateLoaderICDInterfaceVersion fp_negotiate_icd_version, uint32_t *
pVersion
) {
in loader_get_icd_interface_version()
argument
1353
*
pVersion
= 0;
in loader_get_icd_interface_version()
1357
*
pVersion
= CURRENT_LOADER_ICD_INTERFACE_VERSION;
in loader_get_icd_interface_version()
1358
VkResult result = fp_negotiate_icd_version(
pVersion
);
in loader_get_icd_interface_version()
1368
if (*
pVersion
< MIN_SUPPORTED_LOADER_ICD_INTERFACE_VERSION) {
in loader_get_icd_interface_version()
Completed in 12 milliseconds