| /OK3568_Linux_fs/u-boot/arch/arm/lib/ |
| H A D | muldi3.S | 16 #define xl r1 macro 20 #define xl r0 macro 31 mla xh, xl, yh, xh 32 mov ip, xl, lsr #16 34 bic xl, xl, ip, lsl #16 37 mul yh, xl, yh 38 mul xl, yl, xl 40 adds xl, xl, yh, lsl #16 42 adds xl, xl, ip, lsl #16
|
| H A D | div64.S | 21 #define xl r1 macro 25 #define xl r0 macro 100 cmpeq xl, r4 101 movlo xh, xl 108 4: movs xl, xl, lsl #1 122 cmp xl, #0 129 clz xh, xl @ we know xh is zero here so... 131 mov xl, xl, lsl xh 136 7: movs xl, xl, lsl #1 182 mov yl, xl, lsr ip [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/lib/ |
| H A D | muldi3.S | 15 #define xl r1 macro 19 #define xl r0 macro 29 mla xh, xl, yh, xh 30 mov ip, xl, lsr #16 32 bic xl, xl, ip, lsl #16 35 mul yh, xl, yh 36 mul xl, yl, xl 38 adds xl, xl, yh, lsl #16 40 adds xl, xl, ip, lsl #16
|
| H A D | div64.S | 18 #define xl r1 macro 22 #define xl r0 macro 96 cmpeq xl, r4 97 movlo xh, xl 104 4: movs xl, xl, lsl #1 118 cmp xl, #0 125 clz xh, xl @ we know xh is zero here so... 127 mov xl, xl, lsl xh 132 7: movs xl, xl, lsl #1 178 mov yl, xl, lsr ip [all …]
|
| H A D | ucmpdi2.S | 15 #define xl r1 macro 19 #define xl r0 macro 28 cmpeq xl, yl 41 cmpeq xl, yl
|
| /OK3568_Linux_fs/external/xserver/mi/ |
| H A D | mifillarc.h | 120 #define MIARCSLICEUPPER(xl,xr,slice,slw) \ argument 121 xl = xorg - x; \ 122 xr = xl + slw - 1; \ 125 if (slice.edge2_top && (slice.edge2.x > xl)) \ 126 xl = slice.edge2.x; 128 #define MIARCSLICELOWER(xl,xr,slice,slw) \ argument 129 xl = xorg - x; \ 130 xr = xl + slw - 1; \ 131 if (!slice.edge1_top && (slice.edge1.x > xl)) \ 132 xl = slice.edge1.x; \
|
| H A D | mipoly.c | 389 int xl = 0, xr = 0; /* x vals of left and right edges */ in miFillConvexPoly() local 450 xl, dl, ml, m1l, incr1l, incr2l); in miFillConvexPoly() 493 if (xl < xr) { in miFillConvexPoly() 494 *(width++) = xr - xl; in miFillConvexPoly() 495 (ptsOut++)->x = xl; in miFillConvexPoly() 498 *(width++) = xl - xr; in miFillConvexPoly() 504 BRESINCRPGON(dl, xl, ml, m1l, incr1l, incr2l); in miFillConvexPoly()
|
| H A D | mifillarc.c | 540 ADDSPAN(xl, xr); \ 547 ADDSPAN(xl, xc); \ 557 int ya, xl, xr, xc; in miFillArcSliceI() local 581 MIARCSLICEUPPER(xl, xr, slice, slw); in miFillArcSliceI() 586 MIARCSLICELOWER(xl, xr, slice, slw); in miFillArcSliceI() 601 int ya, xl, xr, xc; in miFillArcSliceD() local 625 MIARCSLICEUPPER(xl, xr, slice, slw); in miFillArcSliceD() 630 MIARCSLICELOWER(xl, xr, slice, slw); in miFillArcSliceD()
|
| H A D | miwideline.c | 1203 int xbase, ybase, y, boty, xl, xr, xcl, xcr; in miLineArcD() local 1269 xl = 1; in miLineArcD() 1272 xl = 0; in miLineArcD() 1287 xl--; in miLineArcD() 1288 el += (xl << 1) - xlk; in miLineArcD() 1294 xcl = xl + xbase; in miLineArcD() 1306 el = (xl << 1) - xlk - el; in miLineArcD() 1318 while ((el > 0.0) && (xl <= 0)) { in miLineArcD() 1319 xl++; in miLineArcD() 1320 el += (xl << 1) - xlk; in miLineArcD() [all …]
|
| /OK3568_Linux_fs/kernel/include/math-emu/ |
| H A D | op-2.h | 129 #define __FP_CLZ_2(R, xh, xl) \ argument 135 __FP_CLZ(R,xl); \ 143 #define __FP_FRAC_ADDI_2(xh, xl, i) \ 144 (xh += ((xl += i) < i)) 147 #define __FP_FRAC_ADD_2(rh, rl, xh, xl, yh, yl) \ 148 (rh = xh + yh + ((rl = xl + yl) < xl)) 151 #define __FP_FRAC_SUB_2(rh, rl, xh, xl, yh, yl) \ 152 (rh = xh - yh - ((rl = xl - yl) > xl)) 155 #define __FP_FRAC_DEC_2(xh, xl, yh, yl) \ 157 UWtype _t = xl; \ [all …]
|
| /OK3568_Linux_fs/kernel/lib/mpi/ |
| H A D | longlong.h | 132 #define umul_ppmm(xh, xl, m0, m1) \ argument 136 : "=r" ((USItype)(xl)) \ 195 #define umul_ppmm(xh, xl, a, b) \ argument 210 "=r" (xl) \ 215 #define umul_ppmm(xh, xl, a, b) \ argument 219 "=&r" (xl) \ 352 #define umul_ppmm(xh, xl, m0, m1) \ argument 363 (xh) = __xx.__i.__h; (xl) = __xx.__i.__l; \ 367 #define smul_ppmm(xh, xl, m0, m1) \ argument 377 (xh) = __xx.__i.__h; (xl) = __xx.__i.__l; \ [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/conf/machine/include/microblaze/ |
| H A D | arch-microblaze.inc | 31 …utils.contains("TUNE_FEATURES", "barrel-shift", " -mxl-barrel-shift", " -mno-xl-barrel-shift", d)}" 32 …ntains("TUNE_FEATURES", "pattern-compare", " -mxl-pattern-compare", " -mno-xl-pattern-compare", d)… 40 " -mxl-reorder", " -mno-xl-reorder", d), \ 41 " -mxl-reorder", d), " -mno-xl-reorder", d)}"
|
| H A D | feature-microblaze-math.inc | 16 …ls.contains_any('TUNE_FEATURES', ['multiply-low', 'multiply-high'], ' -mno-xl-soft-mul', ' -mxl-so… 19 TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'divide-hard', ' -mno-xl-soft-div', ' -mxl-so…
|
| /OK3568_Linux_fs/u-boot/board/xilinx/microblaze-generic/ |
| H A D | config.mk | 13 CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_HW_MUL) += -mno-xl-soft-mul 14 CPUFLAGS-$(CONFIG_XILINX_MICROBLAZE0_USE_DIV) += -mno-xl-soft-div
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/ |
| H A D | wide-int.h | 1946 unsigned HOST_WIDE_INT xl = xi.to_uhwi (); 1948 return xl < yl; 2062 HOST_WIDE_INT xl = xi.to_shwi (); 2064 return xl < yl ? -1 : xl > yl; 2098 unsigned HOST_WIDE_INT xl = xi.to_uhwi (); 2100 return xl < yl ? -1 : xl > yl; 2108 unsigned HOST_WIDE_INT xl = xi.val[0]; 2110 return xl < yl ? -1 : xl > yl; 2117 unsigned HOST_WIDE_INT xl = xi.to_uhwi (); 2119 return xl < yl ? -1 : xl > yl; [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/ |
| H A D | wide-int.h | 1946 unsigned HOST_WIDE_INT xl = xi.to_uhwi (); 1948 return xl < yl; 2062 HOST_WIDE_INT xl = xi.to_shwi (); 2064 return xl < yl ? -1 : xl > yl; 2098 unsigned HOST_WIDE_INT xl = xi.to_uhwi (); 2100 return xl < yl ? -1 : xl > yl; 2108 unsigned HOST_WIDE_INT xl = xi.val[0]; 2110 return xl < yl ? -1 : xl > yl; 2117 unsigned HOST_WIDE_INT xl = xi.to_uhwi (); 2119 return xl < yl ? -1 : xl > yl; [all …]
|
| /OK3568_Linux_fs/kernel/drivers/clk/pxa/ |
| H A D | clk-pxa3xx.c | 259 unsigned int xl = acsr & ACCR_XL_MASK; in clk_pxa3xx_cpll_get_rate() local 266 pr_info("RJK: parent_rate=%lu, xl=%u, xn=%u\n", parent_rate, xl, xn); in clk_pxa3xx_cpll_get_rate() 267 return t ? parent_rate * xl * xn : parent_rate * xl; in clk_pxa3xx_cpll_get_rate()
|
| /OK3568_Linux_fs/buildroot/package/cache-calibrator/ |
| H A D | 0001-Fix-conflicting-round-function.patch | 47 fprintf(fp, "set label %ld '(%1.3g) ' at %f,%f right\n", l + 1, z, xl, z); 48 fprintf(fp, "set arrow %ld from %f,%f to %f,%f nohead lt 0\n", l + 1, xl, z, xh, z); 68 fprintf(fp, "set label %ld '(%1.3g) ' at %f,%f right\n", l + 1, z, xl, z); 69 fprintf(fp, "set arrow %ld from %f,%f to %f,%f nohead lt 0\n", l + 1, xl, z, xh, z);
|
| /OK3568_Linux_fs/kernel/crypto/ |
| H A D | camellia_generic.c | 344 #define CAMELLIA_F(xl, xr, kl, kr, yl, yr, il, ir, t0, t1) ({ \ argument 345 il = xl ^ kl; \ 834 #define CAMELLIA_ROUNDSM(xl, xr, kl, kr, yl, yr, il, ir) ({ \ argument 838 il = camellia_sp1110[(u8)(xl >> 24)]; \ 840 il ^= camellia_sp0222[(u8)(xl >> 16)]; \ 842 il ^= camellia_sp3033[(u8)(xl >> 8)]; \ 844 il ^= camellia_sp4404[(u8)xl]; \
|
| /OK3568_Linux_fs/kernel/drivers/input/touchscreen/ |
| H A D | raspberrypi-ts.c | 51 u8 xl; member 85 x = (((int)regs.point[i].xh & 0xf) << 8) + regs.point[i].xl; in rpi_ts_poll()
|
| /OK3568_Linux_fs/buildroot/package/xen/ |
| H A D | Config.in | 37 The Xen tools can be accessed by the xl command.
|
| /OK3568_Linux_fs/kernel/arch/x86/events/intel/ |
| H A D | core.c | 3106 struct intel_excl_states *xl; in intel_start_scheduling() local 3121 xl = &excl_cntrs->states[tid]; in intel_start_scheduling() 3123 xl->sched_started = true; in intel_start_scheduling() 3136 struct intel_excl_states *xl; in intel_commit_scheduling() local 3148 xl = &excl_cntrs->states[tid]; in intel_commit_scheduling() 3153 xl->state[cntr] = INTEL_EXCL_EXCLUSIVE; in intel_commit_scheduling() 3155 xl->state[cntr] = INTEL_EXCL_SHARED; in intel_commit_scheduling() 3162 struct intel_excl_states *xl; in intel_stop_scheduling() local 3176 xl = &excl_cntrs->states[tid]; in intel_stop_scheduling() 3178 xl->sched_started = false; in intel_stop_scheduling() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/block/paride/ |
| H A D | pf.c | 618 static int xl(char *buf, int offs) in xl() function 638 set_capacity(pf->disk, xl(buf, 0) + 1); in pf_get_capacity() 639 bs = xl(buf, 4); in pf_get_capacity()
|
| /OK3568_Linux_fs/kernel/drivers/char/tpm/ |
| H A D | Kconfig | 163 the manpages for xl, xl.conf, and docs/misc/vtpm.txt in
|
| /OK3568_Linux_fs/kernel/arch/alpha/kernel/ |
| H A D | sys_sio.c | 483 ALIAS_MV(xl)
|