Searched defs:delta (Results 76 - 100 of 809) sorted by relevance

1234567891011>>

/external/ltp/testcases/realtime/func/measurement/
H A Dpreempt_timing.c84 unsigned long long i, j, delta, min, max, avg; local
135 delta = sample_list[i + 1] - sample_list[i];
136 if (delta < min)
137 min = delta;
138 if (delta > max)
139 max = delta;
140 if (delta > 100000)
143 delta);
144 avg += delta;
/external/lzma/Java/Tukaani/src/org/tukaani/xz/
H A DDeltaInputStream.java14 import org.tukaani.xz.delta.DeltaDecoder;
19 * The delta filter doesn't change the size of the data and thus it
25 * Smallest supported delta calculation distance.
30 * Largest supported delta calculation distance.
35 private final DeltaDecoder delta; field in class:DeltaInputStream
42 * Creates a new Delta decoder with the given delta calculation distance.
47 * @param distance delta calculation distance, must be in the
58 this.delta = new DeltaDecoder(distance);
112 delta.decode(buf, off, size);
/external/python/cpython2/Doc/includes/
H A Dmp_benchmarks.py15 delta = 1 variable
35 while elapsed < delta:
77 while elapsed < delta:
106 while elapsed < delta:
126 while elapsed < delta:
157 while elapsed < delta:
/external/skia/src/core/
H A DSkDeviceLooper.cpp77 static bool next_tile(const SkIRect& boundary, int delta, SkIPoint* offset) { argument
79 if (offset->x() + delta < boundary.right()) {
80 offset->fX += delta;
86 if (offset->y() + delta < boundary.bottom()) {
87 offset->fY += delta;
/external/skqp/src/core/
H A DSkDeviceLooper.cpp77 static bool next_tile(const SkIRect& boundary, int delta, SkIPoint* offset) { argument
79 if (offset->x() + delta < boundary.right()) {
80 offset->fX += delta;
86 if (offset->y() + delta < boundary.bottom()) {
87 offset->fY += delta;
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_imaadpcm.c227 EAS_INT delta; local
233 /* delta = (abs(delta) + 0.5) * step / 4 */
234 delta = 0;
236 delta += stepSize;
240 delta += stepSize >> 1;
244 delta += stepSize >> 2;
247 delta += stepSize >> 3;
249 /* integrate the delta */
251 pState->acc -= delta;
[all...]
/external/tensorflow/tensorflow/compiler/aot/
H A Druntime_test.cc51 void* add_ptr(void* base, uintptr_t delta) { argument
52 return reinterpret_cast<void*>(reinterpret_cast<uintptr_t>(base) + delta);
/external/v8/src/base/
H A Ddivision-by-constant.cc30 T delta;
45 delta = ad - r2;
46 } while (q1 < delta || (q1 == delta && r1 == 0));
68 T delta; local
87 delta = d - 1 - r2;
88 } while (p < bits * 2 && (q1 < delta || (q1 == delta && r1 == 0)));
/external/v8/src/ic/mips/
H A Dic-mips.cc61 // The delta to the start of the map check instruction and the
63 int delta = Assembler::GetImmediate16(instr); local
64 delta += Assembler::GetRs(instr) * kImm16Mask;
65 // If the delta is 0 the instruction is andi at, zero_reg, #0 which also
67 if (delta == 0) {
72 LOG(isolate, PatchIC(address, andi_instruction_address, delta));
76 andi_instruction_address - delta * Instruction::kInstrSize;
/external/v8/src/ic/mips64/
H A Dic-mips64.cc61 // The delta to the start of the map check instruction and the
63 int delta = Assembler::GetImmediate16(instr); local
64 delta += Assembler::GetRs(instr) * kImm16Mask;
65 // If the delta is 0 the instruction is andi at, zero_reg, #0 which also
67 if (delta == 0) {
72 LOG(isolate, PatchIC(address, andi_instruction_address, delta));
76 andi_instruction_address - delta * Instruction::kInstrSize;
/external/v8/src/ic/s390/
H A Dic-s390.cc62 // The delta to the start of the map check instruction and the
64 int delta = instr & 0x0000ffff; local
66 // If the delta is 0 the instruction is cmp r0, #0 which also signals that
68 if (delta == 0) {
73 LOG(isolate, PatchIC(address, cmp_instruction_address, delta));
87 Address patch_address = cmp_instruction_address - delta;
/external/aac/libSACdec/src/
H A Dsac_smoothing.cpp125 FIXP_DBL delta; local
133 delta = fDivNorm(dSlots, self->smgTime[ps]);
135 return delta;
/external/adhd/cras/src/server/
H A Dbuffer_share.c106 unsigned int delta)
114 mix->wr_idx[i].offset += delta;
105 buffer_share_offset_update(struct buffer_share *mix, unsigned int id, unsigned int delta) argument
/external/autotest/client/profilers/cpistat/
H A Dcpistat54 delta = {} variable
58 delta[e] = {}
62 delta[e][c] = 0
71 delta[e][c] = count - last[e][c]
74 print '''CPU%d: %s\t%lu''' % (c, e, delta[e][c])
75 sum[e] += delta[e][c]
/external/boringssl/src/crypto/fipsmodule/bn/
H A Dsqrt.c428 BIGNUM *estimate, *tmp, *delta, *last_delta, *tmp2; local
448 delta = BN_CTX_get(ctx);
449 if (estimate == NULL || tmp == NULL || last_delta == NULL || delta == NULL) {
468 // |delta| = |in| - |tmp|
469 !BN_sub(delta, in, tmp)) {
474 delta->neg = 0;
478 if (last_delta_valid && BN_cmp(delta, last_delta) >= 0) {
485 last_delta = delta;
486 delta = tmp2;
/external/caliper/caliper/src/main/java/com/google/caliper/worker/
H A DAllocationStats.java116 public Delta delta(AllocationStats baseline) { method in class:AllocationStats
176 * The delta between two different sets of statistics.
/external/clang/utils/
H A Dtoken-delta.py40 raise ValueError,'Initial test passed to delta fails.'
46 return self.delta(changes, self.split(changes))
63 def delta(self, c, sets): member in class:DeltaAlgorithm
80 return self.delta(c, refined)
86 return self.delta(S, self.split(S))
93 return self.delta(complement, sets[:i] + sets[i+1:])
/external/dng_sdk/source/
H A Ddng_1d_table.cpp55 real32 delta = Abs_real32 (fTable [upper] - local
58 if (delta > maxDelta)
91 real64 delta = (y1 - y0) / (real64) range; local
96 y0 += delta;
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
H A Ddogleg.h10 Scalar delta,
48 if (qnorm <= delta)
66 alpha = delta / qnorm;
87 if (sgnorm >= delta)
94 temp = bnorm / gnorm * (bnorm / qnorm) * (sgnorm / delta);
95 temp = temp - delta / qnorm * numext::abs2(sgnorm / delta) + sqrt(numext::abs2(temp - delta / qnorm) + (1.-numext::abs2(delta / qnorm)) * (1.-numext::abs2(sgnorm / delta)));
6 dogleg( const Matrix< Scalar, Dynamic, Dynamic > &qrfac, const Matrix< Scalar, Dynamic, 1 > &diag, const Matrix< Scalar, Dynamic, 1 > &qtb, Scalar delta, Matrix< Scalar, Dynamic, 1 > &x) argument
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDoubleArray.java176 * @param delta the value to add
179 public final double getAndAdd(int i, double delta) { argument
183 double nextVal = currentVal + delta;
195 * @param delta the value to add
198 public double addAndGet(int i, double delta) { argument
202 double nextVal = currentVal + delta;
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
H A DAtomicInteger.java71 public final int getAndAdd(int delta) { argument
73 value += delta;
85 public final int addAndGet(int delta) { argument
86 value += delta;
H A DAtomicLong.java71 public final long getAndAdd(long delta) { argument
73 value += delta;
85 public final long addAndGet(long delta) { argument
86 value += delta;
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DCharacterIteratorWrapper.java144 public int moveIndex(int delta){ argument
146 int idx = iterator.getIndex()+delta;
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUCharacterIterator.java324 * sign of delta (positive or negative respectively). If the resulting index would be less than zero, the index is
327 * @param delta
334 public int moveIndex(int delta) { argument
335 int x = Math.max(0, Math.min(getIndex() + delta, getLength()));
342 * sign of delta (positive or negative respectively). If the current index is at a trail surrogate then the first
347 * @param delta
351 * is thrown if an invalid delta is supplied
353 public int moveCodePointIndex(int delta) { argument
354 if (delta > 0) {
355 while (delta >
[all...]
/external/icu/icu4c/source/common/
H A Ducharstrie.cpp90 // Use the non-final value as the jump delta.
92 // int32_t delta=readValue(pos, node);
93 int32_t delta; local
95 delta=node;
97 delta=((node-kMinTwoUnitValueLead)<<16)|*pos++;
99 delta=(pos[0]<<16)|pos[1];
103 pos+=delta;

Completed in 835 milliseconds

1234567891011>>