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

  /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
64 void poly() function
66 (void)dynamic_cast<A*>((Poly*)0);
67 (void)dynamic_cast<A&>(*((Poly*)0));
72 (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_solver_test.cc 50 Vector poly(1);
51 poly(0) = value;
52 return poly;
55 // Return the polynomial p(x) = poly(x) * (x - root).
56 Vector AddRealRoot(const Vector& poly, double root) {
57 Vector poly2(poly.size() + 1);
59 poly2.head(poly.size()) += poly;
60 poly2.tail(poly.size()) -= root * poly;
95 Vector poly = ConstantPolynomial(1.23); local
129 Vector poly = ConstantPolynomial(1.23); local
173 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/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/clang/test/Sema/
flexible-array-init.c 47 struct polygon poly = { variable in typeref:struct:polygon
  /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 1003 uint32_t poly = 0x04C11DB7; local
1008 crc = (crc << 1) ^ ((crc & 0x80000000) ? (poly) : 0);
  /external/quake/quake/src/QW/client/
gl_rsurf.c 322 // 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->verts[i])
    [all...]
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_rsurf.cpp 323 // normal lightmaped poly
424 // normal lightmaped poly
884 // add the poly to the proper lightmap chain
1565 glpoly_t *poly; local
    [all...]
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/clang/utils/TableGen/
NeonEmitter.cpp 99 ClassS, // signed/unsigned/poly, e.g., "s8", "u8" or "p8" suffix
293 static char ClassifyType(StringRef ty, bool &quad, bool &poly, bool &usgn) {
302 // remember poly.
304 poly = true;
320 static char ModType(const char mod, char type, bool &quad, bool &poly,
324 if (poly) {
325 poly = false;
331 poly = false;
337 poly = false;
398 bool poly = false local
486 bool poly = false; local
584 bool poly = false; local
1021 bool poly = false; local
1315 bool dummy, quad = false, poly = false; local
1512 bool quad = false, poly = false, usgn = false; local
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
entropy_coding.c 686 double poly[MAX_ORDER]; local
708 poly[0] = 1.0;
710 memcpy(&poly[1], ptrIO, sizeof(double) * vecSize);
711 WebRtcIsac_Poly2Rc(poly, vecSize, rc);
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-darwin.c 4845 mach_msg_port_descriptor_t poly; member in struct:__anon16843
    [all...]
  /external/zxing/core/
core.jar 
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 

Completed in 721 milliseconds