Home
last modified time | relevance | path

Searched refs:xy (Results 1 – 25 of 68) sorted by relevance

123

/OK3568_Linux_fs/kernel/tools/lib/perf/
H A Dxyarray.c10 struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size); in xyarray__new() local
12 if (xy != NULL) { in xyarray__new()
13 xy->entry_size = entry_size; in xyarray__new()
14 xy->row_size = row_size; in xyarray__new()
15 xy->entries = xlen * ylen; in xyarray__new()
16 xy->max_x = xlen; in xyarray__new()
17 xy->max_y = ylen; in xyarray__new()
20 return xy; in xyarray__new()
23 void xyarray__reset(struct xyarray *xy) in xyarray__reset() argument
25 size_t n = xy->entries * xy->entry_size; in xyarray__reset()
[all …]
/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dxyarray.c10 struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size); in xyarray__new() local
12 if (xy != NULL) { in xyarray__new()
13 xy->entry_size = entry_size; in xyarray__new()
14 xy->row_size = row_size; in xyarray__new()
15 xy->entries = xlen * ylen; in xyarray__new()
16 xy->max_x = xlen; in xyarray__new()
17 xy->max_y = ylen; in xyarray__new()
20 return xy; in xyarray__new()
23 void xyarray__reset(struct xyarray *xy) in xyarray__reset() argument
25 size_t n = xy->entries * xy->entry_size; in xyarray__reset()
[all …]
H A Dbpf-loader.c1402 struct xyarray *xy = evsel->core.fd; in apply_config_evsel_for_key() local
1409 if (!xy) { in apply_config_evsel_for_key()
1414 if (xy->row_size / xy->entry_size != 1) { in apply_config_evsel_for_key()
1437 events = xy->entries / (xy->row_size / xy->entry_size); in apply_config_evsel_for_key()
1444 evt_fd = xyarray__entry(xy, key, 0); in apply_config_evsel_for_key()
/OK3568_Linux_fs/kernel/tools/lib/perf/include/internal/
H A Dxyarray.h18 void xyarray__delete(struct xyarray *xy);
19 void xyarray__reset(struct xyarray *xy);
21 static inline void *xyarray__entry(struct xyarray *xy, int x, int y) in xyarray__entry() argument
23 return &xy->contents[x * xy->row_size + y * xy->entry_size]; in xyarray__entry()
26 static inline int xyarray__max_y(struct xyarray *xy) in xyarray__max_y() argument
28 return xy->max_y; in xyarray__max_y()
31 static inline int xyarray__max_x(struct xyarray *xy) in xyarray__max_x() argument
33 return xy->max_x; in xyarray__max_x()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/preprocessor/arithmetic/
H A Dsub.hpp31 # define BOOST_PP_SUB_P(d, xy) BOOST_PP_TUPLE_ELEM(2, 1, xy) argument
34 # define BOOST_PP_SUB_O(d, xy) BOOST_PP_SUB_O_I xy argument
36 # define BOOST_PP_SUB_O(d, xy) BOOST_PP_SUB_O_I(BOOST_PP_TUPLE_ELEM(2, 0, xy), BOOST_PP_TUPLE_EL… argument
H A Dadd.hpp32 # define BOOST_PP_ADD_P(d, xy) BOOST_PP_TUPLE_ELEM(2, 1, xy) argument
35 # define BOOST_PP_ADD_O(d, xy) BOOST_PP_ADD_O_I xy argument
37 # define BOOST_PP_ADD_O(d, xy) BOOST_PP_ADD_O_I(BOOST_PP_TUPLE_ELEM(2, 0, xy), BOOST_PP_TUPLE_EL… argument
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/imxwayland/qmlvideofx/shaders/
H A Dmagnify.fsh51 vec2 xy = gl_FragCoord.xy - center.xy;
52 xy.x -= (pixDens * 14.0);
53 xy.y -= (pixDens * 29.0);
54 float r = sqrt(xy.x * xy.x + xy.y * xy.y);
57 vec2 new_xy = r < radius ? xy * (radius - h) / sqrt(radius * radius - r * r) : xy;
H A Dtiltshift.fsh46 vec2 uv = qt_TexCoord0.xy;
60 vec2 uv = qt_TexCoord0.xy;
H A Dpagecurl.fsh91 vec4 color = texture2D(source, point.xy);
113 vec4 color = texture2D(source, point.xy);
/OK3568_Linux_fs/kernel/arch/x86/crypto/
H A Dtwofish-x86_64-asm_64-3way.S175 #define inpack3(in, n, xy, m) \ argument
176 movq 4*(n)(in), xy ## 0; \
177 xorq w+4*m(CTX), xy ## 0; \
179 movq 4*(4+(n))(in), xy ## 1; \
180 xorq w+4*m(CTX), xy ## 1; \
182 movq 4*(8+(n))(in), xy ## 2; \
183 xorq w+4*m(CTX), xy ## 2;
185 #define outunpack3(op, out, n, xy, m) \ argument
186 xorq w+4*m(CTX), xy ## 0; \
187 op ## q xy ## 0, 4*(n)(out); \
[all …]
/OK3568_Linux_fs/kernel/scripts/
H A Dextract-vmlinux52 try_decompress '\037\213\010' xy gunzip
54 try_decompress 'BZh' xy bunzip2
56 try_decompress '\211\114\132' xy 'lzop -d'
H A Dextract-ikconfig59 try_decompress '\037\213\010' xy gunzip
61 try_decompress 'BZh' xy bunzip2
63 try_decompress '\211\114\132' xy 'lzop -d'
/OK3568_Linux_fs/kernel/drivers/input/touchscreen/
H A Dhtcpen.c50 unsigned short x, y, xy; in htcpen_interrupt() local
65 xy = inb_p(HTCPEN_PORT_DATA); in htcpen_interrupt()
68 x = X_AXIS_MAX - ((x * 8) + ((xy >> 4) & 0xf)); in htcpen_interrupt()
69 y = (y * 8) + (xy & 0xf); in htcpen_interrupt()
/OK3568_Linux_fs/yocto/poky/meta/recipes-graphics/mesa/mesa-demos/
H A D0001-mesa-demos-Add-missing-data-files.patch297 + vec2 a1 = sin(phi.zz +D.xy);
298 + vec3 g = vec3( dot(a0.xy, x0), dot(a0.zw, x1), dot(a1.xy, x2) );
369 + vec4 b0 = vec4( x.xy, y.xy );
379 + vec3 p0 = vec3(a0.xy,h.x);
381 + vec3 p2 = vec3(a1.xy,h.z);
425 + q1.xy = max(q0.xy,q0.zw); // x:z y:w
426 + q1.zw = min(q0.xy,q0.zw);
460 + ip.xy *= pParam.w ;
540 + vec4 t1 = texture2D(tex1, gl_TexCoord[0].xy);
541 + vec4 t2 = texture2D(tex2, gl_TexCoord[1].xy);
[all …]
/OK3568_Linux_fs/kernel/include/linux/
H A Dselection.h43 extern void getconsxy(const struct vc_data *vc, unsigned char xy[static 2]);
44 extern void putconsxy(struct vc_data *vc, unsigned char xy[static const 2]);
/OK3568_Linux_fs/kernel/drivers/video/rockchip/rga/
H A Drga_reg_info.c106 s32 xx, xy, yx, yy; in dst_ctrl_cal() local
212 xy = msg->sina; in dst_ctrl_cal()
213 yx = xy; in dst_ctrl_cal()
228 pos[2] = x00 = (((x0 - xoff)*xx - (y0 - yoff)*xy)>>16) + xoff; in dst_ctrl_cal()
231 pos[4] = x10 = (((x1 - xoff)*xx - (y1 - yoff)*xy)>>16) + xoff; in dst_ctrl_cal()
234 pos[6] = x20 = (((x2 - xoff)*xx - (y2 - yoff)*xy)>>16) + xoff; in dst_ctrl_cal()
295 int64_t xx, xy, yx, yy; in src_tile_info_cal() local
307 xy = tile->matrix[1]; /* 32.32 */ in src_tile_info_cal()
326 pos[1] = (x0*xy + y0*yy); in src_tile_info_cal()
329 pos[3] = (x1*xy + y1*yy); in src_tile_info_cal()
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/lpc10/
H A Dbsynz.c124 real xy, sum, ssq; in bsynz_() local
241 xy = min(r__1,8.f); in bsynz_()
245 exc2[i__ - 1] = exc2[*ipo + i__ - 1] * xy; in bsynz_()
/OK3568_Linux_fs/external/xserver/glamor/
H A Dglamor_utils.h160 #define __glamor_repeat_reflect_fixup(txy, xy, \ argument
164 if ( xy >= bxy1 && xy < bxy2) { \
167 } else if (xy < bxy1) { \
172 else if (xy >= bxy2) { \
181 #define _glamor_repeat_reflect_fixup(txy, xy, cd, odd, \ argument
185 __glamor_repeat_reflect_fixup(txy, xy, \
188 txy = xy - bxy1; \
H A Dglamor_rects.c34 GLAMOR_POS(gl_Position, (primitive.xy + pos))),
41 GLAMOR_POS(gl_Position, primitive.xy)),
H A Dglamor_spans.c34 GLAMOR_POS(gl_Position, (primitive.xy + pos))),
41 GLAMOR_POS(gl_Position, primitive.xy)),
H A Dglamor_segs.c32 GLAMOR_POS(gl_Position, primitive.xy)),
H A Dglamor_lines.c32 GLAMOR_POS(gl_Position, primitive.xy)),
/OK3568_Linux_fs/kernel/tools/vm/
H A Dslabinfo-gnuplot.sh86 set autoscale xy
127 set autoscale xy
/OK3568_Linux_fs/kernel/drivers/video/fbdev/
H A Dffb.c556 u32 fg, bg, xy; in ffb_imageblit() local
568 xy = (image->dy << 16) | image->dx; in ffb_imageblit()
589 upa_writel(xy, &fbc->fontxy); in ffb_imageblit()
590 xy += (32 << 0); in ffb_imageblit()
610 upa_writel(xy, &fbc->fontxy); in ffb_imageblit()
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Domap3-panel-sharp-ls037v7dw01.dtsi70 ti,swap-xy;

123