HomeSort by: relevance | last modified time | path
    Searched refs:ysize (Results 1 - 25 of 52) sorted by relevancy

1 2 3

  /src/external/lgpl3/gmp/dist/mpz/
aorsmul.c 35 #define mpn_cmp_twosizes_lt(xp,xsize, yp,ysize) \
36 ((xsize) < (ysize) \
37 || ((xsize) == (ysize) && mpn_cmp (xp, yp, xsize) < 0))
53 mp_size_t xsize, ysize, tsize, wsize, wsize_signed; local
60 ysize = SIZ(y);
61 if (xsize == 0 || ysize == 0)
65 if (ABS(ysize) > ABS(xsize))
68 MP_SIZE_T_SWAP (xsize, ysize);
71 sub ^= ysize;
72 ysize = ABS(ysize)
    [all...]
fib_ui.c 88 mp_size_t xsize, ysize; local
96 ysize = size + yp[size];
107 ysize = size + c2;
110 size = xsize + ysize;
111 c = mpn_mul (fp, xp, xsize, yp, ysize);
135 mp_size_t xsize, ysize; local
144 ysize = size + (c != 0);
145 size += ysize;
146 c = mpn_mul (fp, yp, ysize, xp, xsize);
lucnum_ui.c 95 mp_size_t yalloc, ysize; local
107 ysize = xsize;
108 ysize -= (yp[ysize-1] == 0);
109 ASSERT (yp[ysize-1] != 0);
123 ASSERT (lalloc >= xsize + ysize);
124 c = mpn_mul (lp, xp, xsize, yp, ysize);
125 lsize = xsize + ysize;
  /src/external/lgpl3/mpfr/dist/src/
