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:private_refcount
(Results
1 - 9
of
9
) sorted by relevance
/third_party/mesa3d/src/mesa/main/
H
A
D
bufferobj.h
58
if (unlikely(obj->
private_refcount
<= 0)) {
in _mesa_get_bufferobj_reference()
59
assert(obj->
private_refcount
== 0);
in _mesa_get_bufferobj_reference()
62
obj->
private_refcount
= 100000000;
in _mesa_get_bufferobj_reference()
63
p_atomic_add(&buffer->reference.count, obj->
private_refcount
);
in _mesa_get_bufferobj_reference()
67
obj->
private_refcount
--;
in _mesa_get_bufferobj_reference()
H
A
D
bufferobj.c
1019
if (obj->
private_refcount
) {
in _mesa_bufferobj_release_buffer()
1020
assert(obj->
private_refcount
> 0);
in _mesa_bufferobj_release_buffer()
1022
-obj->
private_refcount
);
in _mesa_bufferobj_release_buffer()
1023
obj->
private_refcount
= 0;
in _mesa_bufferobj_release_buffer()
H
A
D
mtypes.h
1475
int
private_refcount
;
member
H
A
D
dlist.c
744
if (node->
private_refcount
[mode]) {
in vbo_destroy_vertex_list()
745
assert(node->
private_refcount
[mode] > 0);
in vbo_destroy_vertex_list()
747
-node->
private_refcount
[mode]);
in vbo_destroy_vertex_list()
/third_party/mesa3d/src/mesa/vbo/
H
A
D
vbo_save_draw.c
253
int16_t * const
private_refcount
= (int16_t*)&node->
private_refcount
[mode];
in vbo_save_playback_vertex_list_gallium()
local
254
assert(*
private_refcount
>= 0);
in vbo_save_playback_vertex_list_gallium()
256
if (unlikely(*
private_refcount
== 0)) {
in vbo_save_playback_vertex_list_gallium()
267
*
private_refcount
= add_refs;
in vbo_save_playback_vertex_list_gallium()
270
(*
private_refcount
)--;
in vbo_save_playback_vertex_list_gallium()
H
A
D
vbo_save.h
69
int16_t
private_refcount
[VP_MODE_MAX];
member
H
A
D
vbo_save_api.c
962
node->
private_refcount
[i] = 0;
in compile_vertex_list()
/third_party/mesa3d/src/mesa/state_tracker/
H
A
D
st_sampler_view.c
49
if (sv->
private_refcount
) {
in st_remove_private_references()
50
assert(sv->
private_refcount
> 0);
in st_remove_private_references()
51
p_atomic_add(&sv->view->reference.count, -sv->
private_refcount
);
in st_remove_private_references()
52
sv->
private_refcount
= 0;
in st_remove_private_references()
61
if (unlikely(sv->
private_refcount
<= 0)) {
in get_sampler_view_reference()
62
assert(sv->
private_refcount
== 0);
in get_sampler_view_reference()
65
sv->
private_refcount
= 100000000;
in get_sampler_view_reference()
66
p_atomic_add(&view->reference.count, sv->
private_refcount
);
in get_sampler_view_reference()
70
sv->
private_refcount
--;
in get_sampler_view_reference()
H
A
D
st_texture.h
84
int
private_refcount
;
member
Completed in 38 milliseconds