HomeSort by: relevance | last modified time | path
    Searched defs:got (Results 1 - 25 of 330) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libbacktrace/
read.c 53 uint64_t got; local
74 got = 0;
75 while (got < size)
77 r = read (descriptor, view->base, size - got);
86 got += (uint64_t) r;
89 if (got < size)
  /src/external/gpl3/gcc.old/dist/libbacktrace/
read.c 53 uint64_t got; local
74 got = 0;
75 while (got < size)
77 r = read (descriptor, view->base, size - got);
86 got += (uint64_t) r;
89 if (got < size)
  /src/external/gpl3/gdb/dist/libbacktrace/
read.c 53 uint64_t got; local
74 got = 0;
75 while (got < size)
77 r = read (descriptor, view->base, size - got);
86 got += (uint64_t) r;
89 if (got < size)
  /src/external/gpl3/gdb.old/dist/libbacktrace/
read.c 53 uint64_t got; local
74 got = 0;
75 while (got < size)
77 r = read (descriptor, view->base, size - got);
86 got += (uint64_t) r;
89 if (got < size)
  /src/external/lgpl3/gmp/dist/tests/mpf/
t-int_p.c 29 int got; local
30 got = mpf_integer_p (f);
31 if (got != want)
33 printf ("mpf_integer_p got %d want %d\n", got, want);
t-cmp_d.c 33 int got; local
35 got = mpf_cmp_d (x, y);
36 if (SGN(got) != cmp)
40 printf (" got %d\n", got);
t-fits.c 30 got = fun (f); \
31 if (got != answer) \
33 printf ("%s (%s) got %d want %d\n", name, expr, got, answer); \
46 int got; local
  /src/external/lgpl3/gmp/dist/tests/mpn/
t-asmtype.c 52 mp_limb_t got[3]; local
54 mpn_add_n (got, x, y, (mp_size_t) 3);
56 if (refmpn_cmp (got, want, (mp_size_t) 3) != 0)
  /src/external/lgpl3/gmp/dist/tests/mpq/
t-set_str.c 29 mpq_t got; local
34 mpq_init (got);
36 if (mpq_set_str (got, str, base) != 0)
43 MPQ_CHECK_FORMAT (got);
45 if (! mpq_equal (got, want))
50 mpq_trace ("got ", got);
55 mpq_clear (got);
t-cmp_si.c 72 int i, got; local
81 got = mpq_cmp_si (q, data[i].n, data[i].d);
82 if (SGN(got) != data[i].want)
89 printf (" got=%d\n", got);
96 got = mpq_cmp_si (q, 0L, data[i].d);
97 if (SGN(got) != data[i].want)
t-equal.c 29 int got; local
34 got = mpq_equal (x, y);
35 if ((got != 0) != (want != 0))
37 printf ("mpq_equal got %d want %d\n", got, want);
t-set_f.c 103 mpq_t got; local
110 mpq_init (got);
128 mpq_set_f (got, f);
129 MPQ_CHECK_FORMAT (got);
131 if (mpz_cmp (mpq_numref(got), want_num) != 0
132 || mpz_cmp (mpq_denref(got), want_den) != 0)
149 printf (" got num 0x");
150 mpz_out_str (stdout, 16, mpq_numref(got));
152 printf (" got den 0x");
153 mpz_out_str (stdout, 16, mpq_denref(got));
    [all...]
  /src/external/lgpl3/gmp/dist/tests/mpz/
t-set_str.c 29 mpz_t got; local
34 mpz_init (got);
36 if (mpz_set_str (got, str, base) != fail)
43 MPZ_CHECK_FORMAT (got);
45 if (fail == 0 && mpz_cmp (got, want) != 0)
50 mpz_trace ("got ", got);
55 mpz_clear (got);
t-fits.c 31 got = fun (z); \
32 if (got != answer) \
34 printf ("%s (%s) got %d want %d\n", name, expr, got, answer); \
47 int got; local
t-get_d.c 31 double got, want; local
41 got = mpz_get_d (z);
42 if (got != 0)
53 got = mpz_get_d (z);
55 if (got != want)
60 printf (" got %.20g\n", got);
dive_ui.c 32 mpz_t a, q, got; local
41 mpz_init (got);
53 mpz_divexact_ui (got, a, d);
54 MPZ_CHECK_FORMAT (got);
55 if (mpz_cmp (got, q) != 0)
61 mpz_trace (" got", got);
73 mpz_clear (got);
  /src/external/lgpl3/gmp/dist/tests/
t-bswap.c 30 mp_limb_t src, want, got; local
42 BSWAP_LIMB (got, src);
43 if (got != want)
49 mpn_trace (" got ", &got, (mp_size_t) 1);
53 BSWAP_LIMB_FETCH (got, &src);
54 if (got != want)
60 BSWAP_LIMB_STORE (&got, src);
61 if (got != want)
t-parity.c 28 int got; local
29 ULONG_PARITY (got, n);
30 if (got != want)
35 printf (" got %d\n", got);
t-popc.c 30 mp_limb_t src, want, got; local
41 popc_limb (got, src);
42 if (got != want)
48 mpn_trace (" got ", &got, (mp_size_t) 1);
60 popc_limb (got, src);
61 if (got != want)
72 popc_limb (got, src);
73 if (got != want)
t-count_zeros.c 29 int got; local
30 count_leading_zeros (got, n);
31 if (got != want)
36 printf (" got %d\n", got);
44 int got; local
45 count_trailing_zeros (got, n);
46 if (got != want)
51 printf (" got %d\n", got);
    [all...]
  /src/sys/arch/i386/stand/lib/
pread.c 54 ssize_t got; local
58 got = read(fd, buf, count);
59 if (got < 0)
63 vpbcopy(buf, dest, got);
65 dest += got;
66 rsize -= got;
67 if (got < count)
  /src/external/lgpl3/gmp/dist/tests/rand/
t-urbui.c 31 unsigned long bits, limit, got; local
36 /* will demand got < limit */
41 got = gmp_urandomb_ui (rstate, bits);
42 if (got >= limit)
48 printf (" got: %#lx\n", got);
t-urmui.c 42 unsigned long got, n; local
51 got = gmp_urandomm_ui (rstate, n);
52 if (got >= n)
57 printf (" got: %#lx\n", got);
  /src/lib/libwrap/
misc.c 32 int got; local
36 got = strlen(ptr);
37 if (got >= 1 && ptr[got - 1] == '\n') {
39 if (got >= 2 && ptr[got - 2] == '\\') {
40 got -= 2;
45 ptr += got;
46 len -= got;
  /src/external/bsd/openpam/dist/t/
t_openpam_readword.c 64 char *got; local
68 got = openpam_readword(tf->file, &lineno, &len);
72 if (expected != NULL && got == NULL) {
73 t_printv("expected <<%s>>, got nothing\n", expected);
75 } else if (expected == NULL && got != NULL) {
76 t_printv("expected nothing, got <<%s>>\n", got);
78 } else if (expected != NULL && got != NULL && strcmp(expected, got) != 0) {
79 t_printv("expected <<%s>>, got <<%s>>\n", expected, got)
    [all...]

Completed in 41 milliseconds

1 2 3 4 5 6 7 8 91011>>