/external/quake/quake/src/QW/client/ |
gl_warp.c | 64 glpoly_t *poly; local 123 poly = Hunk_Alloc (sizeof(glpoly_t) + (numverts-4) * VERTEXSIZE*sizeof(float)); 124 poly->next = warpface->polys; 125 warpface->polys = poly; 126 poly->numverts = numverts; 129 VectorCopy (verts, poly->verts[i]); 132 poly->verts[i][3] = s; 133 poly->verts[i][4] = t;
|
/external/quake/quake/src/WinQuake/ |
gl_warp.cpp | 64 glpoly_t *poly; local 123 poly = (glpoly_t*) Hunk_Alloc (sizeof(glpoly_t) + (numverts-4) * VERTEXSIZE*sizeof(float)); 124 poly->next = warpface->polys; 125 warpface->polys = poly; 126 poly->numverts = numverts; 129 VectorCopy (verts, poly->verts[i]); 132 poly->verts[i][3] = s; 133 poly->verts[i][4] = t;
|
/frameworks/base/core/jni/android/opengl/ |
util.cpp | 39 #include "poly.h" 75 print_poly(const char* label, Poly* pPoly) { 136 Poly poly; local 137 float* pDest = & poly.vert[0].sx; 139 poly.n = 3; 143 result = poly_clip_to_frustum(&poly);
|
/external/speex/libspeex/ |
lsp.c | 325 psuml = cheb_poly_eva(pt,xl,m,stack); /* evals poly. at xl */ 340 psumr = cheb_poly_eva(pt,xr,m,stack);/* poly(xl-delta_x) */ 344 /* if no sign change increment xr and re-evaluate poly(xr). Repeat til 349 If there is no sign change between poly(xm) and poly(xl) set interval
|
/external/flac/libFLAC/ |
crc.c | 38 /* CRC-8, poly = x^8 + x^2 + x^1 + x^0, init = 0 */ 75 /* CRC-16, poly = x^16 + x^15 + x^2 + x^0, init = 0 */
|
/bionic/libm/src/ |
s_atan.c | 111 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
|
s_atanf.c | 91 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
|
e_lgamma_r.c | 36 * lgamma(x) = -1.214862905358496078218 + z^2*poly(z) 38 * poly(z) is a 14 degree polynomial.
|
e_powf.c | 33 /* poly coefs for (3/2)*(log(x)-2s-2/3*s**3 */
|
/external/e2fsprogs/lib/ext2fs/ |
crc16.c | 15 /** CRC table for the CRC-16. The poly is 0x8005 (x16 + x15 + x2 + 1) */
|
/external/fdlibm/ |
s_atan.c | 126 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
|
e_lgamma_r.c | 32 * lgamma(x) = -1.214862905358496078218 + z^2*poly(z) 34 * poly(z) is a 14 degree polynomial.
|
/external/libvpx/examples/includes/geshi/geshi/ |
povray.php | 103 'texture_list', 'face_indices', 'normal_indices', 'uv_indices', 'texture', 'polygon', 'plane', 'poly',
|
delphi.php | 192 'Poly', 'PopnStdDev', 'PopnVariance', 'Power', 'PresentValue',
|
matlab.php | 119 'polar','poly','polyarea','polyder','polyeig','polyfit','polyval',
|
/external/llvm/utils/TableGen/ |
NeonEmitter.h | 84 ClassS, // signed/unsigned/poly, e.g., "s8", "u8" or "p8" suffix
|
/external/qemu/distrib/zlib-1.2.3/ |
crc32.c | 110 unsigned long poly; /* polynomial exclusive-or pattern */ local 122 poly = 0UL; 124 poly |= 1UL << (31 - p[n]); 130 c = c & 1 ? poly ^ (c >> 1) : c >> 1;
|
/external/valgrind/main/auxprogs/ |
gsl16test | 63 TESTS7="poly/test qrng/test randist/test rng/test roots/test siman/test"
|
gsl19test | 65 TESTS7="poly/test qrng/test randist/test rng/test roots/test siman/test"
|
/external/zlib/ |
crc32.c | 112 unsigned long poly; /* polynomial exclusive-or pattern */ local 124 poly = 0UL; 126 poly |= 1UL << (31 - p[n]); 132 c = c & 1 ? poly ^ (c >> 1) : c >> 1;
|
/external/opencv/ml/src/ |
mlsvm.cpp | 223 params->kernel_type == CvSVM::POLY ? &CvSVMKernel::calc_poly : [all...] |
/external/dropbear/libtomcrypt/src/encauth/gcm/ |
gcm_gf_mult.c | 74 static const unsigned char poly[] = { 0x00, 0xE1 }; variable 98 V[0] ^= poly[z];
|
/frameworks/base/tools/orientationplot/ |
orientationplot.py | 341 for poly in self.proposal_confidence_polys: 342 poly.remove()
|
/external/skia/samplecode/ |
SampleHairline.cpp | 174 { "poly", poly_proc },
|
/external/opencv/ml/include/ |
ml.h | 329 double degree; // for poly 330 double gamma; // for poly/rbf/sigmoid 331 double coef0; // for poly/sigmoid 489 enum { LINEAR=0, POLY=1, RBF=2, SIGMOID=3 }; [all...] |