OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:operator
(Results
1 - 25
of
30
) sorted by relevancy
1
2
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_placement_new.h
21
inline void *
operator
new(__sanitizer::operator_new_size_type sz, void *p) {
sanitizer_list.h
136
IteratorBase &
operator
++() {
140
bool
operator
!=(IteratorBase other) const {
143
ItemTy &
operator
*() {
sanitizer_allocator_bytemap.h
31
u8
operator
[] (uptr idx) {
76
u8
operator
[] (uptr idx) const {
sanitizer_vector.h
50
T &
operator
[](uptr i) {
55
const T &
operator
[](uptr i) const {
125
void
operator
=(const Vector&);
sanitizer_addrhashmap.h
32
// use h.
operator
->() to access the data
75
T *
operator
->();
76
T &
operator
*();
77
const T &
operator
*() const;
137
T *AddrHashMap<T, kSize>::Handle::
operator
->() {
142
const T &AddrHashMap<T, kSize>::Handle::
operator
*() const {
147
T &AddrHashMap<T, kSize>::Handle::
operator
*() {
sanitizer_common.h
441
T &
operator
[](uptr i) {
445
const T &
operator
[](uptr i) const {
529
bool
operator
==(const InternalMmapVectorNoCtor<T> &lhs,
536
bool
operator
!=(const InternalMmapVectorNoCtor<T> &lhs,
552
InternalMmapVector &
operator
=(const InternalMmapVector &) = delete;
554
InternalMmapVector &
operator
=(InternalMmapVector &&) = delete;
576
bool
operator
()(const T &a, const T &b) const { return a < b; }
764
const LoadedModule &
operator
[](uptr i) const {
958
inline void *
operator
new(__sanitizer::operator_new_size_type size,
/src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_new_delete.cc
46
void *
operator
new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
48
void *
operator
new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
50
void *
operator
new(size_t size, std::nothrow_t const&) {
54
void *
operator
new[](size_t size, std::nothrow_t const&) {
58
void *
operator
new(size_t size, std::align_val_t align)
61
void *
operator
new[](size_t size, std::align_val_t align)
64
void *
operator
new(size_t size, std::align_val_t align, std::nothrow_t const&)
67
void *
operator
new[](size_t size, std::align_val_t align, std::nothrow_t const&)
75
void
operator
delete(void *ptr) NOEXCEPT { OPERATOR_DELETE_BODY; }
77
void
operator
delete[](void *ptr) NOEXCEPT { OPERATOR_DELETE_BODY;
[
all
...]
/src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_new_delete.cc
63
void *
operator
new(__sanitizer::uptr size);
64
void *
operator
new(__sanitizer::uptr size) {
69
void *
operator
new[](__sanitizer::uptr size);
70
void *
operator
new[](__sanitizer::uptr size) {
75
void *
operator
new(__sanitizer::uptr size, std::nothrow_t const&);
76
void *
operator
new(__sanitizer::uptr size, std::nothrow_t const&) {
81
void *
operator
new[](__sanitizer::uptr size, std::nothrow_t const&);
82
void *
operator
new[](__sanitizer::uptr size, std::nothrow_t const&) {
87
void *
operator
new(__sanitizer::uptr size, std::align_val_t align);
88
void *
operator
new(__sanitizer::uptr size, std::align_val_t align)
[
all
...]
tsan_clock.h
46
Iter&
operator
++();
47
bool
operator
!=(const Iter& other);
48
ClockElem &
operator
*();
210
ALWAYS_INLINE SyncClock::Iter& SyncClock::Iter::
operator
++() {
217
ALWAYS_INLINE bool SyncClock::Iter::
operator
!=(const SyncClock::Iter& other) {
221
ALWAYS_INLINE ClockElem &SyncClock::Iter::
operator
*() {
tsan_mutexset.h
41
void
operator
=(const MutexSet &other) {
/src/games/dab/
random.cc
64
size_t RANDOM::
operator
() (void)
/src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_new_delete.cc
33
COMMENT_EXPORT("??2@YAPEAX_K@Z") //
operator
new
34
COMMENT_EXPORT("??2@YAPEAX_KAEBUnothrow_t@std@@@Z") //
operator
new nothrow
35
COMMENT_EXPORT("??3@YAXPEAX@Z") //
operator
delete
36
COMMENT_EXPORT("??3@YAXPEAX_K@Z") // sized
operator
delete
37
COMMENT_EXPORT("??_U@YAPEAX_K@Z") //
operator
new[]
38
COMMENT_EXPORT("??_V@YAXPEAX@Z") //
operator
delete[]
40
COMMENT_EXPORT("??2@YAPAXI@Z") //
operator
new
41
COMMENT_EXPORT("??2@YAPAXIABUnothrow_t@std@@@Z") //
operator
new nothrow
42
COMMENT_EXPORT("??3@YAXPAX@Z") //
operator
delete
43
COMMENT_EXPORT("??3@YAXPAXI@Z") // sized
operator
delet
[
all
...]
/src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerIO.h
64
bool
operator
<(const SizedFile &B) const { return Size < B.Size; }
FuzzerRandom.h
21
result_type
operator
()() { return this->std::mt19937::
operator
()(); }
22
size_t Rand() { return this->
operator
()(); }
24
size_t
operator
()(size_t n) { return n ? Rand() % n : 0; }
25
intptr_t
operator
()(intptr_t From, intptr_t To) {
28
return
operator
()(RangeSize) + From;
FuzzerDictionary.h
35
bool
operator
==(const FixedWord<kMaxSize> &w) const {
92
DictionaryEntry &
operator
[] (size_t Idx) {
FuzzerCommand.h
44
Command &
operator
=(const Command &Other) {
157
Command &
operator
=(Command &&Other) = delete;
/src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_segmented_array.h
95
Iterator &
operator
=(const Iterator &) XRAY_NEVER_INSTRUMENT = default;
96
Iterator &
operator
=(Iterator &&) XRAY_NEVER_INSTRUMENT = default;
99
Iterator &
operator
++() XRAY_NEVER_INSTRUMENT {
114
Iterator &
operator
--() XRAY_NEVER_INSTRUMENT {
127
Iterator
operator
++(int) XRAY_NEVER_INSTRUMENT {
133
Iterator
operator
--(int) XRAY_NEVER_INSTRUMENT {
140
friend bool
operator
==(const Iterator<V> &L,
146
friend bool
operator
!=(const Iterator<V> &L,
151
U &
operator
*() const XRAY_NEVER_INSTRUMENT {
162
U *
operator
->() const XRAY_NEVER_INSTRUMENT { return &(**this);
[
all
...]
xray_buffer_queue.h
87
Iterator &
operator
++() {
95
Iterator
operator
++(int) {
101
T &
operator
*() const { return Buffers[Offset].Buff; }
103
T *
operator
->() const { return &(Buffers[Offset].Buff); }
119
Iterator &
operator
=(const Iterator &) = default;
120
Iterator &
operator
=(Iterator &&) = default;
124
friend bool
operator
==(const Iterator &L, const Iterator<V> &R) {
130
friend bool
operator
!=(const Iterator &L, const Iterator<V> &R) {
xray_allocator.h
243
Allocator &
operator
=(const Allocator &) = delete;
260
Allocator &
operator
=(Allocator &&O) XRAY_NEVER_INSTRUMENT {
/src/common/dist/zlib/contrib/iostream2/
zstream.h
120
* Binary input with the '>'
operator
.
123
inline izstream&
operator
>(izstream& zs, T& x) {
136
* Read length of string + the string with the '>'
operator
.
138
inline izstream&
operator
>(izstream& zs, char* x) {
269
* Binary output with the '<'
operator
.
272
inline ozstream&
operator
<(ozstream& zs, const T& x) {
284
* Write length of string + the string with the '<'
operator
.
286
inline ozstream&
operator
<(ozstream& zs, const char* x) {
293
inline ozstream&
operator
<(ozstream& zs, char* const& x) {
299
* Ascii write with the <<
operator
;
[
all
...]
/src/common/dist/zlib/contrib/iostream/
zfstream.h
93
friend gzofstream &
operator
<<(gzofstream &, const gzomanip<T> &);
101
template<class T> gzofstream &
operator
<<(gzofstream &s, const gzomanip<T> &m)
/src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_interceptors.cc
215
// On OS X it's not enough to just provide our own '
operator
new' and
216
// '
operator
delete' implementations, because they're going to be in the runtime
224
void *
operator
new(size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
226
void *
operator
new[](size_t size) { OPERATOR_NEW_BODY(false /*nothrow*/); }
228
void *
operator
new(size_t size, std::nothrow_t const&)
231
void *
operator
new[](size_t size, std::nothrow_t const&)
234
void *
operator
new(size_t size, std::align_val_t align)
237
void *
operator
new[](size_t size, std::align_val_t align)
240
void *
operator
new(size_t size, std::align_val_t align, std::nothrow_t const&)
243
void *
operator
new[](size_t size, std::align_val_t align, std::nothrow_t const&
[
all
...]
/src/common/dist/zlib/contrib/iostream3/
zfstream.h
419
operator
<<(gzofstream&,
458
operator
<<(gzofstream& s, const gzomanip2<T1,T2>& m)
/src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.cc
113
Diag &Diag::
operator
<<(const TypeDescriptor &V) {
117
Diag &Diag::
operator
<<(const Value &V) {
/src/sys/external/bsd/compiler_rt/dist/lib/interception/
interception_win.cc
863
operator
T *() { return ptr_; }
864
T *
operator
->() { return ptr_; }
865
T *
operator
++() { return ++ptr_; }
Completed in 22 milliseconds
1
2
Indexes created Sat Sep 20 22:09:52 GMT 2025