Searched refs:xy (Results 1 - 12 of 12) sorted by relevance

/linux-master/tools/lib/perf/
H A Dxyarray.c10 struct xyarray *xy = zalloc(sizeof(*xy) + xlen * row_size); local
12 if (xy != NULL) {
13 xy->entry_size = entry_size;
14 xy->row_size = row_size;
15 xy->entries = xlen * ylen;
16 xy->max_x = xlen;
17 xy->max_y = ylen;
20 return xy;
23 void xyarray__reset(struct xyarray *xy) argument
30 xyarray__delete(struct xyarray *xy) argument
[all...]
/linux-master/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) argument
23 return &xy->contents[x * xy->row_size + y * xy->entry_size];
26 static inline void *xyarray__entry(struct xyarray *xy, size_t x, size_t y) argument
28 if (x >= xy->max_x || y >= xy->max_y)
30 return __xyarray__entry(xy,
33 xyarray__max_y(struct xyarray *xy) argument
38 xyarray__max_x(struct xyarray *xy) argument
[all...]
/linux-master/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'
/linux-master/include/linux/
H A Dselection.h41 void getconsxy(const struct vc_data *vc, unsigned char xy[static 2]);
42 void putconsxy(struct vc_data *vc, unsigned char xy[static const 2]);
/linux-master/arch/x86/crypto/
H A Dtwofish-x86_64-asm_64-3way.S175 #define inpack3(in, n, xy, m) \
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) \
186 xorq w+4*m(CTX), xy ## 0; \
187 op ## q xy ##
[all...]
/linux-master/drivers/input/touchscreen/
H A Dhtcpen.c50 unsigned short x, y, xy; local
65 xy = inb_p(HTCPEN_PORT_DATA);
68 x = X_AXIS_MAX - ((x * 8) + ((xy >> 4) & 0xf));
69 y = (y * 8) + (xy & 0xf);
/linux-master/tools/mm/
H A Dslabinfo-gnuplot.sh86 set autoscale xy
127 set autoscale xy
/linux-master/drivers/video/fbdev/
H A Dffb.c556 u32 fg, bg, xy; local
568 xy = (image->dy << 16) | image->dx;
589 upa_writel(xy, &fbc->fontxy);
590 xy += (32 << 0);
610 upa_writel(xy, &fbc->fontxy);
/linux-master/tools/perf/
H A Dbuiltin-record.c1939 struct xyarray *xy = evsel->core.sample_id; local
1942 if (xy == NULL || evsel->core.fd == NULL)
1944 if (xyarray__max_x(evsel->core.fd) != xyarray__max_x(xy) ||
1945 xyarray__max_y(evsel->core.fd) != xyarray__max_y(xy)) {
1950 for (int x = 0; x < xyarray__max_x(xy); x++) {
1951 for (int y = 0; y < xyarray__max_y(xy); y++) {
/linux-master/drivers/tty/vt/
H A Dvt.c4888 void getconsxy(const struct vc_data *vc, unsigned char xy[static 2])
4891 xy[0] = min(vc->state.x, 0xFFu);
4892 xy[1] = min(vc->state.y, 0xFFu);
4895 void putconsxy(struct vc_data *vc, unsigned char xy[static const 2])
4898 gotoxy(vc, xy[0], xy[1]);
/linux-master/drivers/platform/x86/
H A Dtoshiba_acpi.c776 u32 *xy, u32 *z)
795 *xy = out[2];
775 toshiba_accelerometer_get(struct toshiba_acpi_dev *dev, u32 *xy, u32 *z) argument

Completed in 444 milliseconds