/linux/tools/lib/perf/ |
H A D | xyarray.c | 10 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 …]
|
/linux/tools/lib/perf/include/internal/ |
H A D | xyarray.h | 18 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 void *xyarray__entry(struct xyarray *xy, size_t x, size_t y) in xyarray__entry() argument 28 if (x >= xy->max_x || y >= xy->max_y) in xyarray__entry() 30 return __xyarray__entry(xy, x, y); in xyarray__entry() 33 static inline int xyarray__max_y(struct xyarray *xy) in xyarray__max_y() argument 35 return xy->max_y; in xyarray__max_y() 38 static inline int xyarray__max_x(struct xyarray *xy) in xyarray__max_x() argument [all …]
|
/linux/arch/x86/crypto/ |
H A D | twofish-x86_64-asm_64-3way.S | 175 #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 …]
|
/linux/scripts/ |
H A D | extract-vmlinux | 52 try_decompress '\037\213\010' xy gunzip 54 try_decompress 'BZh' xy bunzip2 56 try_decompress '\211\114\132' xy 'lzop -d'
|
H A D | extract-ikconfig | 59 try_decompress '\037\213\010' xy gunzip 61 try_decompress 'BZh' xy bunzip2 63 try_decompress '\211\114\132' xy 'lzop -d'
|
/linux/drivers/input/touchscreen/ |
H A D | htcpen.c | 50 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()
|
/linux/include/linux/ |
H A D | selection.h | 41 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/tools/mm/ |
H A D | slabinfo-gnuplot.sh | 86 set autoscale xy 127 set autoscale xy
|
/linux/drivers/video/fbdev/ |
H A D | ffb.c | 556 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()
|
/linux/arch/arm/boot/dts/ti/omap/ |
H A D | omap3-panel-sharp-ls037v7dw01.dtsi | 70 ti,swap-xy;
|
H A D | omap3-lilly-a83x.dtsi | 325 ti,swap-xy;
|
/linux/tools/perf/ |
H A D | builtin-record.c | 1947 struct xyarray *xy = evsel->core.sample_id; in record__read_lost_samples() local 1950 if (xy == NULL || evsel->core.fd == NULL) in record__read_lost_samples() 1952 if (xyarray__max_x(evsel->core.fd) != xyarray__max_x(xy) || in record__read_lost_samples() 1953 xyarray__max_y(evsel->core.fd) != xyarray__max_y(xy)) { in record__read_lost_samples() 1958 for (int x = 0; x < xyarray__max_x(xy); x++) { in record__read_lost_samples() 1959 for (int y = 0; y < xyarray__max_y(xy); y++) { in record__read_lost_samples()
|
/linux/drivers/tty/vt/ |
H A D | vt.c | 4898 void getconsxy(const struct vc_data *vc, unsigned char xy[static 2]) in getconsxy() 4901 xy[0] = min(vc->state.x, 0xFFu); in getconsxy() 4902 xy[1] = min(vc->state.y, 0xFFu); in getconsxy() 4905 void putconsxy(struct vc_data *vc, unsigned char xy[static const 2]) in putconsxy() 4908 gotoxy(vc, xy[0], xy[1]); in putconsxy()
|
/linux/Documentation/input/devices/ |
H A D | atarikbd.rst | 83 %111110xy ; mouse position record flag 248 ; mss=0xy, mouse button press or release causes mouse 491 %000000xy ; where y is JOYSTICK1 Fire button
|
/linux/Documentation/admin-guide/pm/ |
H A D | cpufreq_drivers.rst | 209 The VERSION number for the driver will be of the format v.xy.ab.
|
/linux/drivers/platform/x86/ |
H A D | toshiba_acpi.c | 782 u32 *xy, u32 *z) in toshiba_accelerometer_get() argument 801 *xy = out[2]; in toshiba_accelerometer_get()
|
/linux/Documentation/filesystems/caching/ |
H A D | cachefiles.rst | 260 J1223/@23/+xy...z/+kl...m/Epqr
|
/linux/arch/s390/tools/ |
H A D | opcodes.txt | 795 e357 xy RXY_RRRD
|