Searched defs:tx (Results 1 - 25 of 103) sorted by relevance

12345

/external/kernel-headers/original/uapi/linux/
H A Datm_eni.h14 int tx,rx; /* values are in percent and must be > 100 */ member in struct:eni_multipliers
/external/cblas/src/
H A Dcblas_chpr.c30 float *x=(float *)X, *xx=(float *)X, *tx, *st; local
73 tx = x;
92 x=tx;
H A Dcblas_zhpr.c30 double *x=(double *)X, *xx=(double *)X, *tx, *st; local
73 tx = x;
92 x=tx;
H A Dcblas_cher.c31 float *x=(float *)X, *xx=(float *)X, *tx, *st; local
74 tx = x;
93 x=tx;
H A Dcblas_zher.c31 double *x=(double *)X, *xx=(double *)X, *tx, *st; local
74 tx = x;
93 x=tx;
H A Dcblas_cgbmv.c41 float *x=(float *)X, *y=(float *)Y, *st=0, *tx=0; local
81 tx = x;
101 x=tx;
H A Dcblas_cgemv.c38 float *x=(float *)X, *y=(float *)Y, *st=0, *tx=0; local
81 tx = x;
101 x=tx;
H A Dcblas_chbmv.c37 float *x=(float *)X, *y=(float *)Y, *st=0, *tx; local
73 tx = x;
93 x=tx;
H A Dcblas_chemv.c36 float *x=(float *)X, *y=(float *)Y, *st=0, *tx; local
73 tx = x;
93 x=tx;
H A Dcblas_cher2.c33 *yy=(float *)Y, *tx, *ty, *stx, *sty; local
78 tx = x;
120 x=tx;
H A Dcblas_chpmv.c35 float *x=(float *)X, *y=(float *)Y, *st=0, *tx; local
71 tx = x;
91 x=tx;
H A Dcblas_chpr2.c33 *yy=(float *)Y, *tx, *ty, *stx, *sty; local
77 tx = x;
118 x=tx;
H A Dcblas_zgbmv.c41 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local
81 tx = x;
101 x=tx;
H A Dcblas_zgemv.c38 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local
80 tx = x;
100 x=tx;
H A Dcblas_zhbmv.c37 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local
73 tx = x;
93 x=tx;
H A Dcblas_zhemv.c36 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local
73 tx = x;
93 x=tx;
H A Dcblas_zher2.c33 *yy=(double *)Y, *tx, *ty, *stx, *sty; local
78 tx = x;
120 x=tx;
H A Dcblas_zhpmv.c35 double *x=(double *)X, *y=(double *)Y, *st=0, *tx; local
71 tx = x;
91 x=tx;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_staging.c58 boolean direct, struct util_staging_transfer *tx)
64 pipe_resource_reference(&tx->base.resource, pt);
65 tx->base.level = level;
66 tx->base.usage = usage;
67 tx->base.box = *box;
71 tx->staging_resource = pt;
72 return tx;
76 tx->staging_resource = pscreen->resource_create(pscreen, &staging_resource_template);
77 if (!tx->staging_resource)
79 pipe_resource_reference(&tx
53 util_staging_transfer_init(struct pipe_context *pipe, struct pipe_resource *pt, unsigned level, unsigned usage, const struct pipe_box *box, boolean direct, struct util_staging_transfer *tx) argument
108 struct util_staging_transfer *tx = (struct util_staging_transfer *)ptx; local
[all...]
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dapi_transform.c103 void vegaTranslate(VGfloat tx, VGfloat ty) argument
107 matrix_translate(dst, tx, ty);
/external/skia/src/gpu/
H A DGrPathUtils.h82 float tx = fM[2]; local
89 uv->fX = sx * xy->fX + kx * xy->fY + tx;
/external/boringssl/src/crypto/rc4/
H A Drc4.c80 uint32_t x, y, tx, ty; local
88 (x = (x + 1) & 0xff, tx = d[x], y = (tx + y) & 0xff, ty = d[y], d[y] = tx, \
89 d[x] = ty, (RC4_CHUNK)d[(tx + ty) & 0xff])
166 tx = d[x]; \
167 y = (tx + y) & 0xff; \
169 d[y] = tx; \
170 (out) = d[(tx + ty) & 0xff] ^ (in);
/external/fdlibm/
H A De_rem_pio2.c91 double tx[3]; local
166 tx[i] = (double)((int)(z));
167 z = (z-tx[i])*two24;
169 tx[2] = z;
171 while(tx[nx-1]==zero) nx--; /* skip zero term */
172 n = __kernel_rem_pio2(tx,y,e0,nx,2,two_over_pi);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_surface.c100 unsigned tx, ty, tw, th; local
104 &tx, &ty, &tw, &th);
111 tx + x, ty + y);
118 unsigned tx, ty, tw, th; local
122 adjust_to_tile_bounds(dstx, dsty, width, height, &tx, &ty, &tw, &th);
130 boolean contained_x = tx + x >= dstx &&
131 tx + x + TILE_SIZE <= dstx + width ?
146 tx + x, ty + y);
/external/mesa3d/src/mesa/math/
H A Dm_norm_tmp.h61 GLfloat tx, ty, tz; local
64 tx = ux * m0 + uy * m1 + uz * m2;
69 GLdouble len = tx*tx + ty*ty + tz*tz;
72 out[i][0] = tx * scale;
90 GLfloat tx, ty, tz; local
93 tx = ux * m0 + uy * m1 + uz * m2;
99 out[i][0] = tx * len;
128 GLfloat tx, ty, tz; local
131 tx
155 GLfloat tx, ty, tz; local
[all...]

Completed in 610 milliseconds

12345