Searched refs:deltas (Results 1 - 25 of 55) sorted by relevance

123

/external/guava/guava-tests/test/com/google/common/collect/
H A DConcurrentHashMultisetBasherTest.java38 * do operations at random. Each thread keeps track of the per-key deltas that it's directly
39 * responsible for; after all threads have completed, we sum the per-key deltas and compare to the
77 int[] deltas = new int[3];
80 for (int i = 0; i < deltas.length; i++) {
81 deltas[i] += taskDeltas[i];
91 assertEquals("Counts not as expected", Ints.asList(deltas), actualCounts);
115 int[] deltas = new int[nKeys];
125 deltas[keyIndex] += delta;
131 deltas[keyIndex] += (newValue - oldValue);
138 deltas[keyInde
[all...]
/external/opencv/cv/include/
H A Dcvtypes.h104 schar deltas[8][2]; member in struct:CvChainPtReader
109 #define CV_INIT_3X3_DELTAS( deltas, step, nch ) \
110 ((deltas)[0] = (nch), (deltas)[1] = -(step) + (nch), \
111 (deltas)[2] = -(step), (deltas)[3] = -(step) - (nch), \
112 (deltas)[4] = -(nch), (deltas)[5] = (step) - (nch), \
113 (deltas)[6] = (step), (deltas)[
[all...]
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/filter/
H A DThermalErodeFilter.java67 float[] deltas = new float[idxrel.length];
75 deltas[j] = dj;
85 if (deltas[j] != 0) {
86 float d = this.c * (deltaMax - this.talus) * deltas[j] / deltaTotal;
93 deltas[j] = 0;
/external/dng_sdk/source/
H A Ddng_misc_opcodes.cpp864 uint32 deltas = SafeUint32DivideUp (fAreaSpec.Area ().H (), local
867 if (deltas != stream.Get_uint32 ())
872 if (dataSize != dng_area_spec::kDataSize + 4 + deltas * 4)
877 fTable.Reset (host.Allocate (SafeUint32Mult (deltas,
882 for (uint32 j = 0; j < deltas; j++)
892 printf ("Count: %u\n", (unsigned) deltas);
894 for (uint32 k = 0; k < deltas && k < gDumpLineLimit; k++)
899 if (deltas > gDumpLineLimit)
901 printf (" ... %u deltas skipped\n", (unsigned) (deltas
915 uint32 deltas = SafeUint32DivideUp (fAreaSpec.Area ().H (), local
1070 uint32 deltas = SafeUint32DivideUp (fAreaSpec.Area ().W (), local
1121 uint32 deltas = SafeUint32DivideUp (fAreaSpec.Area ().W (), local
[all...]
H A Ddng_hue_sat_map.cpp157 const HSBModify *deltas = GetConstDeltas (); local
159 modify.fHueShift = deltas [offset].fHueShift;
160 modify.fSatScale = deltas [offset].fSatScale;
161 modify.fValScale = deltas [offset].fValScale;
/external/opencv/cv/src/
H A Dcvcontours.cpp44 #define CV_INIT_3X3_DELTAS( deltas, step, nch ) \
45 ((deltas)[0] = (nch), (deltas)[1] = -(step) + (nch), \
46 (deltas)[2] = -(step), (deltas)[3] = -(step) - (nch), \
47 (deltas)[4] = -(nch), (deltas)[5] = (step) - (nch), \
48 (deltas)[6] = (step), (deltas)[7] = (step) + (nch))
75 reader->deltas[
537 int deltas[16]; local
651 int deltas[16]; local
709 int deltas[16]; local
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
H A Dtransport_feedback_unittest.cc114 std::vector<int64_t> deltas = feedback_->GetReceiveDeltasUs(); local
115 ASSERT_EQ(expected_deltas_.size(), deltas.size());
117 EXPECT_EQ(expected_deltas_[i], deltas[i]) << "Delta mismatch @ " << i;
122 int64_t* deltas) {
131 deltas[i] = offset + (last_seq * default_delta_);
343 std::vector<int64_t> deltas = feedback.GetReceiveDeltasUs(); local
347 for (int64_t delta : deltas) {
462 // Test that a number of small deltas followed by a large delta results in a
465 for (int deltas = 0; deltas <
120 GenerateDeltas(const uint16_t seq[], const size_t length, int64_t* deltas) argument
[all...]
/external/libchrome/base/test/
H A Dtrace_event_analyzer.cc847 std::vector<double> deltas; local
855 deltas.push_back(delta);
858 std::sort(deltas.begin(), deltas.end());
865 deltas.erase(deltas.begin(), deltas.begin() + options->trim_min);
866 deltas.erase(deltas.end() - options->trim_max, deltas
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcdateintervalformattest.c127 static const double deltas[] = { variable
139 enum { kNumDeltas = sizeof(deltas)/sizeof(deltas[0]) - 1 };
292 const double * deltasPtr = deltas;
/external/chromium-trace/catapult/telemetry/telemetry/web_perf/metrics/
H A Dsmoothness.py88 deltas = [t2 - t1 for t1, t2 in zip(data, data[1:])]
90 deltas = [d for d in deltas
92 return (deltas, [delta / refresh_period for delta in deltas])
96 """Joins ranges of timestamps, adjusting timestamps to remove deltas
/external/opencv/cvaux/src/
H A Dcvsegment.cpp339 int deltas[16]; local
345 CV_INIT_3X3_DELTAS( deltas, step, 1 );
346 memcpy( deltas + 8, deltas, 8 * sizeof( deltas[0] ));
396 i1 = i0 + deltas[s];
419 i4 = i3 + deltas[++s];
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_wm_emit.c38 can_do_pln(struct intel_context *intel, const struct brw_reg *deltas) argument
45 if (deltas[1].nr != deltas[0].nr + 1)
48 if (intel->gen < 6 && ((deltas[0].nr & 1) != 0))
261 const struct brw_reg *deltas)
284 if (can_do_pln(intel, deltas)) {
285 brw_PLN(p, temp_dst, interp3, deltas[0]);
287 brw_LINE(p, brw_null_reg(), interp3, deltas[0]);
288 brw_MAC(p, temp_dst, suboffset(interp3, 1), deltas[1]);
316 const struct brw_reg *deltas)
257 emit_pixel_w(struct brw_wm_compile *c, const struct brw_reg *dst, GLuint mask, const struct brw_reg *arg0, const struct brw_reg *deltas) argument
312 emit_linterp(struct brw_compile *p, const struct brw_reg *dst, GLuint mask, const struct brw_reg *arg0, const struct brw_reg *deltas) argument
343 emit_pinterp(struct brw_compile *p, const struct brw_reg *dst, GLuint mask, const struct brw_reg *arg0, const struct brw_reg *deltas, const struct brw_reg *w) argument
[all...]
H A Dbrw_wm_fp.c319 /* deltas.xy = DELTAXY pixel_xy, payload[0]
347 struct prog_src_register deltas = get_delta_xy(c); local
350 /* deltas.xyw = DELTAS2 deltas.xy, payload.interp_wpos.x
357 deltas,
372 struct prog_src_register deltas; local
374 deltas = get_delta_xy(c);
394 /* PROGRAM_INPUT.attr.xyzw = INTERP payload.interp[attr].x, deltas.xyw
401 deltas,
422 deltas,
[all...]
H A Dbrw_wm.h388 const struct brw_reg *deltas);
426 const struct brw_reg *deltas,
435 const struct brw_reg *deltas);
H A Dbrw_fs_emit.cpp118 * pre-gen6 for computing the deltas from v0 for computing
126 struct brw_reg deltas; local
130 deltas = brw_imm_v(0x10101010);
133 deltas = brw_imm_v(0x11001100);
145 brw_ADD(p, dst, src, deltas);
/external/freetype/src/truetype/
H A Dttgxvar.c109 /* Read a set of points to which the following deltas will apply. */
219 /* Read a set of deltas. These are packed slightly differently than */
227 /* delta_cnt :: The number of deltas to be read. */
230 /* An array of FT_Short containing the deltas for the affected */
231 /* points. (This only gets the deltas for one dimension. It will */
240 FT_Short *deltas = NULL; local
255 if ( FT_NEW_ARRAY( deltas, delta_cnt ) )
268 deltas[i++] = 0;
274 deltas[i++] = FT_GET_SHORT();
280 deltas[
1361 FT_Short* deltas; local
[all...]
/external/pdfium/third_party/freetype/src/truetype/
H A Dttgxvar.c109 /* Read a set of points to which the following deltas will apply. */
209 /* Read a set of deltas. These are packed slightly differently than */
215 /* delta_cnt :: The number of deltas to be read. */
218 /* An array of FT_Short containing the deltas for the affected */
219 /* points. (This only gets the deltas for one dimension. It will */
227 FT_Short *deltas = NULL; local
236 if ( FT_NEW_ARRAY( deltas, delta_cnt ) )
249 deltas[i++] = 0;
255 deltas[i++] = FT_GET_SHORT();
261 deltas[
1303 FT_Short* deltas; local
[all...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DDateIntervalFormatTest.java1541 final long[] deltas = {
1708 int dIdx, dCount = deltas.length;
1710 DateInterval di = new DateInterval(startTime, startTime + deltas[dIdx]);
1717 errln("For locale " + item.locale + ", skeleton " + item.skeleton + ", delta " + deltas[dIdx] +
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDateIntervalFormatTest.java1537 final long[] deltas = {
1704 int dIdx, dCount = deltas.length;
1706 DateInterval di = new DateInterval(startTime, startTime + deltas[dIdx]);
1713 errln("For locale " + item.locale + ", skeleton " + item.skeleton + ", delta " + deltas[dIdx] +
/external/jemalloc/include/jemalloc/internal/
H A Dsize_classes.sh207 * lg_grp: Lg group base size (no deltas added).
/external/chromium-trace/catapult/telemetry/third_party/pyserial/serial/
H A Drfc2217.py984 deltas = modemstate ^ (self.last_modemstate or 0) # when last is None -> 0
985 if deltas & MODEMSTATE_MASK_CTS:
987 if deltas & MODEMSTATE_MASK_DSR:
989 if deltas & MODEMSTATE_MASK_RI:
991 if deltas & MODEMSTATE_MASK_CD:
1003 # save last state, but forget about deltas.
1004 # otherwise it would also notify about changing deltas which is
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/toybox/toys/posix/
H A Dps.c1126 // If we have both, adjust slot[deltas[]] to be relative to previous
1131 char deltas[] = {SLOT_utime2, SLOT_iobytes, SLOT_diobytes, SLOT_rchar, local
1135 for (i = 0; i<ARRAY_LEN(deltas); i++)
1136 oslot[deltas[i]] = nslot[deltas[i]] - oslot[deltas[i]];
/external/deqp/modules/gles31/functional/
H A Des31fSynchronizationTests.cpp2210 std::vector<int> deltas;
2212 // generate unique deltas
2213 generateShuffledRamp(m_numCalls, deltas);
2236 << "Call " << callNdx << ": u_atomicDelta = " << deltas[callNdx]
2239 gl.uniform1ui(deltaLocation, deltas[callNdx]);
2702 std::vector<int> deltas;
2704 // generate unique deltas
2705 generateShuffledRamp(m_numCalls, deltas);
2740 << "Call " << callNdx << ": u_atomicDelta = " << deltas[callNdx]
2743 gl.uniform1ui(deltaLocation, deltas[callNd
[all...]
/external/freetype/src/sfnt/
H A Dttcmap.c873 FT_Byte *ends, *starts, *offsets, *deltas, *glyph_ids; local
939 deltas = starts + num_segs * 2;
940 offsets = deltas + num_segs * 2;
957 FT_Byte* p_delta = deltas;

Completed in 607 milliseconds

123