HomeSort by: relevance | last modified time | path
    Searched refs:operator (Results 1 - 25 of 114) sorted by relevancy

1 2 3 4 5

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
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;
  /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_vector.h 50 T &operator[](uptr i) {
55 const T &operator[](uptr i) const {
125 void operator=(const Vector&);
sanitizer_stoptheworld.h 49 void operator=(const SuspendedThreadsList&);
  /src/usr.bin/make/unit-tests/
dep.exp 1 make: dep.mk:11: Inconsistent operator for only-colon
2 make: dep.mk:13: Inconsistent operator for only-colon
cond-op-and.exp 4 make: cond-op-and.mk:60: Unknown operator "&"
5 make: cond-op-and.mk:66: Unknown operator "&"
6 make: cond-op-and.mk:72: Unknown operator "&"
7 make: cond-op-and.mk:78: Unknown operator "&"
8 make: cond-op-and.mk:87: Unknown operator "&"
cond-op-or.exp 4 make: cond-op-or.mk:60: Unknown operator "|"
5 make: cond-op-or.mk:66: Unknown operator "|"
6 make: cond-op-or.mk:72: Unknown operator "|"
7 make: cond-op-or.mk:78: Unknown operator "|"
8 make: cond-op-or.mk:87: Unknown operator "|"
sh.mk 4 # assignment operator or the :sh variable modifier.
7 # var-op-shell.mk for the assignment operator '!='
cond-op-and-lint.exp 1 make: cond-op-and-lint.mk:10: Unknown operator "&"
cond-op-or-lint.exp 1 make: cond-op-or-lint.mk:10: Unknown operator "|"
cond-op-and.mk 3 # Tests for the && operator in .if conditions.
56 # The && operator may be abbreviated as &. This is not widely known though
59 # expect+1: Unknown operator "&"
65 # expect+1: Unknown operator "&"
71 # expect+1: Unknown operator "&"
77 # expect+1: Unknown operator "&"
84 # There is no operator '&&&'. The first two '&&' form an operator, the third
86 # expect+1: Unknown operator "&"
93 # The '&&' operator must be preceded by whitespace, otherwise it becomes par
    [all...]
cond-op-or.mk 3 # Tests for the || operator in .if conditions.
56 # The || operator may be abbreviated as |. This is not widely known though
59 # expect+1: Unknown operator "|"
65 # expect+1: Unknown operator "|"
71 # expect+1: Unknown operator "|"
77 # expect+1: Unknown operator "|"
84 # There is no operator '|||'. The first two '||' form an operator, the third
86 # expect+1: Unknown operator "|"
93 # The '||' operator must be preceded by whitespace, otherwise it becomes par
    [all...]
dep.mk 8 # restricted to this dependency operator and cannot use the others anymore.
10 # expect+1: Inconsistent operator for only-colon
12 # expect+1: Inconsistent operator for only-colon
14 # Ensure that the target still has the original operator. If it hadn't, there
var-op-sunsh.mk 3 # Tests for the :sh= variable assignment operator, which runs its right-hand
5 # assignment operator, adopted from Sun make.
9 # This is the idiomatic form of the Sun shell assignment operator.
10 # The assignment operator is directly preceded by the ':sh'.
17 # operator modifier.
28 # 'VAR:shell', using the '=' assignment operator.
39 # assignment operator.
53 # The variable modifier ':sh' and the assignment operator modifier ':sh'.
55 # 2020-10-04, the parser regarded it as an assignment operator modifier, in
63 # was taken for the :sh assignment operator modifier, even though it wa
    [all...]
dep-exclam.mk 3 # Tests for the ! operator in dependency declarations, which always re-creates
cmdline-undefined.mk 7 # '=' assignment operator do get their variable name expanded
17 @echo 'The = assignment operator'
22 # The interesting case is using the ':=' assignment operator, which
31 @echo 'The := assignment operator'
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_recursion_guard.h 44 inline RecursionGuard &operator=(const RecursionGuard &) = delete;
45 inline RecursionGuard &operator=(RecursionGuard &&) = delete;
47 explicit inline operator bool() const { return Valid; }
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) {
  /src/sbin/shutdown/
Makefile 8 BINGRP= operator
  /src/etc/rc.d/
lvmlockdir 17 # create LVM locking directory, it needs to be owned by operator
21 chown root:operator /var/run/lvm
  /src/games/dab/
random.h 48 size_t operator () (void); // Next random
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_stack_trace.h 38 void operator=(const VarSizeStackTrace &);
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*() {
  /src/usr.bin/find/
Makefile 7 SRCS= find.c function.c ls.c main.c misc.c operator.c option.c
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.h 206 Diag &operator=(const Diag &);
214 Diag &operator<<(const char *Str) { return AddArg(Str); }
215 Diag &operator<<(TypeName TN) { return AddArg(TN); }
216 Diag &operator<<(unsigned long long V) { return AddArg(UIntMax(V)); }
217 Diag &operator<<(const void *V) { return AddArg(V); }
218 Diag &operator<<(const TypeDescriptor &V);
219 Diag &operator<<(const Value &V);
220 Diag &operator<<(const Range &R) { return AddRange(R); }

Completed in 21 milliseconds

1 2 3 4 5