Searched defs:deltas (Results 1 - 24 of 24) sorted by relevance

/external/mesa3d/src/mesa/drivers/dri/i965/
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);
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_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...]
/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/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 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/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/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/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/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/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/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 ...
H A Dorg.eclipse.equinox.preferences_3.3.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.debug.core_3.6.0.v20100519.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.help_3.5.0.v20100524.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 452 milliseconds