strtofr.c 464 mp_size_t ysize, real_ysize, diff_ysize; local
493 ysize = MPFR_PREC2LIMBS (prec);
494 /* prec bits corresponds to ysize limbs */
495 ysize_bits = (mpfr_prec_t) ysize * GMP_NUMB_BITS;
503 y0 = MPFR_TMP_LIMBS_ALLOC (2 * ysize + extra_limbs + 1);
504 y = y0 + ysize; /* y has (ysize + extra_limbs + 1) allocated limbs */
507 to fill at least ysize full limbs with mpn_set_str.
508 We must have base^(pstr_size-1) >= (2^(GMP_NUMB_BITS))^ysize
510 i.e., pstr_size >= 1 + ysize*GMP_NUMB_BITS/log2(base
    [all...]
mpfr-gmp.h 154 #define MPN_OVERLAP_P(xp, xsize, yp, ysize) \
155 ((xp) + (xsize) > (yp) && (yp) + (ysize) > (xp))
  /src/sys/arch/atari/vme/
leo.c 275 leo_init(struct leo_softc *sc, int ysize)
278 if ((ysize != 256) && (ysize != 384) && (ysize != 512))
283 if (ysize == 384)
288 if (ysize == 384)
293 if (ysize == 384)
302 if (ysize == 256) {
307 } else if (ysize == 384) {
321 if (ysize == 384
    [all...]
  /src/games/larn/
create.c 319 int tx, ty, xsize, ysize; local
324 ysize = rnd(3) + 3;
327 troom(lv, xsize, ysize, tx = tx + rnd(MAXX - 24), ty, rnd(3) + 6);
329 troom(lv, xsize, ysize, tx, ty, rnd(9));
339 troom(int lv, int xsize, int ysize, int tx, int ty, int glyph)
343 for (j = ty - 1; j <= ty + ysize; j++)
347 for (j = ty; j < ty + ysize; j++)
352 for (j = ty + 1; j < ty + ysize - 1; j++)
359 item[i = tx + rund(xsize)][j = ty + (ysize - 1) * rund(2)] = OCLOSEDDOOR;
363 item[i = tx + (xsize - 1) * rund(2)][j = ty + rund(ysize)] = OCLOSEDDOOR
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
alias.cc 2379 Y sized at YSIZE bytes, starting C bytes after X, may overlap. If
2384 offset_overlap_p (poly_int64 c, poly_int64 xsize, poly_int64 ysize)
2386 if (known_eq (xsize, 0) || known_eq (ysize, 0))
2392 return maybe_gt (maybe_lt (ysize, 0) ? -ysize : ysize, -c);
2403 similarly YSIZE is the size in bytes for Y.
2406 If XSIZE or YSIZE is zero, we do not know the amount of memory being
2410 If XSIZE or YSIZE is negative, we may access memory outside the object
2422 memrefs_conflict_p (poly_int64 xsize, rtx x, poly_int64 ysize, rtx y
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
alias.cc 2449 Y sized at YSIZE bytes, starting C bytes after X, may overlap. If
2454 offset_overlap_p (poly_int64 c, poly_int64 xsize, poly_int64 ysize)
2456 if (known_eq (xsize, 0) || known_eq (ysize, 0))
2462 return maybe_gt (maybe_lt (ysize, 0) ? -ysize : ysize, -c);
2473 similarly YSIZE is the size in bytes for Y.
2476 If XSIZE or YSIZE is zero, we do not know the amount of memory being
2480 If XSIZE or YSIZE is negative, we may access memory outside the object
2492 memrefs_conflict_p (poly_int64 xsize, rtx x, poly_int64 ysize, rtx y
    [all...]
  /src/external/lgpl3/gmp/dist/mpn/x86/k6/
mul_basecase.asm 53 C mp_srcptr yp, mp_size_t ysize);
55 C Calculate xp,xsize multiplied by yp,ysize, storing the result in
56 C wp,xsize+ysize.
66 C c/l. Could call mpn_mul_1 when ysize is big enough to make it worthwhile.
218 C (whereas the addmul below is run ysize-1 many times). A call to the
304 C edx ysize-1
327 C edx ysize counter, negative
396 C PARAM_YSIZE is the outer loop counter, going from -(ysize-1) up to -1,
433 C edx ysize-1
479 leal (%edi,%edx,4), %ecx C wp adjust for ysize indexin
    [all...]
  /src/external/lgpl3/gmp/dist/mpn/x86/k7/
mul_basecase.asm 54 C mp_srcptr yp, mp_size_t ysize);
56 C Calculate xp,xsize multiplied by yp,ysize, storing the result in
57 C wp,xsize+ysize.
209 C (whereas the addmul below is run ysize-1 many times). A call to the
301 C edx ysize-1
311 movl %edx, PARAM_YSIZE C -(ysize-1)
324 C ebp ysize counter, negative
405 C PARAM_YSIZE is the outer loop counter, going from -(ysize-1) up to -1,
426 C edx ysize-1
433 leal 4(%eax,%edx,4), %eax C yp adjust for ysize indexin
    [all...]
  /src/external/lgpl3/gmp/dist/mpn/x86/p6/
mul_basecase.asm 48 C mp_srcptr yp, mp_size_t ysize);
212 C once (whereas the addmul_1 below is run ysize-1 many times). A call to
283 jz L(done) C if ysize==1
296 C edx ysize-1
305 movl %edx, PARAM_YSIZE C -(ysize-1)
318 C ebp ysize counter, negative
411 C PARAM_YSIZE is the outer loop counter, going from -(ysize-1) up to -1,
426 C edx ysize-1
434 leal 4(%eax,%edx,4), %eax C yp adjust for ysize indexing
498 C ebp ysize counter, negativ
    [all...]
  /src/external/lgpl3/gmp/dist/tests/
refmpz.c 48 mp_size_t xsize, ysize, tsize; local
57 ysize = ABSIZ(y);
58 tsize = MAX (xsize, ysize);
66 refmpn_copy (yp, PTR(y), ysize);
refmpn.c 41 /* Return non-zero if regions {xp,xsize} and {yp,ysize} overlap, with sizes
45 const void *v_yp, mp_size_t ysize)
51 ASSERT (ysize >= 0);
55 ASSERT (yp+ysize >= yp);
60 if (yp + ysize <= xp)
66 /* Return non-zero if limb regions {xp,xsize} and {yp,ysize} overlap. */
68 refmpn_overlap_p (mp_srcptr xp, mp_size_t xsize, mp_srcptr yp, mp_size_t ysize)
71 yp, ysize * GMP_LIMB_BYTES);
366 mp_srcptr yp, mp_size_t ysize)
371 ASSERT_MPN (yp, ysize);
    [all...]
  /src/external/lgpl3/gmp/dist/tests/mpz/
