/freebsd/share/man/man9/ |
H A D | vrele.9 | 37 .Nd decrement the use count for a vnode 48 Decrement the 53 the vnode to decrement 77 should call one of the listed function to decrement use counter.
|
/freebsd/contrib/ofed/opensm/include/complib/ |
H A D | cl_atomic.h | 107 * [in] Pointer to a 32-bit integer to decrement. 168 cl_atomic_sub(IN atomic32_t * const p_value, IN const int32_t decrement); 174 * decrement 175 * [in] Value by which to decrement the integer pointed to by p_value. 181 * The provided decrement is subtracted from the value and the result
|
H A D | cl_atomic_osd.h | 94 cl_atomic_sub(IN atomic32_t * const p_value, IN const int32_t decrement) in cl_atomic_sub() argument 99 new_val = *p_value - decrement; in cl_atomic_sub()
|
/freebsd/sys/contrib/ck/include/spinlock/ |
H A D | dec.h | 39 * This is similar to the CACAS lock but makes use of an atomic decrement 41 * idea is that a decrement operation is cheaper than a compare-and-swap. 86 * Only one thread is guaranteed to decrement lock to 0. in ck_spinlock_dec_lock() 129 * Unconditionally set lock value to 1 so someone can decrement lock in ck_spinlock_dec_unlock()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | fallible_iterator.h | 23 /// whose increment and decrement operations are replaced with fallible versions 36 /// instance. If the underlying increment/decrement operations fail, the Error 63 /// and/or decrement operation, and clears the unchecked flag when a non-end 134 /// Decrement the fallible iterator. 142 assert(getErrPtr() && "Cannot decrement end iterator"); 158 /// increment/decrement operations result in an end-of-range value, comparing
|
H A D | ilist_iterator.h | 44 template <class T> static void decrement(T *&I) { I = Access::getPrev(*I); } 50 template <class T> static void decrement(T *&I) { I = Access::getNext(*I); } 181 // Increment and decrement operators... 337 // Increment and decrement operators...
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineInstrBundleIterator.h | 73 /// Decrement forward ilist iterator. 74 template <class Iterator> static void decrement(Iterator &I) { 99 /// Decrement reverse ilist iterator. 100 template <class Iterator> static void decrement(Iterator &I) { 254 // Increment and decrement operators... 256 this->decrement(MII);
|
H A D | HardwareLoops.h | 22 std::optional<unsigned> Decrement; member 30 Decrement = Count; in setDecrement()
|
/freebsd/sys/arm/arm/ |
H A D | cpu_asm-v6.S | 81 subne r3, r3, r1 /* non-zero?, decrement set */ 82 subeq r3, r3, r2 /* zero?, decrement way and restore set count */ 130 subne r3, r3, r1 /* non-zero?, decrement set */ 131 subeq r3, r3, r2 /* zero?, decrement way and restore set count */ 177 subne r3, r3, r1 /* non-zero?, decrement set */ 178 subeq r3, r3, r2 /* zero?, decrement way and restore set count */
|
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/ |
H A D | tst.ptrincop.d | 31 * Verify increment/decrement operator using pointers 33 * SECTION: Types, Operators, and Expressions/Increment and Decrement Operators
|
/freebsd/contrib/googletest/googletest/samples/ |
H A D | sample4_unittest.cc | 41 EXPECT_EQ(0, c.Decrement()); in TEST() 50 EXPECT_EQ(3, c.Decrement()); in TEST()
|
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | DiagnosticASTKinds.td | 170 "%select{read of|read of|assignment to|increment of|decrement of|" 175 "%select{read of|read of|assignment to|increment of|decrement of|" 187 "%select{read of|read of|assignment to|increment of|decrement of|" 191 "%select{read of|read of|assignment to|increment of|decrement of|" 198 "%select{read of|read of|assignment to|increment of|decrement of|" 212 "%select{read of|read of|assignment to|increment of|decrement of|" 217 "%select{read of|read of|assignment to|increment of|decrement of|" 223 "%select{read of|read of|assignment to|increment of|decrement of|" 229 "%select{read of|read of|assignment to|increment of|decrement of|" 238 "%select{read of|read of|assignment to|increment of|decrement of|" [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/ |
H A D | PtrState.h | 44 S_CanRelease, ///< foo(x) -- x could possibly see a ref count decrement. 54 /// retain-decrement-use-release sequence or release-use-decrement-retain
|
/freebsd/contrib/llvm-project/libcxx/include/__filesystem/ |
H A D | path_iterator.h | 75 _LIBCPP_ASSERT_NON_NULL(__state_ != _Singular, "attempting to decrement a singular iterator"); 77 … __entry_.data() != __path_ptr_->native().data(), "attempting to decrement the begin iterator");
|
/freebsd/sys/contrib/dev/acpica/components/utilities/ |
H A D | utdelete.c | 554 /* Perform the reference count action (increment, decrement) */ in AcpiUtUpdateRefCount() 595 "Obj %p, Reference Count is already zero, cannot decrement\n", in AcpiUtUpdateRefCount() 610 Message = "Decrement"; in AcpiUtUpdateRefCount() 638 * PARAMETERS: Object - Increment or decrement the ref count for 644 * DESCRIPTION: Increment or decrement the object reference count 893 * DESCRIPTION: Decrement the reference count of an ACPI internal object 928 * Decrement the reference count, and only actually delete the object in AcpiUtRemoveReference() 929 * if the reference count becomes 0. (Must also decrement the ref count in AcpiUtRemoveReference()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | HardwareLoops.cpp | 12 /// another, in the exit block, to decrement the counter. The decremented value 66 LoopDecrement("hardware-loop-decrement", cl::Hidden, cl::init(1), 67 cl::desc("Set the loop decrement value")); 330 // Allow overriding of the counter width and loop decrement value. in TryConvertLoop() 335 if (Opts.Decrement.has_value()) in TryConvertLoop() 337 ConstantInt::get(HWLoopInfo.CountType, Opts.Decrement.value()); in TryConvertLoop()
|
/freebsd/contrib/llvm-project/libcxx/include/__stop_token/ |
H A D | intrusive_shared_ptr.h | 108 // the memory order for increment/decrement the counter is the same for shared_ptr 109 // increment is relaxed and decrement is acq_rel
|
/freebsd/sys/dev/qat/qat_common/ |
H A D | adf_dev_mgr.c | 362 * adf_dev_put() - Decrement accel_dev reference count 365 * Decrement the accel_dev refcount and if this is the last time 367 * decrement the module refcount too.
|
/freebsd/crypto/openssl/doc/internal/man3/ |
H A D | ossl_method_construct.pod | 65 subsystem destruct() method to decrement the reference count when 135 Decrement the I<method>'s reference count, and destruct it when
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/ |
H A D | LanaiMemAluCombiner.cpp | 76 bool Decrement); 329 MachineBasicBlock *BB, const MbbIterator &MemInstr, const bool Decrement) { in findClosestSuitableAluInstr() 335 MbbIterator Last = Decrement ? BB->begin() : BB->end(); in findClosestSuitableAluInstr() 338 Decrement ? --First : ++First; in findClosestSuitableAluInstr() 330 findClosestSuitableAluInstr(MachineBasicBlock * BB,const MbbIterator & MemInstr,const bool Decrement) findClosestSuitableAluInstr() argument
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | aggsum.c | 27 * where the write rate (increment/decrement) is much higher than the read rate 35 * counter (called the delta), and the amount of increment and decrement we have 49 * incremental from the upper bound, and add the borrowed decrement from the
|
/freebsd/contrib/elftoolchain/elfcopy/ |
H A D | elfcopy.1 | 200 specifies the desired increment, decrement or new value for the 230 will be used as an increment, a decrement or as the new value 238 will be used as an increment, a decrement or as the new value
|
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/i386/ |
H A D | udivdi3.S | 62 sbbl $0, %edi // decrement q if remainder is negative 94 sbbl $0, %edi // decrement q if remainder is negative
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Boolean.h | 121 static bool decrement(Boolean A, Boolean *R) { in decrement() function 122 llvm_unreachable("Cannot decrement booleans"); in decrement()
|
/freebsd/bin/sh/tests/expansion/ |
H A D | arith13.0 | 1 # Pre-increment and pre-decrement in arithmetic expansion are not in POSIX.
|