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

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
gold-gdb-index-2.c 22 void bar () { C1::baz (); }
gold-gdb-index.c 22 void foo () { C1::baz (); }
gold-gdb-index.h 20 class C1
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
gold-gdb-index-2.c 22 void bar () { C1::baz (); }
gold-gdb-index.c 22 void foo () { C1::baz (); }
gold-gdb-index.h 20 class C1
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/
rtti1.cc 27 class C1;
35 class C1: public Base1 {
39 class D1 : public C1{
41 D1(C1 *, C1 *);
43 C1* expr_1_;
44 C1* expr_2_;
47 D1::D1(C1 *expr_1, C1 *expr_2)
50 C1 *create1()
    [all...]
breakpoint-locs-2.cc 22 void bar () { C1::baz (); }
breakpoint-locs.cc 22 void foo () { C1::baz (); }
breakpoint-locs.h 20 class C1
breakpoint.cc 22 class C1 {
24 C1(int i) : i_(i) {}
55 C1::Nested c1; local
57 c1.foo ();
59 C1 c2 (2), c3 (3);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/
rtti1.cc 27 class C1;
35 class C1: public Base1 {
39 class D1 : public C1{
41 D1(C1 *, C1 *);
43 C1* expr_1_;
44 C1* expr_2_;
47 D1::D1(C1 *expr_1, C1 *expr_2)
50 C1 *create1()
    [all...]
breakpoint-locs-2.cc 22 void bar () { C1::baz (); }
breakpoint-locs.cc 22 void foo () { C1::baz (); }
breakpoint-locs.h 20 class C1
breakpoint.cc 22 class C1 {
24 C1(int i) : i_(i) {}
55 C1::Nested c1; local
57 c1.foo ();
59 C1 c2 (2), c3 (3);
  /src/tests/usr.bin/xlint/lint1/
msg_210.c 17 C1
27 C c1 = C1; variable
  /src/external/gpl3/gcc/dist/libgcc/config/libbid/
bid64_to_int32.c 46 // Note: C1 represents x_significand (UINT64)
51 UINT64 C1;
69 C1 = (x & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
70 if (C1 > 9999999999999999ull) { // non-canonical
72 C1 = 0;
76 C1 = x & MASK_BINARY_SIG1;
80 if (C1 == 0x0ull) {
89 if (C1 >= 0x0020000000000000ull) { // x >= 2^53
91 if (C1 >= 0x0000000100000000ull) { // x >= 2^32
92 tmp1.d = (double) (C1 >> 32); // exact conversio
    [all...]
bid128_next.c 50 UINT128 C1; // C1.w[1], C1.w[0] represent x_signif_hi, x_signif_lo (UINT64)
55 C1.w[1] = x.w[1] & MASK_COEFF;
56 C1.w[0] = x.w[0];
96 C1.w[1] = 0; // significand high
97 C1.w[0] = 0; // significand low
100 if (C1.w[1] > 0x0001ed09bead87c0ull ||
101 (C1.w[1] == 0x0001ed09bead87c0ull
102 && C1.w[0] > 0x378d8e63ffffffffull))
    [all...]
bid128_to_int64.c 37 // Note: C1.w[1], C1.w[0] represent x_signif_hi, x_signif_lo (all are UINT64)
42 UINT128 C1, C;
50 C1.w[1] = x.w[1] & MASK_COEFF;
51 C1.w[0] = x.w[0];
85 if ((C1.w[1] > 0x0001ed09bead87c0ull) ||
86 (C1.w[1] == 0x0001ed09bead87c0ull
87 && (C1.w[0] > 0x378d8e63ffffffffull))
91 } else if ((C1.w[1] == 0x0ull) && (C1.w[0] == 0x0ull))
    [all...]
bid64_to_int64.c 46 // Note: C1 represents x_significand (UINT64)
50 UINT64 C1;
69 C1 = (x & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
70 if (C1 > 9999999999999999ull) { // non-canonical
72 C1 = 0;
76 C1 = x & MASK_BINARY_SIG1;
80 if (C1 == 0x0ull) {
89 if (C1 >= 0x0020000000000000ull) { // x >= 2^53
91 if (C1 >= 0x0000000100000000ull) { // x >= 2^32
92 tmp1.d = (double) (C1 >> 32); // exact conversio
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/config/libbid/
bid64_to_int32.c 46 // Note: C1 represents x_significand (UINT64)
51 UINT64 C1;
69 C1 = (x & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
70 if (C1 > 9999999999999999ull) { // non-canonical
72 C1 = 0;
76 C1 = x & MASK_BINARY_SIG1;
80 if (C1 == 0x0ull) {
89 if (C1 >= 0x0020000000000000ull) { // x >= 2^53
91 if (C1 >= 0x0000000100000000ull) { // x >= 2^32
92 tmp1.d = (double) (C1 >> 32); // exact conversio
    [all...]
bid128_next.c 50 UINT128 C1; // C1.w[1], C1.w[0] represent x_signif_hi, x_signif_lo (UINT64)
55 C1.w[1] = x.w[1] & MASK_COEFF;
56 C1.w[0] = x.w[0];
96 C1.w[1] = 0; // significand high
97 C1.w[0] = 0; // significand low
100 if (C1.w[1] > 0x0001ed09bead87c0ull ||
101 (C1.w[1] == 0x0001ed09bead87c0ull
102 && C1.w[0] > 0x378d8e63ffffffffull))
    [all...]
bid128_to_int64.c 37 // Note: C1.w[1], C1.w[0] represent x_signif_hi, x_signif_lo (all are UINT64)
42 UINT128 C1, C;
50 C1.w[1] = x.w[1] & MASK_COEFF;
51 C1.w[0] = x.w[0];
85 if ((C1.w[1] > 0x0001ed09bead87c0ull) ||
86 (C1.w[1] == 0x0001ed09bead87c0ull
87 && (C1.w[0] > 0x378d8e63ffffffffull))
91 } else if ((C1.w[1] == 0x0ull) && (C1.w[0] == 0x0ull))
    [all...]
bid64_to_int64.c 46 // Note: C1 represents x_significand (UINT64)
50 UINT64 C1;
69 C1 = (x & MASK_BINARY_SIG2) | MASK_BINARY_OR2;
70 if (C1 > 9999999999999999ull) { // non-canonical
72 C1 = 0;
76 C1 = x & MASK_BINARY_SIG1;
80 if (C1 == 0x0ull) {
89 if (C1 >= 0x0020000000000000ull) { // x >= 2^53
91 if (C1 >= 0x0000000100000000ull) { // x >= 2^32
92 tmp1.d = (double) (C1 >> 32); // exact conversio
    [all...]

Completed in 27 milliseconds

1 2 3 4 5 6 7 8 91011>>