HomeSort by relevance Sort by last modified time
    Searched defs:poly (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/v8/test/mjsunit/regress/
regress-deep-proto.js 28 function poly(x) { function
42 poly(one);
43 poly(two);
44 poly(three);
  /external/dropbear/libtomcrypt/src/encauth/ocb/
ocb_init.c 50 int poly, x, y, m, err; local
63 for (poly = 0; poly < (int)(sizeof(polys)/sizeof(polys[0])); poly++) {
64 if (polys[poly].len == ocb->block_len) {
68 if (polys[poly].len != ocb->block_len) {
102 ocb->Ls[x][y] ^= polys[poly].poly_mul[y];
118 ocb->Lr[x] ^= polys[poly].poly_div[x];
  /packages/apps/Gallery2/jni/filters/
shadows.c 36 double *poly = (double *) malloc(5*sizeof(double)); local
38 poly[i] = fastevalPoly(shadowFilterMap+i*2,2 , s);
47 double v = (fastevalPoly(poly,5,hsv[0]/4080.)*4080);
54 free(poly);
  /external/clang/test/SemaCXX/
dynamic-cast.cpp 13 struct Poly
18 struct PolyDerived : Poly
66 void poly() function
68 (void)dynamic_cast<A*>((Poly*)0);
69 (void)dynamic_cast<A&>(*((Poly*)0));
74 (void)dynamic_cast<Poly*>((A*)0); // expected-error {{'A' is not polymorphic}}
  /external/dropbear/libtomcrypt/src/mac/pmac/
pmac_init.c 48 int poly, x, y, m, err; local
61 for (poly = 0; poly < (int)(sizeof(polys)/sizeof(polys[0])); poly++) {
62 if (polys[poly].len == pmac->block_len) {
66 if (polys[poly].len != pmac->block_len) {
105 pmac->Ls[x][y] ^= polys[poly].poly_mul[y];
121 pmac->Lr[x] ^= polys[poly].poly_div[x];
  /external/ceres-solver/internal/ceres/
polynomial_test.cc 51 Vector poly(1);
52 poly(0) = value;
53 return poly;
56 // Return the polynomial p(x) = poly(x) * (x - root).
57 Vector AddRealRoot(const Vector& poly, double root) {
58 Vector poly2(poly.size() + 1);
60 poly2.head(poly.size()) += poly;
61 poly2.tail(poly.size()) -= root * poly;
96 Vector poly = ConstantPolynomial(1.23); local
130 Vector poly = ConstantPolynomial(1.23); local
174 Vector poly = ConstantPolynomial(1.23); local
    [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];
  /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/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/zlib/src/
crc32.c 94 z_crc_t poly; /* polynomial exclusive-or pattern */ local
106 poly = 0;
108 poly |= (z_crc_t)1 << (31 - p[n]);
114 c = c & 1 ? poly ^ (c >> 1) : c >> 1;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11u.h 42 void poly(unsigned a, unsigned b, unsigned c) function in struct:triangle_list_indices
49 void poly(unsigned a, unsigned b, unsigned c, unsigned d) function in struct:triangle_list_indices
51 poly(a, b, c);
52 poly(a, c, d);
55 void poly(unsigned a, unsigned b, unsigned c, unsigned d, unsigned e) function in struct:triangle_list_indices
57 poly(a, b, c, d);
58 poly(a, d, e);
61 void poly(unsigned a, unsigned b, unsigned c, unsigned d, unsigned e, unsigned f) function in struct:triangle_list_indices
63 poly(a, b, c, d, e);
64 poly(a, e, f)
67 void poly(unsigned a, unsigned b, unsigned c, unsigned d, unsigned e, unsigned f, unsigned g) function in struct:triangle_list_indices
73 void poly(unsigned a, unsigned b, unsigned c, unsigned d, unsigned e, unsigned f, unsigned g, unsigned h) function in struct:triangle_list_indices
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
polygon.c 70 static void polygon_print(struct polygon *poly)
74 debug_printf("Polygon %p, size = %d\n", poly, poly->num_verts);
75 for (i = 0; i < poly->num_verts; ++i) {
76 vert = ptr_to_vertex(poly->data, i);
86 struct polygon *poly = (struct polygon*)malloc(sizeof(struct polygon)); local
88 poly->data = malloc(sizeof(float) * COMPONENTS * size);
89 poly->size = size;
90 poly->num_verts = 0;
91 poly->dirty = VG_TRUE
99 struct polygon *poly = polygon_create(size); local
337 struct polygon *poly = (((struct polygon**)polys->data)[i]); local
    [all...]
bezier.c 94 struct polygon *poly = polygon_create(64); local
95 polygon_vertex_append(poly, bez->x1, bez->y1);
96 bezier_add_to_polygon(bez, poly);
97 return poly;
101 struct polygon *poly)
124 polygon_vertex_append(poly, b->x4, b->y4);
136 struct bezier left, right; /* bez poly splits */
700 struct polygon *poly = polygon_create(64); local
701 polygon_vertex_append(poly, bez->x1, bez->y1);
702 bezier_add_to_polygon(bez, poly);
    [all...]
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/clang/test/Sema/
flexible-array-init.c 47 struct polygon poly = { variable in typeref:struct:polygon
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
d3d11u.h 42 void poly(unsigned a, unsigned b, unsigned c) function in struct:triangle_list_indices
49 void poly(unsigned a, unsigned b, unsigned c, unsigned d) function in struct:triangle_list_indices
51 poly(a, b, c);
52 poly(a, c, d);
55 void poly(unsigned a, unsigned b, unsigned c, unsigned d, unsigned e) function in struct:triangle_list_indices
57 poly(a, b, c, d);
58 poly(a, d, e);
61 void poly(unsigned a, unsigned b, unsigned c, unsigned d, unsigned e, unsigned f) function in struct:triangle_list_indices
63 poly(a, b, c, d, e);
64 poly(a, e, f)
67 void poly(unsigned a, unsigned b, unsigned c, unsigned d, unsigned e, unsigned f, unsigned g) function in struct:triangle_list_indices
73 void poly(unsigned a, unsigned b, unsigned c, unsigned d, unsigned e, unsigned f, unsigned g, unsigned h) function in struct:triangle_list_indices
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
polygon.c 70 static void polygon_print(struct polygon *poly)
74 debug_printf("Polygon %p, size = %d\n", poly, poly->num_verts);
75 for (i = 0; i < poly->num_verts; ++i) {
76 vert = ptr_to_vertex(poly->data, i);
86 struct polygon *poly = (struct polygon*)malloc(sizeof(struct polygon)); local
88 poly->data = malloc(sizeof(float) * COMPONENTS * size);
89 poly->size = size;
90 poly->num_verts = 0;
91 poly->dirty = VG_TRUE
99 struct polygon *poly = polygon_create(size); local
337 struct polygon *poly = (((struct polygon**)polys->data)[i]); local
    [all...]
bezier.c 94 struct polygon *poly = polygon_create(64); local
95 polygon_vertex_append(poly, bez->x1, bez->y1);
96 bezier_add_to_polygon(bez, poly);
97 return poly;
101 struct polygon *poly)
124 polygon_vertex_append(poly, b->x4, b->y4);
136 struct bezier left, right; /* bez poly splits */
700 struct polygon *poly = polygon_create(64); local
701 polygon_vertex_append(poly, bez->x1, bez->y1);
702 bezier_add_to_polygon(bez, poly);
    [all...]
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/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.
  /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.
  /frameworks/av/media/libstagefright/
MPEG2TSWriter.cpp 997 uint32_t poly = 0x04C11DB7; local
1002 crc = (crc << 1) ^ ((crc & 0x80000000) ? (poly) : 0);
  /frameworks/av/media/libstagefright/wifi-display/source/
TSPacketizer.cpp 1015 uint32_t poly = 0x04C11DB7; local
1020 crc = (crc << 1) ^ ((crc & 0x80000000) ? (poly) : 0);
  /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/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...]

Completed in 717 milliseconds

1 2