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:freed_mask
(Results
1 - 8
of
8
) sorted by relevance
/third_party/musl/src/malloc/mallocng/
H
A
D
free.c
76
uint32_t mask = g->
freed_mask
| g->avail_mask;
in nontrivial_free()
97
a_or(&g->
freed_mask
, self);
in nontrivial_free()
131
uint32_t freed = g->
freed_mask
;
in free()
137
g->
freed_mask
= freed+self;
in free()
138
else if (a_cas(&g->
freed_mask
, freed, freed+self)!=freed)
in free()
H
A
D
malloc.c
184
if (!m->
freed_mask
) {
in try_avail()
193
mask = m->
freed_mask
;
in try_avail()
200
mask = m->
freed_mask
;
in try_avail()
346
m->
freed_mask
= (2u<<(cnt-1))-1 - m->avail_mask;
in alloc_group()
400
g->avail_mask = g->
freed_mask
= 0;
in malloc()
422
&& !ctx.active[sc|1]->
freed_mask
))
in malloc()
H
A
D
meta.h
27
volatile int avail_mask,
freed_mask
;
member
134
do mask = m->
freed_mask
;
in activate_group()
135
while (a_cas(&m->
freed_mask
, mask, mask&~act)!=mask);
in activate_group()
159
assert(!(meta->
freed_mask
& (1u<<index)));
in get_meta()
H
A
D
donate.c
21
m->
freed_mask
= 1;
in donate()
/third_party/musl/porting/linux/user/src/malloc/mallocng/
H
A
D
malloc.c
180
if (!m->
freed_mask
) {
in try_avail()
189
mask = m->
freed_mask
;
in try_avail()
196
mask = m->
freed_mask
;
in try_avail()
341
m->
freed_mask
= (2u<<(cnt-1))-1 - m->avail_mask;
in alloc_group()
393
g->avail_mask = g->
freed_mask
= 0;
in malloc()
415
&& !ctx.active[sc|1]->
freed_mask
))
in malloc()
H
A
D
meta.h
27
volatile int avail_mask,
freed_mask
;
member
134
do mask = m->
freed_mask
;
in activate_group()
135
while (a_cas(&m->
freed_mask
, mask, mask&~act)!=mask);
in activate_group()
159
assert(!(meta->
freed_mask
& (1u<<index)));
in get_meta()
H
A
D
donate.c
21
m->
freed_mask
= 1;
in donate()
/third_party/musl/src/malloc/oldmallocng/
H
A
D
mallinfo.c
41
int mask = g->avail_mask | g->
freed_mask
;
in accumulate_meta()
Completed in 4 milliseconds