logic.c 34 mp_size_t xsize, ysize; local
110 ysize = mpz_get_ui (bs);
111 mpz_rrandomb (y, rands, ysize);
  /src/external/lgpl3/gmp/dist/mpn/x86/pentium/
mul_basecase.asm 39 C mp_srcptr yp, mp_size_t ysize);
67 decl %ecx C If xsize = 1, ysize = 1 too
95 movl %eax,VAR_COUNTER C set index i to ysize
  /src/sys/arch/arc/arc/
arcbios.c 293 bios_display_info(int *xpos, int *ypos, int *xsize, int *ysize)
299 *ysize = arc_displayinfo.CursorMaxYPosition;
  /src/external/lgpl3/gmp/dist/mpn/x86/
mul_basecase.asm 45 C mp_srcptr yp, mp_size_t ysize);
90 decl %ecx C If xsize = 1, ysize = 1 too
119 movl PARAM_YSIZE,%eax C ysize
122 movl %eax,VAR_COUNTER C set index i to ysize
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_tv.c 1099 int xsize, ysize, xpos, ypos; local
1148 ysize = tmp & 0xffff;
1158 ypos, mode.vdisplay - ysize - ypos);
1437 unsigned int xsize, ysize; local
1544 ysize = intel_tv_mode_vdisplay(tv_mode);
1550 ysize -= (tv_conn_state->margins.top +
1553 I915_WRITE(TV_WIN_SIZE, (xsize<<16)|ysize);
  /src/external/lgpl3/gmp/dist/
gmp-impl.h 503 #define TMP_ALLOC_LIMBS_2(xp,xsize, yp,ysize) \
508 (yp) = TMP_ALLOC_LIMBS (ysize); \
512 (xp) = TMP_ALLOC_LIMBS ((xsize) + (ysize)); \
516 #define TMP_ALLOC_LIMBS_3(xp,xsize, yp,ysize, zp,zsize) \
521 (yp) = TMP_ALLOC_LIMBS (ysize); \
526 (xp) = TMP_ALLOC_LIMBS ((xsize) + (ysize) + (zsize)); \
528 (zp) = (yp) + (ysize); \
2388 /* Return non-zero if xp,xsize and yp,ysize overlap.
2389 If xp+xsize<=yp there's no overlap, or if yp+ysize<=xp there's no
2391 #define MPN_OVERLAP_P(xp, xsize, yp, ysize) \
    [all...]
  /src/external/lgpl3/gmp/lib/libgmp/arch/aarch64/
gmp.h 1909 {yp,ysize} will usually have a random number of bits then the high limb
1913 ysize==0 isn't a documented feature, but is used internally in a few
1921 #define __GMPN_AORS(cout, wp, xp, xsize, yp, ysize, FUNCTION, TEST) \
1926 /* ASSERT ((ysize) >= 0); */ \
1927 /* ASSERT ((xsize) >= (ysize)); */ \
1929 /* ASSERT (MPN_SAME_OR_SEPARATE2_P (wp, xsize, yp, ysize)); */ \
1931 __gmp_i = (ysize); \
1955 #define __GMPN_ADD(cout, wp, xp, xsize, yp, ysize) \
1956 __GMPN_AORS (cout, wp, xp, xsize, yp, ysize, mpn_add_n, \
1958 #define __GMPN_SUB(cout, wp, xp, xsize, yp, ysize) \
    [all...]
  /src/external/lgpl3/gmp/lib/libgmp/arch/alpha/
gmp.h 1909 {yp,ysize} will usually have a random number of bits then the high limb
1913 ysize==0 isn't a documented feature, but is used internally in a few
1921 #define __GMPN_AORS(cout, wp, xp, xsize, yp, ysize, FUNCTION, TEST) \
1926 /* ASSERT ((ysize) >= 0); */ \
1927 /* ASSERT ((xsize) >= (ysize)); */ \
1929 /* ASSERT (MPN_SAME_OR_SEPARATE2_P (wp, xsize, yp, ysize)); */ \
1931 __gmp_i = (ysize); \
1955 #define __GMPN_ADD(cout, wp, xp, xsize, yp, ysize) \
1956 __GMPN_AORS (cout, wp, xp, xsize, yp, ysize, mpn_add_n, \
1958 #define __GMPN_SUB(cout, wp, xp, xsize, yp, ysize) \
    [all...]
  /src/external/lgpl3/gmp/lib/libgmp/arch/arm/
gmp.h 1909 {yp,ysize} will usually have a random number of bits then the high limb
1913 ysize==0 isn't a documented feature, but is used internally in a few
1921 #define __GMPN_AORS(cout, wp, xp, xsize, yp, ysize, FUNCTION, TEST) \
1926 /* ASSERT ((ysize) >= 0); */ \
1927 /* ASSERT ((xsize) >= (ysize)); */ \
1929 /* ASSERT (MPN_SAME_OR_SEPARATE2_P (wp, xsize, yp, ysize)); */ \
1931 __gmp_i = (ysize); \
1955 #define __GMPN_ADD(cout, wp, xp, xsize, yp, ysize) \
1956 __GMPN_AORS (cout, wp, xp, xsize, yp, ysize, mpn_add_n, \
1958 #define __GMPN_SUB(cout, wp, xp, xsize, yp, ysize) \
    [all...]
  /src/external/lgpl3/gmp/lib/libgmp/arch/armeb/
gmp.h 1909 {yp,ysize} will usually have a random number of bits then the high limb
1913 ysize==0 isn't a documented feature, but is used internally in a few
1921 #define __GMPN_AORS(cout, wp, xp, xsize, yp, ysize, FUNCTION, TEST) \
1926 /* ASSERT ((ysize) >= 0); */ \
1927 /* ASSERT ((xsize) >= (ysize)); */ \
1929 /* ASSERT (MPN_SAME_OR_SEPARATE2_P (wp, xsize, yp, ysize)); */ \
1931 __gmp_i = (ysize); \
1955 #define __GMPN_ADD(cout, wp, xp, xsize, yp, ysize) \
1956 __GMPN_AORS (cout, wp, xp, xsize, yp, ysize, mpn_add_n, \
1958 #define __GMPN_SUB(cout, wp, xp, xsize, yp, ysize) \
    [all...]
  /src/external/lgpl3/gmp/lib/libgmp/arch/coldfire/
gmp.h 1826 {yp,ysize} will usually have a random number of bits then the high limb
1830 ysize==0 isn't a documented feature, but is used internally in a few
1838 #define __GMPN_AORS(cout, wp, xp, xsize, yp, ysize, FUNCTION, TEST) \
1843 /* ASSERT ((ysize) >= 0); */ \
1844 /* ASSERT ((xsize) >= (ysize)); */ \
1846 /* ASSERT (MPN_SAME_OR_SEPARATE2_P (wp, xsize, yp, ysize)); */ \
1848 __gmp_i = (ysize); \
1872 #define __GMPN_ADD(cout, wp, xp, xsize, yp, ysize) \
1873 __GMPN_AORS (cout, wp, xp, xsize, yp, ysize, mpn_add_n, \
1875 #define __GMPN_SUB(cout, wp, xp, xsize, yp, ysize) \
    [all...]

Completed in 51 milliseconds

1 2 3