Searched defs:poly (Results 1 - 18 of 18) sorted by relevance

/external/clang/test/SemaCXX/
H A Ddynamic-cast.cpp64 void poly() function
/external/dropbear/libtomcrypt/src/encauth/ocb/
H A Docb_init.c50 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];
/external/dropbear/libtomcrypt/src/mac/pmac/
H A Dpmac_init.c48 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/dropbear/libtomcrypt/src/encauth/gcm/
H A Dgcm_gf_mult.c74 static const unsigned char poly[] = { 0x00, 0xE1 }; variable
98 V[0] ^= poly[z];
/external/qemu/distrib/zlib-1.2.3/
H A Dcrc32.c110 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/srtp/test/
H A Dlfsr.c120 weight(uint32_t poly) { argument
124 wt += octet_weight[poly & 0xff];
125 wt += octet_weight[(poly >> 8) & 0xff];
126 wt += octet_weight[(poly >> 16) & 0xff];
127 wt += octet_weight[(poly >> 24)];
137 period(uint32_t poly) { argument
149 x = (x >> 1) ^ poly;
167 * code generated by the polynomial poly
176 weight_distribution2(uint32_t poly, int *A) { argument
194 x = (x >> 1) ^ poly;
217 weight_distribution(uint32_t poly, int *A) argument
[all...]
/external/zlib/src/
H A Dcrc32.c94 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/clang/test/Sema/
H A Dflexible-array-init.c47 struct polygon poly = { variable in typeref:struct:polygon
/external/openssl/crypto/ec/
H A Dec_lcl.h213 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/quake/quake/src/QW/client/
H A Dgl_rsurf.c322 // normal lightmaped poly
428 // normal lightmaped poly
816 // add the poly to the proper lightmap chain
1491 glpoly_t *poly; local
1501 poly = Hunk_Alloc (sizeof(glpoly_t) + (lnumverts-4) * VERTEXSIZE*sizeof(float));
1502 poly->next = fa->polys;
1503 poly->flags = fa->flags;
1504 fa->polys = poly;
1505 poly->numverts = lnumverts;
1527 VectorCopy (vec, poly
[all...]
H A Dgl_warp.c64 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/
H A Dgl_rsurf.cpp323 // normal lightmaped poly
424 // normal lightmaped poly
884 // add the poly to the proper lightmap chain
1565 glpoly_t *poly; local
1575 poly = (glpoly_t*) Hunk_Alloc (sizeof(glpoly_t) + (lnumverts-4) * VERTEXSIZE*sizeof(float));
1576 poly->next = fa->polys;
1577 poly->flags = fa->flags;
1578 fa->polys = poly;
1579 poly->numverts = lnumverts;
1601 VectorCopy (vec, poly
[all...]
H A Dgl_warp.cpp64 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;
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DPlatformPathWinCE.cpp204 static void addArcPoint(PathPolygon& poly, const PathPoint& center, const PathPoint& radius, double angle) argument
209 if (poly.isEmpty() || poly.last() != p)
210 poly.append(p);
213 static void addArcPoints(PathPolygon& poly, const PlatformPathElement::ArcTo& data) argument
215 const PathPoint& startPoint = poly.last();
229 addArcPoint(poly, data.m_center, data.m_radius, curAngle);
231 if (poly.isEmpty() || poly.last() != data.m_end)
232 poly
[all...]
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp99 ClassS, // signed/unsigned/poly, e.g., "s8", "u8" or "p8" suffix
291 static char ClassifyType(StringRef ty, bool &quad, bool &poly, bool &usgn) { argument
300 // remember poly.
302 poly = true;
318 static char ModType(const char mod, char type, bool &quad, bool &poly, argument
322 if (poly) {
323 poly = false;
329 poly = false;
335 poly = false;
396 bool poly local
484 bool poly = false; local
582 bool poly = false; local
1019 bool poly = false; local
1313 bool dummy, quad = false, poly = false; local
1510 bool quad = false, poly = false, usgn = false; local
[all...]
/external/skia/src/core/
H A DSkMatrix.cpp1352 static inline bool poly_to_point(SkPoint* pt, const SkPoint poly[], int count) { argument
1358 pt1.fX = poly[1].fX - poly[0].fX;
1359 pt1.fY = poly[1].fY - poly[0].fY;
1368 pt2.fX = poly[0].fY - poly[2].fY;
1369 pt2.fY = poly[2].fX - poly[0].fX;
1372 pt2.fX = poly[
1491 poly_to_point(SkPoint* pt, const SkPoint poly[], int count) argument
[all...]
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-darwin.c4826 mach_msg_port_descriptor_t poly; member in struct:__anon13715
4837 name_for_port(req->name), req->poly.name, req->poly.disposition);
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 1018 milliseconds