Searched refs:inc (Results 26 - 50 of 319) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Datomic_flag_test_and_set_explicit.c14 #define __has_include(inc) 0
H A Datomic_signal_fence.c14 #define __has_include(inc) 0
H A Datomic_thread_fence.c14 #define __has_include(inc) 0
/freebsd-13-stable/sys/mips/include/
H A Dcounter.h84 #define counter_u64_add_protected(c, inc) do { \
86 *(uint64_t *)zpcpu_get(c) += (inc); \
90 counter_u64_add(counter_u64_t c, int64_t inc) argument
94 counter_u64_add_protected(c, inc);
/freebsd-13-stable/sys/riscv/include/
H A Dcounter.h77 #define counter_u64_add_protected(c, inc) counter_u64_add(c, inc)
80 counter_u64_add(counter_u64_t c, int64_t inc) argument
83 atomic_add_64((uint64_t *)zpcpu_get(c), inc);
/freebsd-13-stable/sys/arm/include/
H A Dcounter.h82 #define counter_u64_add_protected(c, inc) counter_u64_add(c, inc)
85 counter_u64_add(counter_u64_t c, int64_t inc) argument
88 atomic_add_64((uint64_t *)zpcpu_get(c), inc);
/freebsd-13-stable/sys/arm64/include/
H A Dcounter.h78 #define counter_u64_add_protected(c, inc) counter_u64_add(c, inc)
81 counter_u64_add(counter_u64_t c, int64_t inc) argument
84 atomic_add_64((uint64_t *)zpcpu_get(c), inc);
/freebsd-13-stable/share/doc/legal/
H A DMakefile11 .include <bsd.arch.inc.mk>
/freebsd-13-stable/tools/tools/ath/ath_ee_v14_print/
H A DMakefile8 .include <../Makefile.inc>
/freebsd-13-stable/lib/googletest/
H A DMakefile.inc3 .include <googletest.test.inc.mk>
/freebsd-13-stable/sys/modules/sgx/
H A DMakefile8 DPSRCS= assym.inc
10 sgx_support.o: assym.inc
/freebsd-13-stable/sys/powerpc/include/
H A Dcounter.h87 counter_u64_add(counter_u64_t c, int64_t inc) argument
99 : "r" ((char *)c - (char *)&__pcpu[0]), "r" (inc)
148 #define counter_u64_add_protected(c, inc) do { \
150 *(uint64_t *)zpcpu_get(c) += (inc); \
154 counter_u64_add(counter_u64_t c, int64_t inc) argument
158 counter_u64_add_protected(c, inc);
/freebsd-13-stable/sys/i386/include/
H A Dcounter.h54 counter_64_inc_8b(uint64_t *p, int64_t inc) argument
68 : "S" ((char *)p - (char *)&__pcpu[0]), "D" (&inc)
178 #define counter_u64_add_protected(c, inc) do { \
181 *(uint64_t *)zpcpu_get(c) += (inc); \
183 counter_64_inc_8b((c), (inc)); \
187 counter_u64_add(counter_u64_t c, int64_t inc) argument
192 *(uint64_t *)zpcpu_get(c) += inc;
195 counter_64_inc_8b(c, inc);
/freebsd-13-stable/tools/tools/ath/ath_ee_9287_print/
H A DMakefile9 .include <../Makefile.inc>
/freebsd-13-stable/tools/tools/ath/ath_ee_9300_print/
H A DMakefile15 .include <../Makefile.inc>
/freebsd-13-stable/tools/tools/ath/ath_ee_v4k_print/
H A DMakefile9 .include <../Makefile.inc>
/freebsd-13-stable/tools/tools/ath/athalq/
H A DMakefile11 .include <../Makefile.inc>
/freebsd-13-stable/tools/tools/ath/athkey/
H A DMakefile15 .include <../Makefile.inc>
/freebsd-13-stable/tools/tools/ath/athradar/
H A DMakefile5 .include <../Makefile.inc>
/freebsd-13-stable/tools/tools/ath/athspectral/
H A DMakefile5 .include <../Makefile.inc>
/freebsd-13-stable/tools/tools/ath/athsurvey/
H A DMakefile5 .include <../Makefile.inc>
/freebsd-13-stable/tools/tools/shlib-compat/test/libtestsys/
H A DMakefile7 .include <../Makefile.inc>
/freebsd-13-stable/sys/netpfil/ipfw/
H A Ddn_sched_fq_codel.h99 int inc = 0; local
102 inc = -1;
104 inc = 1;
115 si->main_q.ni.length += inc;
119 q->stats.length += inc;
123 si->_si.ni.length += inc;
127 if (inc > 0) {
H A Ddn_aqm.h124 int inc = 0; local
132 inc = -1;
134 inc = 1;
142 qni->length += inc;
146 sni->length += inc;
/freebsd-13-stable/contrib/bc/src/
H A Drand.c127 r->inc |= (BcRandState) 1UL;
129 r->inc.lo |= (uint_fast64_t) 1UL;
136 r->inc &= ~((BcRandState) 1UL);
138 r->inc.lo &= ~(1UL);
199 BcRandState inc; local
202 inc = r->inc | 1;
204 inc.lo = r->inc.lo | 1;
205 inc
386 BcRandState inc; local
[all...]

Completed in 113 milliseconds

1234567891011>>