/linux-6.3-rc2/tools/lib/perf/ |
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() 25 size_t n = xy->entries * xy->entry_size; in xyarray__reset() 27 memset(xy->contents, 0, n); in xyarray__reset() [all …]
|
/linux-6.3-rc2/tools/lib/perf/include/internal/ |
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-6.3-rc2/arch/x86/crypto/ |
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; 186 xorq w+4*m(CTX), xy ## 0; \ 187 op ## q xy ## 0, 4*(n)(out); \ 189 xorq w+4*m(CTX), xy ## 1; \ [all …]
|
/linux-6.3-rc2/scripts/ |
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'
|
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-6.3-rc2/drivers/input/touchscreen/ |
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-6.3-rc2/include/linux/ |
A D | selection.h | 43 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]);
|
/linux-6.3-rc2/tools/mm/ |
A D | slabinfo-gnuplot.sh | 86 set autoscale xy 127 set autoscale xy
|
/linux-6.3-rc2/drivers/video/fbdev/ |
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-6.3-rc2/arch/arm/boot/dts/ |
A D | omap3-panel-sharp-ls037v7dw01.dtsi | 70 ti,swap-xy;
|
A D | omap3-lilly-a83x.dtsi | 325 ti,swap-xy;
|
/linux-6.3-rc2/tools/perf/util/ |
A D | bpf-loader.c | 1747 struct xyarray *xy = evsel->core.fd; in apply_config_evsel_for_key() local 1754 if (!xy) { in apply_config_evsel_for_key() 1759 if (xy->row_size / xy->entry_size != 1) { in apply_config_evsel_for_key() 1782 events = xy->entries / (xy->row_size / xy->entry_size); in apply_config_evsel_for_key() 1789 evt_fd = xyarray__entry(xy, key, 0); in apply_config_evsel_for_key()
|
/linux-6.3-rc2/Documentation/devicetree/bindings/input/touchscreen/ |
A D | ads7846.txt | 76 ti,swap-xy swap x and y axis
|
/linux-6.3-rc2/tools/perf/ |
A D | builtin-record.c | 1907 struct xyarray *xy = evsel->core.sample_id; in record__read_lost_samples() local 1909 if (xy == NULL || evsel->core.fd == NULL) in record__read_lost_samples() 1911 if (xyarray__max_x(evsel->core.fd) != xyarray__max_x(xy) || in record__read_lost_samples() 1912 xyarray__max_y(evsel->core.fd) != xyarray__max_y(xy)) { in record__read_lost_samples() 1917 for (int x = 0; x < xyarray__max_x(xy); x++) { in record__read_lost_samples() 1918 for (int y = 0; y < xyarray__max_y(xy); y++) { in record__read_lost_samples()
|
/linux-6.3-rc2/drivers/tty/vt/ |
A D | vt.c | 4718 void getconsxy(const struct vc_data *vc, unsigned char xy[static 2]) in getconsxy() 4721 xy[0] = min(vc->state.x, 0xFFu); in getconsxy() 4722 xy[1] = min(vc->state.y, 0xFFu); in getconsxy() 4725 void putconsxy(struct vc_data *vc, unsigned char xy[static const 2]) in putconsxy() 4728 gotoxy(vc, xy[0], xy[1]); in putconsxy()
|
/linux-6.3-rc2/Documentation/input/devices/ |
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-6.3-rc2/Documentation/admin-guide/pm/ |
A D | cpufreq_drivers.rst | 209 The VERSION number for the driver will be of the format v.xy.ab.
|
/linux-6.3-rc2/drivers/platform/x86/ |
A D | toshiba_acpi.c | 775 u32 *xy, u32 *z) in toshiba_accelerometer_get() argument 794 *xy = out[2]; in toshiba_accelerometer_get()
|
/linux-6.3-rc2/drivers/accel/habanalabs/gaudi2/ |
A D | gaudi2.c | 7816 u32 hbw_aw_set, hbw_ar_set, lbw_aw_set, lbw_ar_set, rtr_id, dcore_id, dcore_rtr_id, xy, in gaudi2_ack_psoc_razwi_event_handler() local 7828 xy = FIELD_GET(PSOC_GLOBAL_CONF_RAZWI_MASK_INFO_AXUSER_L_MASK, razwi_mask_info); in gaudi2_ack_psoc_razwi_event_handler() 7835 xy, in gaudi2_ack_psoc_razwi_event_handler() 7838 if (xy == 0) { in gaudi2_ack_psoc_razwi_event_handler() 7846 if (rtr_coordinates_to_rtr_id[rtr_id] == xy) in gaudi2_ack_psoc_razwi_event_handler() 7851 "PSOC RAZWI interrupt: invalid rtr coordinates (0x%x)\n", xy); in gaudi2_ack_psoc_razwi_event_handler()
|
/linux-6.3-rc2/Documentation/filesystems/caching/ |
A D | cachefiles.rst | 260 J1223/@23/+xy...z/+kl...m/Epqr
|
/linux-6.3-rc2/arch/s390/tools/ |
A D | opcodes.txt | 791 e357 xy RXY_RRRD
|