Home
last modified time | relevance | path

Searched full:decrement (Results 1 – 25 of 602) sorted by relevance

12345678910>>...25

/freebsd/share/man/man9/
H A Dvrele.937 .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 Dcl_atomic.h107 * [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 Dcl_atomic_osd.h94 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 Ddec.h39 * 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 Dfallible_iterator.h23 /// 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 Dilist_iterator.h44 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 DMachineInstrBundleIterator.h73 /// 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 DHardwareLoops.h22 std::optional<unsigned> Decrement; member
30 Decrement = Count; in setDecrement()
/freebsd/sys/arm/arm/
H A Dcpu_asm-v6.S81 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 Dtst.ptrincop.d31 * Verify increment/decrement operator using pointers
33 * SECTION: Types, Operators, and Expressions/Increment and Decrement Operators
/freebsd/contrib/googletest/googletest/samples/
H A Dsample4_unittest.cc41 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 DDiagnosticASTKinds.td170 "%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 DPtrState.h44 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 Dpath_iterator.h75 _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 Dutdelete.c554 /* 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 DHardwareLoops.cpp12 /// 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 Dintrusive_shared_ptr.h108 // 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 Dadf_dev_mgr.c362 * 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 Dossl_method_construct.pod65 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 DLanaiMemAluCombiner.cpp76 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 Daggsum.c27 * 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 Delfcopy.1200 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 Dudivdi3.S62 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 DBoolean.h121 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 Darith13.01 # Pre-increment and pre-decrement in arithmetic expansion are not in POSIX.

12345678910>>...25