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

12

/external/guava/guava-tests/test/com/google/common/collect/
H A DConcurrentHashMultisetBasherTest.java37 * do operations at random. Each thread keeps track of the per-key deltas that it's directly
38 * responsible for; after all threads have completed, we sum the per-key deltas and compare to the
72 int[] deltas = new int[3];
75 for (int i = 0; i < deltas.length; i++) {
76 deltas[i] += taskDeltas[i];
86 assertEquals("Counts not as expected", Ints.asList(deltas), actualCounts);
110 int[] deltas = new int[nKeys];
120 deltas[keyIndex] += delta;
126 deltas[keyIndex] += (newValue - oldValue);
133 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/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/pdfium/third_party/freetype/src/truetype/
H A Dttgxvar.c109 /* Read a set of points to which the following deltas will apply. */
197 /* Read a set of deltas. These are packed slightly differently than */
206 /* An array of FT_Short containing the deltas for the affected */
207 /* points. (This only gets the deltas for one dimension. It will */
215 FT_Short *deltas = NULL; local
225 if ( FT_NEW_ARRAY( deltas, delta_cnt ) )
238 deltas[i++] = 0;
246 deltas[i++] = FT_GET_SHORT();
254 deltas[i++] = FT_GET_CHAR();
260 FT_FREE( deltas );
1116 FT_Short* deltas; local
[all...]
H A Dttgxvar.h167 FT_Vector* *deltas,
H A Dttgload.c886 FT_Vector* deltas; local
893 &deltas,
900 outline->points[i].x += deltas[i].x;
901 outline->points[i].y += deltas[i].y;
904 FT_FREE( deltas );
1413 FT_Vector* deltas = NULL; local
1556 glyph_index, &deltas, 4 );
1560 loader->pp1.x += deltas[0].x;
1561 loader->pp1.y += deltas[0].y;
1562 loader->pp2.x += deltas[
[all...]
/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. */
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[
1302 FT_Short* deltas; local
[all...]
/external/jemalloc/include/jemalloc/internal/
H A Dsize_classes.sh203 * lg_grp: Lg group base size (no deltas added).
/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 ...
H A Dorg.eclipse.team.core_3.5.100.R36x_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.expressions_3.4.200.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/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.c837 FT_Byte *ends, *starts, *offsets, *deltas, *glyph_ids; local
903 deltas = starts + num_segs * 2;
904 offsets = deltas + num_segs * 2;
921 FT_Byte* p_delta = deltas;
/external/pdfium/third_party/freetype/src/sfnt/
H A Dttcmap.c837 FT_Byte *ends, *starts, *offsets, *deltas, *glyph_ids; local
903 deltas = starts + num_segs * 2;
904 offsets = deltas + num_segs * 2;
921 FT_Byte* p_delta = deltas;
/external/opencv/cxcore/include/
H A Dcxtypes.h1596 (reader).pt.x += (reader).deltas[(int)(reader).code][0]; \
1597 (reader).pt.y += (reader).deltas[(int)(reader).code][1]; \
/external/regex-re2/lib/codereview/
H A Dcodereview.py1653 # fileDelta returns the line number deltas for the given file's
1655 # The deltas are a list of (n, len, newdelta) triples that say
1661 deltas = []
1667 deltas.append((n1, len1, n2+len2-(n1+len1)))
1668 return deltas
1672 def lineDelta(deltas, n, len):
1674 for (old, oldlen, newdelta) in deltas:
/external/blktrace/btt/doc/
H A Dbtt.tex537 inactivity -- and one can gather a sense of deltas between the queueing
690 deltas, providing seek information which can then be plotted. The
696 \item Read data -- just seek deltas for reads
698 \item Write data -- just seek deltas for writes
/external/icu/icu4c/source/i18n/
H A Dregexcmp.cpp3749 UVector32 deltas(end, *fStatus);
3756 deltas.addElement(d, *fStatus);
3789 U_ASSERT(operandAddress>=0 && operandAddress<deltas.size());
3790 int32_t fixedOperandAddress = operandAddress - deltas.elementAti(operandAddress);

Completed in 1286 milliseconds

12