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:ALPHA_SHIFT
(Results
1 - 4
of
4
) sorted by relevance
/third_party/vk-gl-cts/framework/common/
H
A
D
tcuRGBA.cpp
37
m_value = (a <<
ALPHA_SHIFT
) | (r << RED_SHIFT) | (g << GREEN_SHIFT) | (b << BLUE_SHIFT);
in RGBA()
88
int aa = (aPacked >> RGBA::
ALPHA_SHIFT
) & 0xFF;
in computeAbsDiffMasked()
89
int ab = (bPacked >> RGBA::
ALPHA_SHIFT
) & 0xFF;
in computeAbsDiffMasked()
H
A
D
tcuRGBA.hpp
46
ALPHA_SHIFT
= 24
enumerator
65
m_value = ((deUint32)a <<
ALPHA_SHIFT
) | ((deUint32)r << RED_SHIFT) | ((deUint32)g << GREEN_SHIFT) | ((deUint32)b << BLUE_SHIFT);
in RGBA()
78
void setAlpha (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0xFFu <<
ALPHA_SHIFT
)) | ((deUint32)v <<
ALPHA_SHIFT
); }
in setAlpha()
82
int getAlpha (void) const { return (int)((m_value >> (deUint32)
ALPHA_SHIFT
) & 0xFFu); }
in getAlpha()
H
A
D
tcuSurface.hpp
94
DE_STATIC_ASSERT(RGBA::RED_SHIFT == 0 && RGBA::GREEN_SHIFT == 8 && RGBA::BLUE_SHIFT == 16 && RGBA::
ALPHA_SHIFT
== 24);
in getPixel()
H
A
D
tcuBilinearImageCompare.cpp
69
res |= getChannel<3>(raw) << RGBA::
ALPHA_SHIFT
;
in readRGBA8()
109
res |= interpolateChannel(fx1, fy1, getChannel<3>(p00), getChannel<3>(p01), getChannel<3>(p10), getChannel<3>(p11)) << RGBA::
ALPHA_SHIFT
;
in bilinearSampleRGBA8()
Completed in 2 milliseconds