Home
last modified time | relevance | path

Searched full:increment (Results 1 – 25 of 1589) sorted by relevance

12345678910>>...64

/freebsd/contrib/libsamplerate/
H A Dsrc_sinc.c226 priv->index_inc = fastest_coeffs.increment ; in sinc_filter_new()
233 priv->index_inc = slow_mid_qual_coeffs.increment ; in sinc_filter_new()
240 priv->index_inc = slow_high_qual_coeffs.increment ; in sinc_filter_new()
373 calc_output_single (SINC_FILTER *filter, increment_t increment, increment_t start_filter_index) in calc_output_single() argument
383 coeff_count = (max_filter_index - filter_index) / increment ; in calc_output_single()
384 filter_index = filter_index + coeff_count * increment ; in calc_output_single()
390 assert (steps <= int_div_ceil (filter_index, increment)) ; in calc_output_single()
391 filter_index -= increment * steps ; in calc_output_single()
404 filter_index -= increment ; in calc_output_single()
409 filter_index = increment - start_filter_index ; in calc_output_single()
[all …]
/freebsd/cddl/contrib/opensolaris/common/ctf/
H A Dctf_types.c92 ssize_t size, increment; in ctf_get_ctt_size() local
99 increment = sizeof (struct ctf_type_v2); in ctf_get_ctt_size()
102 increment = sizeof (struct ctf_stype_v2); in ctf_get_ctt_size()
109 increment = sizeof (struct ctf_type_v3); in ctf_get_ctt_size()
112 increment = sizeof (struct ctf_stype_v3); in ctf_get_ctt_size()
119 *incrementp = increment; in ctf_get_ctt_size()
131 size_t increment; in ctf_get_ctm_info() local
142 increment = sizeof(*ctm); in ctf_get_ctm_info()
149 increment = sizeof(*ctlm); in ctf_get_ctm_info()
158 increment = sizeof(*ctm); in ctf_get_ctm_info()
[all …]
/freebsd/contrib/ntp/libntp/
H A Dadjtime.c301 long increment; in adjtime() local
321 * Compute count and nanoseconds increment in adjtime()
324 increment = delta_nsec / count + .5; in adjtime()
326 if (count > increment + 1) in adjtime()
328 increment = 1 + (long)((delta_nsec - 1) / count); in adjtime()
329 count = delta_nsec / increment + .5; in adjtime()
333 * Limit the adjust increment to appropriate value in adjtime()
336 if (increment > increment_limit) in adjtime()
338 increment = increment_limit; in adjtime()
339 count = delta_nsec / increment in adjtime()
[all...]
/freebsd/contrib/elftoolchain/elfcopy/
H A Delfcopy.158 .Fl -adjust-start Ns = Ns Ar increment |
59 .Fl -change-start Ns = Ns Ar increment
62 .Fl -adjust-vma Ns = Ns Ar increment |
63 .Fl -change-addresses Ns = Ns Ar increment
200 specifies the desired increment, decrement or new value for the
203 .Fl -adjust-start Ns = Ns Ar increment |
204 .Fl -change-start Ns = Ns Ar increment
208 .Ar increment .
210 .Fl -adjust-vma Ns = Ns Ar increment |
211 .Fl -change-addresses Ns = Ns Ar increment
[all …]
/freebsd/lib/libc/powerpc64/string/
H A Dbcopy.S88 /* Just need to setup increment and jump to copy */
183 add %r4, %r4, %r0 /* increment */
185 add %r3, %r3, %r0 /* increment */
217 li %r0, 1 /* increment for phases 1 and 3 */
218 li %r5, BLOCK_SIZE /* increment for phase 2 */
226 std %r8, -16(%r1) /* 16-byte increment (16) */
237 li %r0, -1 /* increment for phases 1 and 3 */
239 li %r5, -BLOCK_SIZE /* increment for phase 2 */
251 std %r6, -16(%r1) /* 16-byte increment (-16) */
263 add %r4, %r4, %r0 /* phase 1 increment */
[all …]
/freebsd/sys/contrib/device-tree/Bindings/dma/stm32/
H A Dst,stm32-dma.yaml19 -bit 9: Peripheral Increment Address
20 0x0: no address increment between transfers
21 0x1: increment address between transfers
22 -bit 10: Memory Increment Address
23 0x0: no address increment between transfers
24 0x1: increment address between transfers
25 -bit 15: Peripheral Increment Offset Size
/freebsd/sys/contrib/device-tree/Bindings/dma/
H A Dst,stm32-dma.yaml19 -bit 9: Peripheral Increment Address
20 0x0: no address increment between transfers
21 0x1: increment address between transfers
22 -bit 10: Memory Increment Address
23 0x0: no address increment between transfers
24 0x1: increment address between transfers
25 -bit 15: Peripheral Increment Offset Size
H A Dst,stm32-mdma.yaml22 -bit 0-1: Source increment mode
26 -bit 2-3: Destination increment mode
30 -bit 8-9: Source increment offset size
35 -bit 10-11: Destination increment offset size
/freebsd/lib/libpmc/pmu-events/arch/x86/amdzen3/
H A Dfloating-point.json6 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
13 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
20 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
27 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
34 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
46 …Event since it can count above 15 events per cycle. See 2.1.17.3 [Large Increment per Cycle Events…
52 …Event since it can count above 15 events per cycle. See 2.1.17.3 [Large Increment per Cycle Events…
58 …Event since it can count above 15 events per cycle. See 2.1.17.3 [Large Increment per Cycle Events…
64 …Event since it can count above 15 events per cycle. See 2.1.17.3 [Large Increment per Cycle Events…
/freebsd/contrib/opencsd/decoder/source/
H A Docsd_gen_elem_list.cpp122 int increment; in growArray() local
125 increment = 8; in growArray()
127 increment = m_elemArraySize / 2; // grow by 50% in growArray()
130 p_new_array = new (std::nothrow) elemPtr_t[m_elemArraySize+increment]; in growArray()
134 // fill the last increment elements with new objects in growArray()
135 for(int i=0; i < increment; i++) in growArray()
157 m_elemArraySize += increment; in growArray()
H A Docsd_gen_elem_stack.cpp72 // if there is a least one element then copy and increment in addElem()
143 const int increment = 4; in growArray() local
145 p_new_array = new (std::nothrow) elemPtr_t[m_elemArraySize + increment]; in growArray()
151 // fill the last increment elements with new objects in growArray()
152 for (int i = 0; i < increment; i++) in growArray()
173 m_elemArraySize += increment; in growArray()
/freebsd/contrib/googletest/googletest/samples/
H A Dsample4_unittest.cc35 // Tests the Increment() method.
37 TEST(Counter, Increment) { in TEST() argument
46 EXPECT_EQ(0, c.Increment()); in TEST()
47 EXPECT_EQ(1, c.Increment()); in TEST()
48 EXPECT_EQ(2, c.Increment()); in TEST()
/freebsd/lib/libpmc/pmu-events/arch/x86/amdzen1/
H A Dfloating-point.json6 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
13 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
20 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
27 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
34 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
41 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
48 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
55 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
62 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
69 …ions performed by x87, MMX, and SSE instructions, including moves. Each increment represents a one…
/freebsd/usr.bin/seq/
H A Dseq.1137 Generate a sequence from 1 to 3 (included) with a default increment of 1:
145 Generate a sequence from 3 to 1 (included) with a default increment of -1:
153 Generate a sequence from 0 to 0.1 (included) with an increment of 0.05 and padding
162 Generate a sequence from 1 to 3 (included) with a default increment of 1,
169 Generate a sequence from 1 to 2 (included) with an increment of 0.2 and
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopFlatten.cpp41 // linear expressions and other loop components like the loop increment. The
45 // We assume the loops to be canonical, i.e. starting at 0 and increment with
121 // increment by one on each loop.
272 LLVM_DEBUG(dbgs() << "Use is inner loop increment, continuing\n"); in checkInnerInductionPhiUsers()
305 setLoopComponents(Value *&TC, Value *&TripCount, BinaryOperator *&Increment, in setLoopComponents() argument
308 IterationInstructions.insert(Increment); in setLoopComponents()
309 LLVM_DEBUG(dbgs() << "Found Increment: "; Increment->dump()); in setLoopComponents()
323 PHINode *&InductionPHI, Value *&TripCount, BinaryOperator *&Increment, in verifyTripCount() argument
340 return setLoopComponents(RHS, TripCount, Increment, IterationInstructions); in verifyTripCount()
361 return setLoopComponents(NewRHS, TripCount, Increment, in verifyTripCount()
[all …]
/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
54 /// // Loop body only entered when increment succeeds.
62 /// The wrapper marks the referenced Error as unchecked after each increment
64 /// value is compared against end (since, by the increment invariant, not being
118 /// Increment the fallible iterator.
126 assert(getErrPtr() && "Cannot increment end iterator");
158 /// increment/decrement operations result in an end-of-range value, comparing
H A DCombinationGenerator.h22 /// incrementing of an number - increment lowest digit (pick next choice for the
23 /// variable), and if it wrapped to the beginning then increment next digit.
76 // 'increment' of the whole VariablesState is defined identically to the in performGeneration()
77 // increment of a number: starting from the least significant element, in performGeneration()
78 // increment it, and if it wrapped, then propagate that carry by also in performGeneration()
88 // We have carry - increment more significant variable next.. in performGeneration()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DProgress.h33 /// Progress::Increment() is called, and also will make sure that a progress
47 /// considered the progress start event. As Progress::Increment() is called,
71 /// updated with Progress::Increment() then this field will be overwritten
93 /// Increment the progress and send a notification to the installed callback.
100 /// @param [in] amount The amount to increment m_completed by.
103 void Increment(uint64_t amount = 1,
151 void Increment(const Progress::ProgressData &);
/freebsd/usr.bin/nice/
H A Dnice.136 .Op Fl n Ar increment
47 .Ar increment ,
51 The superuser may specify a negative increment in order to run a utility
98 .Fl Ns Ar increment
/freebsd/crypto/krb5/src/windows/leashdll/
H A Dlsh_pwd.c905 /* increment state, but send the old state as a in PasswordProc()
1023 int increment; member
1058 value = s->min + (pos * s->increment); in NewSliderValue()
1076 value = s->min + pos * s->increment; in NewSliderString()
1107 int increment = 0; in SetupSlider() local
1122 if (range < 5*60) { increment = 1; // 1 s if under 5 m in SetupSlider()
1123 } else if (range < 30*60) { increment = 5; // 5 s if under 30 m in SetupSlider()
1124 } else if (range < 60*60) { increment = 15; // 15 s if under 1 h in SetupSlider()
1125 } else if (range < 2*60*60) { increment = 30; // 30 s if under 2 h in SetupSlider()
1126 } else if (range < 5*60*60) { increment = 60; // 1 m if under 5 h in SetupSlider()
[all …]
/freebsd/contrib/ldns/ldns/
H A Drr_functions.h277 * Function to be used with dns_rr_soa_increment_func, to increment the soa
285 * Function to be used with dns_rr_soa_increment_func_int, to increment the soa
319 * Increment the serial number of the given SOA by one.
326 * Increment the serial number of the given SOA with the given function.
330 * \param[in] f the function to use to increment the soa rr.
336 * Increment the serial number of the given SOA with the given function
339 * \param[in] f the function to use to increment the soa rr.
346 * Increment the serial number of the given SOA with the given function
352 * \param[in] f the function to use to increment the soa rr.
/freebsd/contrib/bc/src/
H A Drand.c276 * Returns the actual increment of the PRNG, including the required last odd
279 * @return The increment of the PRNG, including the last odd bit.
297 * Sets up the increment for the PRNG.
298 * @param r The PRNG whose increment will be set up.
334 * @param inc1 The lower half of the increment.
335 * @param inc2 The upper half of the increment.
541 // Seed and set up the PRNG's increment. in bc_rand_seed()
546 // If the state is 0, use the increment as the state. Otherwise, seed it in bc_rand_seed()
561 * Returns the increment in the PRNG *without* the odd bit and also with being
564 * @return The increment without the odd bit and with being shifted one bit
[all …]
/freebsd/contrib/ofed/opensm/include/complib/
H A Dcl_atomic.h77 * [in] Pointer to a 32-bit integer to increment.
134 cl_atomic_add(IN atomic32_t * const p_value, IN const int32_t increment);
140 * increment
141 * [in] Value by which to increment the integer pointed to by p_value.
147 * The provided increment is added to the value and the result returned in
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DMVEGatherScatterLowering.cpp115 int64_t Increment = 0);
119 int64_t Increment = 0);
128 int64_t Increment = 0);
132 int64_t Increment = 0);
134 // QI gathers and scatters can increment their offsets on their own if
135 // the increment is a constant value (digit)
138 // QI gathers/scatters can increment their offsets on their own if the
139 // increment is a constant value (digit) - this creates a writeback QI
455 IntrinsicInst *I, Value *Ptr, IRBuilder<> &Builder, int64_t Increment) { in tryCreateMaskedGatherBase() argument
466 {Ptr, Builder.getInt32(Increment)}); in tryCreateMaskedGatherBase()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolutionNormalization.h12 // The following example illustrates post-increment uses and how normalized
30 // paired with a set of loops for which the expression is in "post-increment"
52 /// Normalize \p S to be post-increment for all loops present in \p
64 /// Denormalize \p S to be post-increment for all loops present in \p

12345678910>>...64