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

123456

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/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...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/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...]
/netbsd-6-1-5-RELEASE/crypto/external/bsd/libsaslc/dist/
H A Dstyle.css5 margin-top: 40px;
12 border-width: 1px;
14 padding: 15px;
19 margin-bottom: 20px;
27 margin-top: 0px;
28 margin-bottom: 10px;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.old-deja/g++.bob/
H A Ddelete1.C16 X (*px) [10];
18 px = new X[5][10];
20 delete [] px;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.old-deja/g++.bob/
H A Ddelete1.C16 X (*px) [10];
18 px = new X[5][10];
20 delete [] px;
/netbsd-6-1-5-RELEASE/dist/bzip2/
H A Dbzip.css27 height: 3px;
39 margin: 0px 4px 16px 16px;
40 padding: 0px;
44 margin-bottom: 10px;
49 margin-left: 0px;
54 border: solid 1px #3366cc;
71 border: 1px soli
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/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()) {}// { dg-message "note" } candidate
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...]
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/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-error "" } candidate
14 auto_ptr(auto_ptr<Y>& r) throw() : px(r.release()) {}// { dg-error "" } candidate
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...]
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/
H A Dmin_prec.c29 mpfr_prec_t px, res; local
37 px = MPFR_PREC (x);
56 i = px % GMP_NUMB_BITS;
60 return px - res;
/netbsd-6-1-5-RELEASE/external/bsd/tmux/dist/
H A Dgrid-view.c35 grid_view_peek_cell(struct grid *gd, u_int px, u_int py) argument
37 return (grid_peek_cell(gd, grid_view_x(gd, px), grid_view_y(gd, py)));
42 grid_view_get_cell(struct grid *gd, u_int px, u_int py) argument
44 return (grid_get_cell(gd, grid_view_x(gd, px), grid_view_y(gd, py)));
50 struct grid *gd, u_int px, u_int py, const struct grid_cell *gc)
52 grid_set_cell(gd, grid_view_x(gd, px), grid_view_y(gd, py), gc);
57 grid_view_peek_utf8(struct grid *gd, u_int px, u_int py) argument
59 return (grid_peek_utf8(gd, grid_view_x(gd, px), grid_view_y(gd, py)));
64 grid_view_get_utf8(struct grid *gd, u_int px, u_int py) argument
66 return (grid_get_utf8(gd, grid_view_x(gd, px), grid_view_
49 grid_view_set_cell( struct grid *gd, u_int px, u_int py, const struct grid_cell *gc) argument
71 grid_view_set_utf8( struct grid *gd, u_int px, u_int py, const struct grid_utf8 *gu) argument
103 grid_view_clear(struct grid *gd, u_int px, u_int py, u_int nx, u_int ny) argument
214 grid_view_insert_cells(struct grid *gd, u_int px, u_int py, u_int nx) argument
233 grid_view_delete_cells(struct grid *gd, u_int px, u_int py, u_int nx) argument
250 grid_view_string_cells(struct grid *gd, u_int px, u_int py, u_int nx) argument
[all...]
H A Dscreen-redraw.c48 screen_redraw_cell_border1(struct window_pane *wp, u_int px, u_int py) argument
51 if (px >= wp->xoff && px < wp->xoff + wp->sx &&
57 if (wp->xoff != 0 && px == wp->xoff - 1)
59 if (px == wp->xoff + wp->sx)
64 if ((wp->xoff == 0 || px >= wp->xoff - 1) && px <= wp->xoff + wp->sx) {
77 screen_redraw_cell_border(struct client *c, u_int px, u_int py) argument
87 if ((retval = screen_redraw_cell_border1(wp, px, py)) != -1)
96 screen_redraw_check_cell(struct client *c, u_int px, u_in argument
270 u_int idx, px, py, i, j, xoff, yoff; local
[all...]
H A Dgrid.c40 #define grid_put_cell(gd, px, py, gc) do { \
41 memcpy(&gd->linedata[py].celldata[px], \
42 gc, sizeof gd->linedata[py].celldata[px]); \
44 #define grid_put_utf8(gd, px, py, gc) do { \
45 memcpy(&gd->linedata[py].utf8data[px], \
46 gc, sizeof gd->linedata[py].utf8data[px]); \
252 grid_peek_cell(struct grid *gd, u_int px, u_int py) argument
257 if (px >= gd->linedata[py].cellsize)
259 return (&gd->linedata[py].celldata[px]);
264 grid_get_cell(struct grid *gd, u_int px, u_in argument
275 grid_set_cell( struct grid *gd, u_int px, u_int py, const struct grid_cell *gc) argument
287 grid_peek_utf8(struct grid *gd, u_int px, u_int py) argument
299 grid_get_utf8(struct grid *gd, u_int px, u_int py) argument
310 grid_set_utf8( struct grid *gd, u_int px, u_int py, const struct grid_utf8 *gc) argument
322 grid_clear(struct grid *gd, u_int px, u_int py, u_int nx, u_int ny) argument
423 grid_move_cells(struct grid *gd, u_int dx, u_int px, u_int py, u_int nx) argument
459 grid_string_cells(struct grid *gd, u_int px, u_int py, u_int nx) argument
[all...]
/netbsd-6-1-5-RELEASE/lib/libutil/compat/
H A Dcompat_gepwconf.c60 struct passwd px; local
61 passwd50_to_passwd(p, &px);
62 __pw_getpwconf50(buf, len, &px, opt);
H A Dcompat_passwd.c69 struct passwd px; local
70 int rv = __pw_scan50(buf, &px, flags);
71 passwd_to_passwd50(&px, p);
100 struct passwd px; local
101 passwd50_to_passwd(p, &px);
102 __pw_getpwconf50(buf, len, &px, opt);
/netbsd-6-1-5-RELEASE/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_mp_and.c24 int res, ix, px; local
31 px = b->used;
37 px = a->used;
41 for (ix = 0; ix < px; ix++) {
H A Dbn_mp_or.c23 int res, ix, px; local
30 px = b->used;
36 px = a->used;
40 for (ix = 0; ix < px; ix++) {
H A Dbn_mp_xor.c24 int res, ix, px; local
31 px = b->used;
37 px = a->used;
41 for (ix = 0; ix < px; ix++) {
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/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
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/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...]
/netbsd-6-1-5-RELEASE/lib/libm/noieee_src/
H A Dn_support.c93 unsigned short *px=(unsigned short *) &x + 3; local
95 unsigned short *px=(unsigned short *) &x; local
101 if( (k= *px & mexp ) != ~msign ) {
108 if( (k= *px & mexp ) != mexp ) {
115 if( k < (mexp>>gap) ) *px = (*px&~mexp) | (k<<gap);
120 {*px=(*px&~mexp)|(short)(1<<gap); x *= scalb(1.0,k-1);}
132 unsigned short *px=(unsigned short *) &x+3, local
135 unsigned short *px
152 short *px=(short *) &x+3, k; local
196 *px=(unsigned short *) &x +3, local
202 *px=(unsigned short *) &x , local
[all...]
H A Dn_cbrt.c69 unsigned long *px = (unsigned long *) &x, local
79 mexp=px[n0]&0x7ff00000;
83 sign=px[n0]&0x80000000; /* sign= sign(x) */
84 px[n0] ^= sign; /* x=|x| */
93 pt[n0]=px[n0]/3+B1;
/netbsd-6-1-5-RELEASE/external/bsd/bind/dist/lib/dns/rdata/in_1/
H A Dpx_26.c233 dns_rdata_in_px_t *px = source; local
239 REQUIRE(px->common.rdtype == type);
240 REQUIRE(px->common.rdclass == rdclass);
245 RETERR(uint16_tobuffer(px->preference, target));
246 dns_name_toregion(&px->map822, &region);
248 dns_name_toregion(&px->mapx400, &region);
254 dns_rdata_in_px_t *px = target; local
264 px->common.rdclass = rdata->rdclass;
265 px->common.rdtype = rdata->type;
266 ISC_LINK_INIT(&px
295 dns_rdata_in_px_t *px = source; local
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/compat/gen/
H A Dcompat_getpwent.c114 struct passwd px, *qx; local
115 int rv = __getpwnam_r50(name, &px, buf, len, &qx);
117 passwd_to_passwd50(&px, p);
125 struct passwd px, *qx; local
126 int rv = __getpwuid_r50(uid, &px, buf, len, &qx);
128 passwd_to_passwd50(&px, p);
142 struct passwd px; local
143 int rv = __pw_scan50(buf, &px, flags);
144 passwd_to_passwd50(&px, p);
152 struct passwd px, *q local
[all...]

Completed in 290 milliseconds

123456