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:BITSET_BIT
(Results
1 - 7
of
7
) sorted by relevance
/third_party/mesa3d/src/freedreno/drm/
H
A
D
freedreno_drmif.h
100
#define FD_BO_GPUREADONLY
BITSET_BIT
(1)
101
#define FD_BO_SCANOUT
BITSET_BIT
(2)
103
#define FD_BO_CACHED_COHERENT
BITSET_BIT
(3)
105
#define FD_BO_NOMAP
BITSET_BIT
(4)
107
#define FD_BO_SHARED
BITSET_BIT
(5)
110
#define _FD_BO_VIRTIO_SHM
BITSET_BIT
(6)
113
#define FD_BO_PREP_READ
BITSET_BIT
(0)
114
#define FD_BO_PREP_WRITE
BITSET_BIT
(1)
115
#define FD_BO_PREP_NOSYNC
BITSET_BIT
(2)
116
#define FD_BO_PREP_FLUSH
BITSET_BIT
(
[all...]
/third_party/mesa3d/src/util/
H
A
D
bitset.h
58
#define
BITSET_BIT
(b) (1u << ((b) % BITSET_WORDBITS))
macro
62
#define BITSET_TEST(x, b) (((x)[BITSET_BITWORD(b)] &
BITSET_BIT
(b)) != 0)
63
#define BITSET_SET(x, b) ((x)[BITSET_BITWORD(b)] |=
BITSET_BIT
(b))
64
#define BITSET_CLEAR(x, b) ((x)[BITSET_BITWORD(b)] &= ~
BITSET_BIT
(b))
66
#define BITSET_MASK(b) (((b) % BITSET_WORDBITS == 0) ? ~0 :
BITSET_BIT
(b) - 1)
67
#define BITSET_RANGE(b, e) ((BITSET_MASK((e) + 1)) & ~(
BITSET_BIT
(b) - 1))
386
BITSET_WORD tmp = set[word] & ~(
BITSET_BIT
(*end) - 1);
407
tmp = set[word] | (
BITSET_BIT
(*start + 1) - 1);
H
A
D
register_allocate.c
741
g->tmp.reg_assigned[i] |=
BITSET_BIT
(j);
in ra_simplify()
769
if (pq &
BITSET_BIT
(j)) {
in ra_simplify()
787
if (skip &
BITSET_BIT
(j))
in ra_simplify()
/third_party/mesa3d/src/panfrost/midgard/
H
A
D
mir_promote_uniforms.c
296
ctx->ubo_mask |=
BITSET_BIT
(ubo);
in midgard_promote_uniforms()
306
ctx->ubo_mask |=
BITSET_BIT
(ubo);
in midgard_promote_uniforms()
H
A
D
midgard_ra.c
1111
ctx->ubo_mask |=
BITSET_BIT
(ctx->info->push.words[idx].ubo);
in mir_demote_uniforms()
/third_party/mesa3d/src/panfrost/bifrost/
H
A
D
bi_opt_push_ubo.c
146
ctx->ubo_mask |=
BITSET_BIT
(ubo);
in bi_opt_push_ubo()
156
ctx->ubo_mask |=
BITSET_BIT
(ubo);
in bi_opt_push_ubo()
/third_party/mesa3d/src/intel/common/
H
A
D
intel_decoder.h
46
#define I915_ENGINE_CLASS_TO_MASK(x)
BITSET_BIT
(x)
Completed in 10 milliseconds