Home
last modified time | relevance | path

Searched defs:x (Results 251 – 275 of 1111) sorted by relevance

1...<<11121314151617181920>>...45

/openbmc/qemu/ui/
H A Dvnc-enc-tight.c141 int x, y, d, dx; in tight_detect_smooth_image24() local
421 static int tight_fill_palette(VncState *vs, VncTight *tight, int x, int y, in tight_fill_palette()
563 int x, y, c; in tight_filter_gradient24() local
681 check_solid_tile32(VncState *vs, int x, int y, int w, int h, in check_solid_tile32()
710 static bool check_solid_tile(VncState *vs, int x, int y, int w, int h, in check_solid_tile()
717 static void find_best_solid_area(VncState *vs, int x, int y, int w, int h, in find_best_solid_area()
755 static void extend_solid_area(VncState *vs, int x, int y, int w, int h, in extend_solid_area()
923 int x, int y, int w, int h) in send_full_color_rect()
969 static int send_mono_rect(VncState *vs, VncWorker *worker, int x, int y, in send_mono_rect()
1059 int x, int y, int w, int h) in send_gradient_rect()
[all …]
H A Dvnc-enc-hextile.c30 static void hextile_enc_cord(uint8_t *ptr, int x, int y, int w, int h) in hextile_enc_cord()
46 int vnc_hextile_send_framebuffer_update(VncState *vs, int x, in vnc_hextile_send_framebuffer_update()
/openbmc/u-boot/drivers/net/
H A Dep93xx_eth.c136 #define dump_dev(x) argument
137 #define dump_rx_descriptor_queue(x) argument
138 #define dump_rx_status_queue(x) argument
139 #define dump_tx_descriptor_queue(x) argument
140 #define dump_tx_status_queue(x) argument
/openbmc/u-boot/arch/m68k/include/asm/coldfire/
H A Dmdha.h43 #define MDHA_MR_MAC(x) (((x) & 0x03) << 3) argument
51 #define MDHA_CR_DMAL(x) (((x) & 0x1F) << 16) /* 532x */ argument
62 #define MDHA_SR_IFL(x) (((x) & 0xFF) << 16) argument
64 #define MDHA_SR_APD(x) (((x) & 0x7) << 13) argument
66 #define MDHA_SR_FS(x) (((x) & 0x7) << 8) argument
/openbmc/qemu/tests/tcg/multiarch/
H A Dsha1.c63 #define R0(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk0(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
64 #define R1(v,w,x,y,z,i) z+=((w&(x^y))^y)+blk(i)+0x5A827999+rol(v,5);w=rol(w,30); argument
65 #define R2(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0x6ED9EBA1+rol(v,5);w=rol(w,30); argument
66 #define R3(v,w,x,y,z,i) z+=(((w|x)&y)|(w&x))+blk(i)+0x8F1BBCDC+rol(v,5);w=rol(w,30); argument
67 #define R4(v,w,x,y,z,i) z+=(w^x^y)+blk(i)+0xCA62C1D6+rol(v,5);w=rol(w,30); argument
/openbmc/qemu/include/hw/s390x/
H A Ds390-pci-inst.h87 #define FIB_DATA_ISC(x) (((x) >> 28) & 0x7) argument
88 #define FIB_DATA_NOI(x) (((x) >> 16) & 0xfff) argument
89 #define FIB_DATA_AIBVO(x) (((x) >> 8) & 0x3f) argument
90 #define FIB_DATA_SUM(x) (((x) >> 7) & 0x1) argument
91 #define FIB_DATA_AISBO(x) ((x) & 0x3f) argument
/openbmc/u-boot/arch/arm/include/asm/arch-mx7/
H A Dimx-regs.h299 #define IOMUXC_GPR_GPR1_GPR_WEIM_ADDRS0(x) (((uint32_t)(((uint32_t)(x))<<IOMUXC_GPR_GPR1_GPR_… argument
304 #define IOMUXC_GPR_GPR1_GPR_WEIM_ADDRS1(x) (((uint32_t)(((uint32_t)(x))<<IOMUXC_GPR_GPR1_GPR_… argument
309 #define IOMUXC_GPR_GPR1_GPR_WEIM_ADDRS2(x) (((uint32_t)(((uint32_t)(x))<<IOMUXC_GPR_GPR1_GPR_… argument
314 #define IOMUXC_GPR_GPR1_GPR_WEIM_ADDRS3(x) (((uint32_t)(((uint32_t)(x))<<IOMUXC_GPR_GPR1_GPR_… argument
335 #define IOMUXC_GPR_GPR1_GPR_DBG_ACK(x) (((uint32_t)(((uint32_t)(x))<<IOMUXC_GPR_GPR1_GPR_… argument
373 #define IOMUXC_GPR_GPR2_GPR_MQS_CLK_DIV(x) (((uint32_t)(((uint32_t)(x))<<IOMUXC_GPR_GPR2_GPR_… argument
490 #define IOMUXC_GPR_GPR4_cpu_STANDBYWFI(x) (((uint32_t)(((uint32_t)(x))<<IOMUXC_GPR_GPR4_cpu_… argument
493 #define IOMUXC_GPR_GPR4_cpu_STANDBYWFE(x) (((uint32_t)(((uint32_t)(x))<<IOMUXC_GPR_GPR4_cpu_… argument
549 #define IOMUXC_GPR_GPR7_GPR_chd1_chrg_det_test(x) (((uint32_t)(((uint32_t)(x))<<IOMUXC_GPR_GPR7_GPR… argument
560 #define IOMUXC_GPR_GPR7_GPR_chd2_chrg_det_test(x) (((uint32_t)(((uint32_t)(x))<<IOMUXC_GPR_GPR7_GPR… argument
[all …]
/openbmc/qemu/target/arm/tcg/
H A Dtranslate.h198 static inline int negate(DisasContext *s, int x) in negate()
203 static inline int plus_1(DisasContext *s, int x) in plus_1()
208 static inline int plus_2(DisasContext *s, int x) in plus_2()
213 static inline int plus_8(DisasContext *s, int x) in plus_8()
218 static inline int plus_12(DisasContext *s, int x) in plus_12()
223 static inline int times_2(DisasContext *s, int x) in times_2()
228 static inline int times_4(DisasContext *s, int x) in times_4()
233 static inline int times_8(DisasContext *s, int x) in times_8()
238 static inline int times_2_plus_1(DisasContext *s, int x) in times_2_plus_1()
243 static inline int rsub_64(DisasContext *s, int x) in rsub_64()
[all …]
/openbmc/u-boot/arch/x86/lib/
H A Dpinctrl_ich6.c20 #define GPIO_USESEL_OFFSET(x) (x) argument
21 #define GPIO_IOSEL_OFFSET(x) (x + 4) argument
22 #define GPIO_LVL_OFFSET(x) ((x) ? (x) + 8 : 0xc) argument
/openbmc/u-boot/lib/
H A Dcrc32.c30 #define tole(x) cpu_to_le32(x) argument
173 # define DO_CRC(x) crc = tab[(crc ^ (x)) & 255] ^ (crc >> 8) argument
175 # define DO_CRC(x) crc = tab[((crc >> 24) ^ (x)) & 255] ^ (crc << 8) argument
H A Dsha512.c52 static inline uint64_t Ch(uint64_t x, uint64_t y, uint64_t z) in Ch()
57 static inline uint64_t Maj(uint64_t x, uint64_t y, uint64_t z) in Maj()
97 #define e0(x) (ror64(x,28) ^ ror64(x,34) ^ ror64(x,39)) argument
98 #define e1(x) (ror64(x,14) ^ ror64(x,18) ^ ror64(x,41)) argument
99 #define s0(x) (ror64(x, 1) ^ ror64(x, 8) ^ (x >> 7)) argument
100 #define s1(x) (ror64(x,19) ^ ror64(x,61) ^ (x >> 6)) argument
/openbmc/u-boot/drivers/net/mscc_eswitch/
H A Dmscc_xfer.c10 #define QS_INJ_CTRL_GAP_SIZE(x) ((x) << 21) argument
13 #define QS_INJ_CTRL_VLD_BYTES(x) ((x) << 16) argument
25 #define XTR_VALID_BYTES(x) (4 - ((x) & 3)) argument
/openbmc/u-boot/drivers/mtd/nand/raw/
H A Dmxc_nand.h162 #define NFC_V3_CONFIG1_RBA(x) (((x) & 0x7) << 4) argument
175 #define NFC_V3_CONFIG2_PPB(x) (((x) & 0x3) << 7) argument
177 #define NFC_V3_CONFIG2_EDC(x) (((x) & 0x7) << 9) argument
178 #define NFC_V3_CONFIG2_NUM_ADDR_PH1(x) (((x) & 0x3) << 12) argument
181 #define NFC_V3_CONFIG2_SPAS(x) (((x) & 0xff) << 16) argument
183 #define NFC_V3_CONFIG2_ST_CMD(x) (((x) & 0xff) << 24) argument
185 #define NFC_V3_CONFIG3_ADD_OP(x) (((x) & 0x3) << 0) argument
187 #define NFC_V3_CONFIG3_SBB(x) (((x) & 0x7) << 8) argument
188 #define NFC_V3_CONFIG3_NUM_OF_DEVS(x) (((x) & 0x7) << 12) argument
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/
H A Diomux.h29 #define MUX_PAD_CTRL(x) ((iomux_cfg_t)(x) << MUX_PAD_CTRL_SHIFT) argument
35 #define MUX_MODE_ALT(x) (((iomux_cfg_t)(x) << MUX_MODE_SHIFT) & \ argument
/openbmc/u-boot/fs/cramfs/
H A Dcramfs.c37 #define CRAMINO(x) (CRAMFS_GET_OFFSET(x) ? CRAMFS_GET_OFFSET(x)<<2 : 1) argument
38 #define OFFSET(x) ((x)->i_ino) argument
46 #define PART_OFFSET(x) ((ulong)x->offset + \ argument
49 #define PART_OFFSET(x) ((ulong)x->offset) argument
/openbmc/u-boot/scripts/dtc/libfdt/
H A Dlibfdt_internal.h55 #define FDT_ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1)) argument
56 #define FDT_TAGALIGN(x) (FDT_ALIGN((x), FDT_TAGSIZE)) argument
/openbmc/u-boot/arch/arm/mach-tegra/tegra20/
H A Dclock.c59 #define CLK(x) CLOCK_ID_ ## x argument
621 #define PLLE_SS_CNTL_SSCINCINTRV(x) (((x) & 0x3f) << 24) argument
622 #define PLLE_SS_CNTL_SSCINC(x) (((x) & 0xff) << 16) argument
626 #define PLLE_SS_CNTL_SSCMAX(x) (((x) & 0x1ff) << 0) argument
631 #define PLLE_BASE_PLDIV_CML(x) (((x) & 0xf) << 24) argument
632 #define PLLE_BASE_PLDIV(x) (((x) & 0x3f) << 16) argument
633 #define PLLE_BASE_NDIV(x) (((x) & 0xff) << 8) argument
634 #define PLLE_BASE_MDIV(x) (((x) & 0xff) << 0) argument
637 #define PLLE_MISC_SETUP_BASE(x) (((x) & 0xffff) << 16) argument
641 #define PLLE_MISC_SETUP_EXT(x) (((x) & 0x3) << 2) argument
/openbmc/u-boot/drivers/ddr/fsl/
H A Dinteractive.c144 #define COMMON_TIMING(x) {#x, offsetof(common_timing_params_t, x), \ argument
209 #define DIMM_PARM(x) {#x, offsetof(dimm_params_t, x), \ argument
211 #define DIMM_PARM_HEX(x) {#x, offsetof(dimm_params_t, x), \ argument
495 #define CTRL_OPTIONS(x) {#x, offsetof(memctl_options_t, x), \ argument
497 #define CTRL_OPTIONS_CS(x, y) {"cs" #x "_" #y, \ argument
600 #define CFG_REGS(x) {#x, offsetof(fsl_ddr_cfg_regs_t, x), \ argument
602 #define CFG_REGS_CS(x, y) {"cs" #x "_" #y, \ argument
801 #define CTRL_OPTIONS_HEX(x) {#x, offsetof(memctl_options_t, x), \ argument
1238 #define PRINT_NXS(x, y, z...) printf("%-3d : %02x " z "\n", x, (u8)y); in ddr3_spd_dump() argument
1431 #define PRINT_NXS(x, y, z...) printf("%-3d : %02x " z "\n", x, (u8)y); in ddr4_spd_dump() argument
/openbmc/openbmc-tools/dbus-vis/
H A Dipmi_timeline_vis.js249 let l = Math.min.apply(Math, interval.map(function(x) { argument
252 let u = Math.max.apply(Math, interval.map(function(x) { argument
264 lb = Math.min.apply(Math, interval.map(function(x) { argument
267 ub = Math.max.apply(Math, interval.map(function(x) { argument
497 function MapXCoord(x, left_margin, right_margin, rl, rr) { argument
544 function MouseXToTimestamp(x) { argument
575 x: 0, property in MouseState
676 function ShowReplayOutputs(x, ncols) { argument
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/
H A Dfdt.c181 #define ft_fixup_l3cache(x, y) argument
378 #define ft_fixup_l2cache(x) argument
485 #define ft_fixup_dpaa_clks(x) argument
523 #define fdt_fixup_usb(x) argument
567 #define fdt_fixup_dma3(x) argument
594 #define fdt_fixup_l2_switch(x) argument
744 #define CCSR_VIRT_TO_PHYS(x) \ argument
/openbmc/u-boot/arch/arm/mach-aspeed/ast2600/
H A Dscu_info.c188 #define BIT_WDT_SOC(x) SYS_WDT ## x ## _SOC_RESET argument
189 #define BIT_WDT_FULL(x) SYS_WDT ## x ## _FULL_RESET argument
190 #define BIT_WDT_ARM(x) SYS_WDT ## x ## _ARM_RESET argument
191 #define BIT_WDT_SW(x) SYS_WDT ## x ## _SW_RESET argument
193 #define HANDLE_WDTx_RESET(x, event_log, event_log_reg) \ argument
/openbmc/u-boot/arch/arm/mach-tegra/tegra210/
H A Dxusb-padctl.c175 #define XUSB_PADCTL_UPHY_PLL_P0_CTL1_FREQ_NDIV(x) (((x) & 0xff) << 20) argument
181 #define XUSB_PADCTL_UPHY_PLL_P0_CTL1_SLEEP(x) (((x) & 0x3) << 1) argument
186 #define XUSB_PADCTL_UPHY_PLL_P0_CTL2_CAL_CTRL(x) (((x) & 0xffffff) << 4) argument
194 #define XUSB_PADCTL_UPHY_PLL_P0_CTL4_TXCLKREF_SEL(x) (((x) & 0x3) << 12) argument
200 #define XUSB_PADCTL_UPHY_PLL_P0_CTL5_DCO_CTRL(x) (((x) & 0xff) << 16) argument
/openbmc/u-boot/arch/arm/mach-at91/include/mach/
H A Dat91_wdt.h37 #define AT91_WDT_MR_WDV(x) (x & 0xfff) argument
42 #define AT91_WDT_MR_WDD(x) ((x & 0xfff) << 16) argument
/openbmc/qemu/tests/tcg/i386/
H A Dtest-i386-fxtract.c19 int isnan_ld(long double x) in isnan_ld()
27 int issignaling_ld(long double x) in issignaling_ld()
H A Dtest-i386-fscale.c20 int isnan_ld(long double x) in isnan_ld()
28 int issignaling_ld(long double x) in issignaling_ld()

1...<<11121314151617181920>>...45