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:RED_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()
64
int ra = (aPacked >> RGBA::
RED_SHIFT
) & 0xFF;
in computeAbsDiffMasked()
65
int rb = (bPacked >> RGBA::
RED_SHIFT
) & 0xFF;
in computeAbsDiffMasked()
H
A
D
tcuRGBA.hpp
43
RED_SHIFT
= 0,
enumerator
65
m_value = ((deUint32)a << ALPHA_SHIFT) | ((deUint32)r <<
RED_SHIFT
) | ((deUint32)g << GREEN_SHIFT) | ((deUint32)b << BLUE_SHIFT);
in RGBA()
75
void setRed (int v) { DE_ASSERT(deInRange32(v, 0, 255)); m_value = (m_value & ~((deUint32)0xFFu <<
RED_SHIFT
)) | ((deUint32)v <<
RED_SHIFT
); }
in setRed()
79
int getRed (void) const { return (int)((m_value >> (deUint32)
RED_SHIFT
) & 0xFFu); }
in getRed()
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
66
res |= getChannel<0>(raw) << RGBA::
RED_SHIFT
;
in readRGBA8()
106
res |= interpolateChannel(fx1, fy1, getChannel<0>(p00), getChannel<0>(p01), getChannel<0>(p10), getChannel<0>(p11)) << RGBA::
RED_SHIFT
;
in bilinearSampleRGBA8()
Completed in 3 milliseconds