OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kFreedBit
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
tsan_shadow.h
88
static const u64
kFreedBit
= 1ull << 63;
179
void MarkAsFreed() { x_ |=
kFreedBit
; }
181
bool IsFreed() const { return x_ &
kFreedBit
; }
184
bool res = x_ &
kFreedBit
;
185
x_ &= ~
kFreedBit
;
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_rtl.h
177
static const u64
kFreedBit
= 1ull << 63;
278
x_ |=
kFreedBit
;
282
return x_ &
kFreedBit
;
286
bool res = x_ &
kFreedBit
;
287
x_ &= ~
kFreedBit
;
Completed in 60 milliseconds
Indexes created Thu Apr 02 00:23:07 UTC 2026