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:BitType
(Results
1 - 4
of
4
) sorted by relevance
/third_party/vulkan-headers/include/vulkan/
H
A
D
vulkan_enums.hpp
19
template <typename
BitType
>
23
using MaskType = typename std::underlying_type<
BitType
>::type;
28
VULKAN_HPP_CONSTEXPR Flags(
BitType
bit ) VULKAN_HPP_NOEXCEPT : m_mask( static_cast<MaskType>( bit ) ) {}
in static_cast()
30
VULKAN_HPP_CONSTEXPR Flags( Flags<
BitType
> const & rhs ) VULKAN_HPP_NOEXCEPT = default;
36
auto operator<=>( Flags<
BitType
> const & ) const = default;
38
VULKAN_HPP_CONSTEXPR bool operator<( Flags<
BitType
> const & rhs ) const VULKAN_HPP_NOEXCEPT
43
VULKAN_HPP_CONSTEXPR bool operator<=( Flags<
BitType
> const & rhs ) const VULKAN_HPP_NOEXCEPT
48
VULKAN_HPP_CONSTEXPR bool operator>( Flags<
BitType
> const & rhs ) const VULKAN_HPP_NOEXCEPT
53
VULKAN_HPP_CONSTEXPR bool operator>=( Flags<
BitType
> const & rhs ) const VULKAN_HPP_NOEXCEPT
58
VULKAN_HPP_CONSTEXPR bool operator==( Flags<
BitType
> cons
[all...]
H
A
D
vulkan_hash.hpp
19
template <typename
BitType
>
20
struct hash<VULKAN_HPP_NAMESPACE::Flags<
BitType
>>
22
std::size_t operator()( VULKAN_HPP_NAMESPACE::Flags<
BitType
> const & flags ) const VULKAN_HPP_NOEXCEPT
24
return std::hash<typename std::underlying_type<
BitType
>::type>{}( static_cast<typename std::underlying_type<
BitType
>::type>( flags ) );
/third_party/skia/third_party/externals/swiftshader/include/vulkan/
H
A
D
vulkan.hpp
803
template <typename
BitType
>
807
using MaskType = typename std::underlying_type<
BitType
>::type;
812
VULKAN_HPP_CONSTEXPR Flags(
BitType
bit ) VULKAN_HPP_NOEXCEPT : m_mask( static_cast<MaskType>( bit ) ) {}
in static_cast()
814
VULKAN_HPP_CONSTEXPR Flags( Flags<
BitType
> const & rhs ) VULKAN_HPP_NOEXCEPT = default;
820
auto operator<=>( Flags<
BitType
> const & ) const = default;
822
VULKAN_HPP_CONSTEXPR bool operator<( Flags<
BitType
> const & rhs ) const VULKAN_HPP_NOEXCEPT
827
VULKAN_HPP_CONSTEXPR bool operator<=( Flags<
BitType
> const & rhs ) const VULKAN_HPP_NOEXCEPT
832
VULKAN_HPP_CONSTEXPR bool operator>( Flags<
BitType
> const & rhs ) const VULKAN_HPP_NOEXCEPT
837
VULKAN_HPP_CONSTEXPR bool operator>=( Flags<
BitType
> const & rhs ) const VULKAN_HPP_NOEXCEPT
842
VULKAN_HPP_CONSTEXPR bool operator==( Flags<
BitType
> cons
[all...]
/third_party/rust/crates/rust-openssl/openssl/src/
H
A
D
dsa.rs
190
type
BitType
= libc::c_uint;
types
192
type
BitType
= c_int;
types
214
bits as
BitType
,
in generate_params()
Completed in 115 milliseconds