OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RefCount
(Results
1 - 13
of
13
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
AliasAnalysisEvaluator.h
36
int64_t NoModRefCount, ModCount,
RefCount
, ModRefCount;
42
MustAliasCount(), NoModRefCount(), ModCount(),
RefCount
(),
50
ModCount(Arg.ModCount),
RefCount
(Arg.
RefCount
),
AliasSetTracker.h
153
unsigned
RefCount
: 27;
186
void addRef() { ++
RefCount
; }
189
assert(
RefCount
>= 1 && "Invalid reference count detected!");
190
if (--
RefCount
== 0)
275
: PtrListEnd(&PtrList),
RefCount
(0), AliasAny(false), Access(NoAccess),
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
IntrusiveRefCntPtr.h
14
//
refcount
member variable and methods for updating the
refcount
. An object
16
//
refcount
hits zero.
23
// // Constructing an IntrusiveRefCntPtr increases the pointee's
refcount
by
27
// // Copying an IntrusiveRefCntPtr increases the pointee's
refcount
by 1.
31
// //
refcount
. After a move, the moved-from pointer is null.
35
// // Clearing an IntrusiveRefCntPtr decreases the pointee's
refcount
by 1.
39
// // Ptr3's destructor decrements its
refcount
to 0.
69
///
refcount
, respectively. When a Release() call decrements the
refcount
to 0
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/Rewrite/Core/
RewriteRope.h
34
unsigned
RefCount
;
37
void Retain() { ++
RefCount
; }
40
assert(
RefCount
> 0 && "Reference count is already zero.");
41
if (--
RefCount
== 0)
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
InterferenceCache.h
53
///
RefCount
- The total number of Cursor instances referring to this Entry.
54
unsigned
RefCount
= 0;
113
void addRef(int Delta) {
RefCount
+= Delta; }
115
bool hasRefs() const { return
RefCount
> 0; }
183
// Update reference counts. Nothing happens when
RefCount
reaches 0, so
/src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_buffer_queue.cc
47
if (atomic_fetch_sub(&C->
RefCount
, 1, memory_order_acq_rel) == 1)
54
atomic_fetch_add(&C->
RefCount
, 1, memory_order_acq_rel);
114
// First, we initialize the
refcount
in the ControlBlock, which we treat as
116
atomic_store(&BackingStore->
RefCount
, 1, memory_order_release);
117
atomic_store(&ExtentsBackingStore->
RefCount
, 1, memory_order_release);
xray_buffer_queue.h
45
atomic_uint64_t
RefCount
;
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
AliasAnalysisEvaluator.cpp
252
++
RefCount
;
299
++
RefCount
;
362
int64_t ModRefSum = NoModRefCount +
RefCount
+ ModCount + ModRefCount +
373
errs() << " " <<
RefCount
<< " ref responses ";
374
PrintPercent(
RefCount
, ModRefSum);
387
<< ModCount * 100 / ModRefSum << "%/" <<
RefCount
* 100 / ModRefSum
AliasSetTracker.cpp
127
assert(
RefCount
== 0 && "Cannot remove non-dead alias set from tracker!");
647
OS << " AliasSet[" << (const void*)this << ", " <<
RefCount
<< "] ";
/src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsConstantIslandPass.cpp
306
unsigned
RefCount
;
309
: CPEMI(cpemi), CPI(cpi),
RefCount
(rc) {}
772
CPE->
RefCount
++;
1017
/// and instruction CPEMI, and decrement its
refcount
. If the
refcount
1025
if (--CPE->
RefCount
== 0) {
1074
// Adjust the
refcount
of the clone...
1075
CPEs[i].
RefCount
++;
1130
// Adjust the
refcount
of the clone...
1131
CPEs[i].
RefCount
++
[
all
...]
/src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h
157
// This should come right before
RefCount
, so that the two fields can be
164
mutable unsigned
RefCount
= 0;
166
void Retain() const { ++
RefCount
; }
1454
assert(
RefCount
> 0 && "Reference count is already zero.");
1455
--
RefCount
;
1457
if (
RefCount
> 0)
/src/external/apache2/llvm/dist/clang/lib/Rewrite/
RewriteRope.cpp
790
Res->
RefCount
= 0;
800
Res->
RefCount
= 0;
/src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMConstantIslandPass.cpp
161
unsigned
RefCount
;
164
: CPEMI(cpemi), CPI(cpi),
RefCount
(rc) {}
892
CPE->
RefCount
++;
1145
/// and instruction CPEMI, and decrement its
refcount
. If the
refcount
1153
if (--CPE->
RefCount
== 0) {
1208
// Adjust the
refcount
of the clone...
1209
CPEs[i].
RefCount
++;
1574
// Decrement the old entry, and remove it if
refcount
becomes 0.
1633
if (CPEs[j].
RefCount
== 0 && CPEs[j].CPEMI)
[
all
...]
Completed in 63 milliseconds
Indexes created Tue Feb 24 08:35:24 UTC 2026