Searched refs:px (Results 1 - 25 of 99) sorted by relevance

1234

/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.benjamin/
H A Dscope02.C57 X *px = &x01; local
58 px->~X();
61 px = &x02;
62 px->~localtype();
65 px = &x03;
66 px->~classtype(); //-g++ //p3: unqual-id lookup in object and postfix-expr
69 px = &x04;
70 px->~globaltype();
97 px = &x05;
98 px
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/
H A Dc_loc_pure_1.f908 TYPE(C_PTR) :: px local in subroutine:F
9 px = C_LOC(x)
H A Dpointer_init_8.f9017 class(c), pointer :: px => x
20 if (.not. associated(px, x)) call abort()
21 if (.not. same_type_as(px, x)) call abort()
H A Dmove_alloc_8.f9046 subroutine test2 (x, px)
58 type(t2), pointer, intent(in) :: px local in subroutine:test2
63 call move_alloc (px, ta) ! { dg-error "cannot be INTENT.IN." }
66 call move_alloc (px%a, a) ! OK (4)
67 call move_alloc (px%ptr%a, a) ! OK (5)
70 subroutine test3 (x, px)
82 class(t2), pointer, intent(in) :: px
87 call move_alloc (px, ta) ! { dg-error "cannot be INTENT.IN." }
90 call move_alloc (px%a, a) ! OK (7)
91 call move_alloc (px
[all...]
/haiku-buildtools/gcc/libstdc++-v3/testsuite/20_util/shared_ptr/cons/
H A D43820_neg.cc33 X* px = 0; local
34 std::shared_ptr<X> p1(px); // { dg-error "here" }
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.bob/
H A Ddelete1.C16 X (*px) [10];
18 px = new X[5][10];
20 delete [] px;
/haiku-buildtools/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dauto_ptr.C7 X* px; member in struct:auto_ptr
11 explicit auto_ptr(X* p =0) throw() : px(p) {}
12 auto_ptr(auto_ptr& r) throw() : px(r.release()) {} // { dg-message "note" } candidate
14 auto_ptr(auto_ptr<Y>& r) throw() : px(r.release()) {}
25 ~auto_ptr() { delete px; }
27 X& operator*() const throw() { return *px; }
28 X* operator->() const throw() { return px; }
29 X* get() const throw() { return px; }
30 X* release() throw() { X* p=px; px
[all...]
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/cpp0x/
H A Dalias-decl-14.C9 struct X<int>* px; // { dg-error "using\[^\n\r\]*alias\[^\n\r\]*specialization\[^\n\r\]*X<int>\[^\n\r\]*after\[^\n\r\]*struct|invalid type in declaration before\[^\n\r\]*;" } variable in typeref:struct:X
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/torture/
H A Dpr55789.C8 delete px;
10 T *px; member in struct:intrusive_ptr
H A Dpr51737.C4 ~intrusive_ptr() { intrusive_ptr_release( px ); }
5 T * px; member in class:intrusive_ptr
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/vect/
H A Dnodump-forwprop-22.c7 void f (vec *px, vec *y, vec *z) argument
9 vec x = *px;
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/2_general_utilities/shared_ptr/cons/
H A D43820_neg.cc31 X* px = 0; local
32 std::tr1::shared_ptr<X> p1(px); // { dg-error "here" }
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/interface/private.dir/
H A Dprog.go25 var px p.Exported
26 px = p.X
28 px.private() // ERROR "private"
30 px = new(Implementation) // ERROR "private"
32 x = px // ERROR "private"
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dpr32293.c18 UINT128 * pcoefficient_x, UINT128 * px) {
21 *psign_x = (px->w[1]) & 0x8000000000000000ull;
22 ex = (px->w[1]) >> 49;
48 UINT128 *px; local
53 px = &x;
54 if (!unpack_BID128 (&sign_x, &exponent_x, &CX, px)) {
17 unpack_BID128(UINT64 * psign_x, int *pexponent_x, UINT128 * pcoefficient_x, UINT128 * px) argument
/haiku-buildtools/gcc/libgcc/config/libbid/
H A Dbid_functions.h347 extern void bid_to_dpd32 (UINT32 * pres, UINT32 * px);
348 extern void bid_to_dpd64 (UINT64 * pres, UINT64 * px);
349 extern void bid_to_dpd128 (UINT128 * pres, UINT128 * px);
350 extern void dpd_to_bid32 (UINT32 * pres, UINT32 * px);
351 extern void dpd_to_bid64 (UINT64 * pres, UINT64 * px);
352 extern void dpd_to_bid128 (UINT128 * pres, UINT128 * px);
354 extern void bid128dd_add (UINT128 * pres, UINT64 * px,
358 extern void bid128dq_add (UINT128 * pres, UINT64 * px,
362 extern void bid128qd_add (UINT128 * pres, UINT128 * px,
366 extern void bid128_add (UINT128 * pres, UINT128 * px,
[all...]
H A Dbid_from_int.c33 int *px _EXC_MASKS_PARAM _EXC_INFO_PARAM) {
34 int x = *px;
56 bid64_from_uint32 (UINT64 * pres, unsigned int *px
58 unsigned int x = *px;
71 bid64_from_int64 (UINT64 * pres, SINT64 * px
74 SINT64 x = *px;
176 bid64_from_uint64 (UINT64 * pres, UINT64 * px
179 UINT64 x = *px;
276 int *px _EXC_MASKS_PARAM _EXC_INFO_PARAM) {
277 int x = *px;
[all...]
H A Dbid64_noncomp.c58 bid64_isSigned (int *pres, UINT64 * px _EXC_MASKS_PARAM _EXC_INFO_PARAM) {
59 UINT64 x = *px;
73 bid64_isNormal (int *pres, UINT64 * px _EXC_MASKS_PARAM _EXC_INFO_PARAM) {
74 UINT64 x = *px;
125 UINT64 * px _EXC_MASKS_PARAM _EXC_INFO_PARAM) {
126 UINT64 x = *px;
176 bid64_isFinite (int *pres, UINT64 * px _EXC_MASKS_PARAM _EXC_INFO_PARAM) {
177 UINT64 x = *px;
190 bid64_isZero (int *pres, UINT64 * px _EXC_MASKS_PARAM _EXC_INFO_PARAM) {
191 UINT64 x = *px;
342 bid64_copySign(UINT64 * pres, UINT64 * px, UINT64 * py _EXC_MASKS_PARAM _EXC_INFO_PARAM) argument
433 bid64_sameQuantum(int *pres, UINT64 * px, UINT64 * py _EXC_MASKS_PARAM _EXC_INFO_PARAM) argument
471 bid64_totalOrder(int *pres, UINT64 * px, UINT64 * py _EXC_MASKS_PARAM _EXC_INFO_PARAM) argument
740 bid64_totalOrderMag(int *pres, UINT64 * px, UINT64 * py _EXC_MASKS_PARAM _EXC_INFO_PARAM) argument
[all...]
H A Dbid64_logb.c32 bid64_logb (int * pres, UINT64 * px
45 x = *px;
/haiku-buildtools/gcc/libquadmath/math/
H A Dexpm1q.c94 __float128 px, qx, xx; local
140 px = floorq (0.5 + x / xx);
141 k = px;
143 x -= px * C1;
144 x -= px * C2;
147 px = (((((((P7 * x
156 qx = x + (0.5 * xx + xx * px / qx);
164 px = ldexpq (1.0Q, k);
165 x = px * qx + (px
[all...]
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/bug324.dir/
H A Dprog.go27 var px p.Exported
28 px = p.X
31 // px.private undefined (cannot refer to unexported field or method private)
32 // px.private()
36 // px = new(Implementation)
40 // x = px
46 x = px.(Exported)
/haiku-buildtools/gcc/gcc/testsuite/g++.dg/tree-ssa/
H A Dpr17400.C50 B px (p1);
52 px.swap (px2);
/haiku-buildtools/gcc/gcc/testsuite/gfortran.dg/vect/
H A Dvect-8.f9087 COMMON/space2/p(4,512),px(25,101),cx(25,101),vy(101,25),vh(101,7), & local in subroutine:kernel
273 px(1,:n)= dm28*px(13,:n)+px(3,:n)+dm27*px(12,:n)+dm26*px(11,:n)+dm25*px(10 &
274 ,:n)+dm24*px(9,:n)+dm23*px(8,:n)+dm22*px(
[all...]
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dpr57488.c6 int x, *px = &x; variable
20 *px = **ppu = i;
/haiku-buildtools/gcc/mpfr/src/
H A Dprint_raw.c45 mpfr_prec_t px; local
49 px = MPFR_PREC (x);
52 for (n = (px - 1) / GMP_NUMB_BITS; ; n--)
61 if (--px == 0)
/haiku-buildtools/gcc/gcc/testsuite/go.test/test/fixedbugs/
H A Dissue4313.go24 func makec(px *int) chan bool {
26 *px = 42

Completed in 298 milliseconds

1234