Searched refs:increment (Results 1 - 25 of 84) sorted by relevance

1234

/freebsd-9.3-release/contrib/ntp/libntp/
H A Dadjtime.c301 long increment; local
321 * Compute count and nanoseconds increment
324 increment = delta_nsec / count + .5;
326 if (count > increment + 1)
328 increment = 1 + (long)((delta_nsec - 1) / count);
329 count = delta_nsec / increment + .5;
333 * Limit the adjust increment to appropriate value
336 if (increment > increment_limit)
338 increment = increment_limit;
339 count = delta_nsec / increment
[all...]
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dstrcollect.c45 enum { initial = 10, increment = 5 }; enumerator in enum:__anon4674
53 char **tmp = realloc(argv, (argc + increment) * sizeof(*argv));
60 argc += increment;
/freebsd-9.3-release/contrib/ofed/management/opensm/include/complib/
H A Dcl_atomic.h77 * [in] Pointer to a 32-bit integer to increment.
136 cl_atomic_add(IN atomic32_t * const p_value, IN const int32_t increment);
142 * increment
143 * [in] Value by which to increment the integer pointed to by p_value.
149 * The provided increment is added to the value and the result returned in
H A Dcl_atomic_osd.h80 cl_atomic_add(IN atomic32_t * const p_value, IN const int32_t increment) argument
85 new_val = *p_value + increment;
/freebsd-9.3-release/cddl/contrib/opensolaris/common/ctf/
H A Dctf_types.c36 ssize_t size, increment; local
41 increment = sizeof (ctf_type_t);
44 increment = sizeof (ctf_stype_t);
50 *incrementp = increment;
64 ssize_t size, increment; local
74 (void) ctf_get_ctt_size(fp, tp, &size, &increment);
82 ((uintptr_t)tp + increment);
93 ((uintptr_t)tp + increment);
116 ssize_t increment; local
129 (void) ctf_get_ctt_size(fp, tp, NULL, &increment);
393 ssize_t size, increment; local
507 ssize_t increment; local
631 ssize_t size, increment; local
682 ssize_t increment; local
710 ssize_t increment; local
747 ssize_t size, increment; local
790 ssize_t size, increment; local
[all...]
H A Dctf_open.c229 ssize_t size, increment; local
234 (void) ctf_get_ctt_size(fp, tp, &size, &increment);
252 ((uintptr_t)tp + increment);
259 ((uintptr_t)tp + increment);
297 tp = (ctf_type_t *)((uintptr_t)tp + increment + vbytes);
349 ssize_t size, increment; local
356 (void) ctf_get_ctt_size(fp, tp, &size, &increment);
502 tp = (ctf_type_t *)((uintptr_t)tp + increment + vbytes);
/freebsd-9.3-release/contrib/groff/src/roff/troff/
H A Dreg.h27 virtual void increment();
49 void increment();
/freebsd-9.3-release/lib/libc/mips/string/
H A Dstrlen.S51 PTR_ADDU a0, a0, 1 # increment pointer
/freebsd-9.3-release/contrib/libc++/src/
H A Dmemory.cpp22 increment(T& t) _NOEXCEPT
53 increment(__shared_owners_);
80 increment(__shared_weak_owners_);
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Ddispatch.h258 unsigned int buckets, unsigned int increment,
267 unsigned int buckets, unsigned int increment,
285 *\li increment > buckets
299 unsigned int buckets, unsigned int increment,
313 * "increment" is used in a collision avoidance function, and needs to be
332 *\li increment > buckets (and prime).
524 * Retrieve the next dispatch from dispatch set 'dset', and increment
/freebsd-9.3-release/contrib/llvm/lib/MC/
H A DMCObjectSymbolizer.cpp57 SI != SE; SI.increment(ec)) {
96 SI.increment(ec);
164 SI != SE; SI.increment(ec)) {
244 SI != SE; SI.increment(ec)) {
268 SI != SE; SI.increment(ec)) {
283 RI.increment(ec)) {
/freebsd-9.3-release/contrib/gperf/src/
H A Dhash-table.cc148 unsigned int increment = local
152 /* Note that because _size is a power of 2 and increment is odd,
153 we have gcd(increment,_size) = 1, which guarantees that we'll find
162 probe = (probe + increment) & (_size - 1);
/freebsd-9.3-release/contrib/gcc/
H A Dtree-stdarg.c279 unsigned HOST_WIDE_INT increment; local
297 && (increment = va_list_counter_bump (si, ap, var, gpr_p)) + 1 > 1)
299 if (gpr_p && cfun->va_list_gpr_size + increment < VA_LIST_MAX_GPR_SIZE)
301 cfun->va_list_gpr_size += increment;
305 if (!gpr_p && cfun->va_list_fpr_size + increment < VA_LIST_MAX_FPR_SIZE)
307 cfun->va_list_fpr_size += increment;
413 unsigned HOST_WIDE_INT increment; local
426 increment = va_list_counter_bump (si, ap, tem2, true);
427 if (increment + 1 <= 1)
430 if (cfun->va_list_gpr_size + increment < VA_LIST_MAX_GPR_SIZ
[all...]
/freebsd-9.3-release/sys/netgraph/
H A Dng_source.c123 struct mbuf *m, int increment);
837 struct mbuf *m, int increment)
846 if (increment) {
847 cnt->next_val += increment;
849 if (increment > 0 && cnt->next_val > cnt->max_val) {
854 } else if (increment < 0 && cnt->next_val < cnt->min_val) {
871 int i, increment; local
900 increment = cnt->increment;
902 increment
836 ng_source_mod_counter(sc_p sc, struct ng_source_embed_cnt_info *cnt, struct mbuf *m, int increment) argument
[all...]
H A Dng_source.h88 #define NGM_SOURCE_INC_CNT_PER_LIST 0x02 /* increment once per list */
106 int32_t increment; member in struct:ng_source_embed_cnt_info
118 { "increment", &ng_parse_int32_type }, \
/freebsd-9.3-release/contrib/llvm/tools/llvm-readobj/
H A DMachODumper.cpp229 SecI != SecE; SecI.increment(EC)) {
267 RelI != RelE; RelI.increment(EC)) {
278 SymI != SymE; SymI.increment(EC)) {
304 SecI != SecE; SecI.increment(EC)) {
314 RelI != RelE; RelI.increment(EC)) {
389 SymI != SymE; SymI.increment(EC)) {
/freebsd-9.3-release/sys/cddl/dev/fbt/
H A Dfbt.c655 ssize_t size, increment; local
660 increment = sizeof (ctf_type_t);
663 increment = sizeof (ctf_stype_t);
669 *incrementp = increment;
703 ssize_t size, increment; local
708 (void) fbt_get_ctt_size(hp->cth_version, tp, &size, &increment);
725 ((uintptr_t)tp + increment);
732 ((uintptr_t)tp + increment);
770 tp = (ctf_type_t *)((uintptr_t)tp + increment + vbytes);
792 ssize_t size, increment; local
1015 ssize_t increment; local
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgdbcore.h93 CORE_ADDR startaddr, int increment,
H A Dcorefile.c389 int increment, CORE_ADDR lorange, CORE_ADDR hirange,
406 curaddr += increment;
/freebsd-9.3-release/contrib/llvm/lib/Object/
H A DObject.cpp86 unwrap(SI)->increment(ec);
113 unwrap(SI)->increment(ec);
171 unwrap(SI)->increment(ec);
/freebsd-9.3-release/contrib/ncurses/ncurses/trace/
H A Dlib_trace.c75 _nc_count_outchars(long increment) argument
78 SP->_outchars += increment;
80 _nc_prescreen._outchars += increment;
/freebsd-9.3-release/contrib/llvm/tools/llvm-objdump/
H A DCOFFDump.cpp237 i != e; i = i.increment(ec)) {
287 SI != SE; SI.increment(ec)) {
299 RI != RE; RI.increment(ec)) {
H A DMachODump.cpp159 SE = MachOObj->end_symbols(); SI != SE; SI.increment(ec))
163 SE = MachOObj->end_sections(); SI != SE; SI.increment(ec)) {
275 DI != DE; DI.increment(ec)){
334 RE = Sections[SectIdx].end_relocations(); RI != RE; RI.increment(ec)) {
/freebsd-9.3-release/contrib/gdtoa/
H A DstrtoIg.c63 b1 = increment(b1);
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A DAtomic.cpp68 # error No atomic increment implementation for your platform!

Completed in 168 milliseconds

1234