/external/clang/utils/TableGen/ |
NeonEmitter.cpp | 100 ClassS, // signed/unsigned/poly, e.g., "s8", "u8" or "p8" suffix 324 static char ClassifyType(StringRef ty, bool &quad, bool &poly, bool &usgn) { 333 // remember poly. 335 poly = true; 351 static char ModType(const char mod, char type, bool &quad, bool &poly, 355 if (poly) { 356 poly = false; 362 poly = false; 370 poly = false; 431 bool poly = false local 526 bool poly = false; local 621 bool poly = false; local 1546 bool poly = false; local 1855 bool dummy, quad = false, poly = false; local 1886 bool dummy, quad = false, poly = false; local 2224 bool quad = false, poly = false, usgn = false; local [all...] |
/external/chromium_org/third_party/openssl/openssl/crypto/ec/ |
ec_lcl.h | 213 int poly[6]; /* Field specification for curves over GF(2^m). member in struct:ec_group_st 215 * t^poly[0] + t^poly[1] + ... + t^poly[k] 216 * where m = poly[0] > poly[1] > ... > poly[k] = 0. 217 * The array is terminated with poly[k+1]=-1.
|
ec2_oct.c | 117 if (!BN_GF2m_mod_arr(x, x_, group->poly)) goto err; 120 if (!BN_GF2m_mod_sqrt_arr(y, &group->b, group->poly, ctx)) goto err; 128 if (!BN_GF2m_mod_solve_quad_arr(z, tmp, group->poly, ctx))
|
/external/openssl/crypto/ec/ |
ec_lcl.h | 213 int poly[6]; /* Field specification for curves over GF(2^m). member in struct:ec_group_st 215 * t^poly[0] + t^poly[1] + ... + t^poly[k] 216 * where m = poly[0] > poly[1] > ... > poly[k] = 0. 217 * The array is terminated with poly[k+1]=-1.
|
ec2_oct.c | 117 if (!BN_GF2m_mod_arr(x, x_, group->poly)) goto err; 120 if (!BN_GF2m_mod_sqrt_arr(y, &group->b, group->poly, ctx)) goto err; 128 if (!BN_GF2m_mod_solve_quad_arr(z, tmp, group->poly, ctx))
|
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/jni/ |
jni_stochastic_linear_ranker.h | 53 /* Three differnt kernels are supported: Linear "LINEAR", Polynomial "POLY", and RBF "RBF" 103 const char * KERNEL_TYPE_POLY = "POLY";
|
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_atanf.c | 84 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
|
s_atanl.c | 77 /* break sum aT[i]z**(i+1) into odd and even poly */
|
s_atan.c | 112 /* break sum from i=0 to 10 aT[i]z**(i+1) into odd and even poly */
|
/external/chromium_org/chrome/test/chromedriver/js/ |
get_element_region.js | 43 } else if (element.shape.toLowerCase() == 'poly') {
|
/external/clang/test/Sema/ |
flexible-array-init.c | 47 struct polygon poly = { variable in typeref:struct:polygon
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
arc.c | 464 struct polygon *poly = (struct polygon*)cb->user_data; local 465 polygon_vertex_append(poly, x, y); 470 struct polygon *poly = (struct polygon*)cb->user_data; local 471 bezier_add_to_polygon(bezier, poly); 656 struct polygon *poly, 664 cb.user_data = poly;
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
arc.c | 464 struct polygon *poly = (struct polygon*)cb->user_data; local 465 polygon_vertex_append(poly, x, y); 470 struct polygon *poly = (struct polygon*)cb->user_data; local 471 bezier_add_to_polygon(bezier, poly); 656 struct polygon *poly, 664 cb.user_data = poly;
|
/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 */
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/ |
svga_pipe_rasterizer.c | 100 rast->need_pipeline_tris_str = "poly stipple";
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11gears/ |
d3d11gears.cpp | 154 indices.poly(teeth * segs + k, j, teeth * segs + nextk); 157 indices.poly(teeth * segs + nextj * divs, j, nextj); 197 indices.poly(0, 1, 3, 2); 215 indices.poly(i * 2, i * 2 + 1, next * 2 + 1, next * 2);
|
/external/chromium_org/third_party/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/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 */
|
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
povray.php | 103 'texture_list', 'face_indices', 'normal_indices', 'uv_indices', 'texture', 'polygon', 'plane', 'poly',
|
/external/mesa3d/src/gallium/drivers/svga/ |
svga_pipe_rasterizer.c | 100 rast->need_pipeline_tris_str = "poly stipple";
|
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/ |
d3d11gears.cpp | 154 indices.poly(teeth * segs + k, j, teeth * segs + nextk); 157 indices.poly(teeth * segs + nextj * divs, j, nextj); 197 indices.poly(0, 1, 3, 2); 215 indices.poly(i * 2, i * 2 + 1, next * 2 + 1, next * 2);
|
/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;
|