Home
last modified time | relevance | path

Searched refs:ux (Results 1 – 7 of 7) sorted by relevance

/linux/include/linux/
H A Dminmax.h49 #define __sign_use(ux) (is_signed_type(typeof(ux)) ? \ argument
50 (2 + __is_nonneg(ux)) : (1 + 2 * (sizeof(ux) < 4)))
68 #define __is_nonneg(ux) statically_true((long long)(ux) >= 0) argument
70 #define __is_nonneg(ux) statically_true( \ argument
71 (typeof(__builtin_choose_expr(sizeof(ux) > 4, 1LL, 1L)))(ux) >= 0)
74 #define __types_ok(ux, uy) \ argument
75 (__sign_use(ux) & __sign_use(uy))
77 #define __types_ok3(ux, uy, uz) \ argument
78 (__sign_use(ux) & __sign_use(uy) & __sign_use(uz))
85 #define __cmp_once_unique(op, type, x, y, ux, uy) \ argument
[all …]
/linux/arch/arm/boot/dts/st/
H A Dstm32mp157c-ultra-fly-sbc.dts424 adc1_ux_ain_pins_a: adc1-ux-ain-0 {
431 dac_ux_ch1_pins_a: dac-ux-ch1-0 {
437 dac_ux_ch2_pins_a: dac-ux-ch2-0 {
443 ethernet0_ux_rgmii_pins_a: rgmii-ux-0 {
479 ethernet0_ux_rgmii_pins_sleep_a: rgmii-ux-sleep-0 {
516 m_can2_ux_pins_a: m-can2-ux-0 {
530 m_can2_ux_sleep_pins_a: m-can2-ux-sleep-0 {
598 qspi_bk1_ux_pins_a: qspi-bk1-ux-0 {
617 qspi_bk1_ux_sleep_pins_a: qspi-bk1-ux-sleep-0 {
636 qspi_clk_ux_sleep_pins_a: qspi-clk-ux-sleep-0 {
[all …]
/linux/drivers/gpu/drm/i915/gem/selftests/
H A Di915_gem_mman.c934 u32 __user *ux = u64_to_user_ptr((u64)(addr + i * sizeof(*ux))); in __igt_mmap() local
937 if (get_user(x, ux)) { in __igt_mmap()
953 if (put_user(x, ux)) { in __igt_mmap()
1105 u32 __user *ux = u64_to_user_ptr((u64)(addr + i * sizeof(*ux))); in ___igt_mmap_migrate() local
1108 if (get_user(x, ux)) { in ___igt_mmap_migrate()
1132 if (put_user(x, ux)) { in ___igt_mmap_migrate()
1542 u32 __user *ux; in __igt_mmap_gpu() local
1570 ux = u64_to_user_ptr((u64)addr); in __igt_mmap_gpu()
1572 if (put_user(bbe, ux)) { in __igt_mmap_gpu()
/linux/net/ipv4/
H A Dtcp_cdg.c103 static u32 __pure nexp_u32(u32 ux) in nexp_u32() argument
111 u32 msb = ux >> 8; in nexp_u32()
120 res = U32_MAX - (ux & 0xff) * (U32_MAX / 1000000); in nexp_u32()
/linux/arch/arm64/kvm/
H A Dat.c948 wr->ux = !(wr->desc & PTE_UXN); in compute_s1_direct_permissions()
950 wr->ur = wr->uw = wr->ux = false; in compute_s1_direct_permissions()
999 wr->ux &= !wr->UXNTable; in compute_s1_hierarchical_permissions()
1022 (wr)->ux = (x); \
1190 wr->ux &= uov_perms & POE_X; in compute_s1_overlay_permissions()
1216 wr->ux &= !(wr->uwxn && wr->uw); in compute_s1_permissions()
1219 (pan3_enabled(vcpu, wi->regime) && wr->ux)); in compute_s1_permissions()
1559 wr->ur = wr->uw = wr->ux = true; in __kvm_translate_va()
/linux/include/trace/events/
H A Dext4.h1568 struct ext4_extent *ux),
1570 TP_ARGS(inode, map, ux),
1587 __entry->u_lblk = le32_to_cpu(ux->ee_block);
1588 __entry->u_len = ext4_ext_get_actual_len(ux);
1589 __entry->u_pblk = ext4_ext_pblock(ux);
1606 struct ext4_extent *ux, struct ext4_extent *ix),
1608 TP_ARGS(inode, map, ux, ix),
1628 __entry->u_lblk = le32_to_cpu(ux->ee_block);
1629 __entry->u_len = ext4_ext_get_actual_len(ux);
1630 __entry->u_pblk = ext4_ext_pblock(ux);
/linux/arch/arm64/include/asm/
H A Dkvm_nested.h340 bool ux; member