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:lsbs
(Results
1 - 4
of
4
) sorted by relevance
/third_party/mesa3d/src/gallium/drivers/r300/compiler/
H
A
D
r300_fragprog_emit.c
73
* @param
lsbs
The number of least significant bits
75
static unsigned int get_msbs_tex(unsigned int bits, unsigned int
lsbs
)
in get_msbs_tex()
argument
77
return (bits >>
lsbs
) & 0x15;
in get_msbs_tex()
80
#define R400_EXT_GET_MSBS(x,
lsbs
, mask) (((x) >>
lsbs
) & mask)
/third_party/skia/third_party/externals/freetype/src/sfnt/
H
A
D
sfwoff2.c
1367
FT_Short*
lsbs
= NULL;
in reconstruct_hmtx()
local
1396
FT_NEW_ARRAY(
lsbs
, num_glyphs ) )
in reconstruct_hmtx()
1425
lsbs
[i] = lsb;
in reconstruct_hmtx()
1442
lsbs
[i] = lsb;
in reconstruct_hmtx()
1460
WRITE_SHORT( dst,
lsbs
[i] );
in reconstruct_hmtx()
1461
FT_TRACE6(( "%d ",
lsbs
[i] ));
in reconstruct_hmtx()
1475
FT_FREE(
lsbs
);
in reconstruct_hmtx()
1482
FT_FREE(
lsbs
);
in reconstruct_hmtx()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H
A
D
raw_hash_set.h
416
// retval = (v -
lsbs
) & ~v & msbs = 0x0000000080800000
418
constexpr uint64_t
lsbs
= 0x0101010101010101ULL;
419
auto x = ctrl ^ (
lsbs
* hash);
420
return BitMask<uint64_t, kWidth, 3>((x -
lsbs
) & ~x & msbs);
440
constexpr uint64_t
lsbs
= 0x0101010101010101ULL;
442
auto res = (~x + (x >> 7)) & ~
lsbs
;
H
A
D
raw_hash_set_test.cc
141
constexpr uint64_t
lsbs
= 0x0101010101010101ULL;
in TEST()
local
142
auto x = ctrl ^ (
lsbs
* hash);
in TEST()
143
uint64_t mask = (x -
lsbs
) & ~x & msbs;
in TEST()
Completed in 10 milliseconds