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

1 2

  /external/gptfdisk/
crc32.cc 52 unsigned long crc, poly; local
55 poly = 0xEDB88320L;
63 crc = (crc >> 1) ^ poly;
  /external/syslinux/core/fs/btrfs/
crc32c.h 17 * poly = 0x1EDC6F41
41 const u32 poly = 0x82F63B78; /* Bit-reflected CRC32C polynomial */ local
46 v = (v >> 1) ^ ((v & 1) ? poly : 0);
  /external/lzma/xz-embedded/
xz_crc32.c 32 const uint32_t poly = 0xEDB88320; local
41 r = (r >> 1) ^ (poly & ~((r & 1) - 1));
xz_crc64.c 23 const uint64_t poly = 0xC96C5795D7870F42; local
32 r = (r >> 1) ^ (poly & ~((r & 1) - 1));
  /packages/apps/Gallery2/jni/filters/
shadows.c 38 double *poly = (double *) malloc(5*sizeof(double)); local
40 poly[i] = fastevalPoly(shadowFilterMap+i*2,2 , s);
49 double v = (fastevalPoly(poly,5,hsv[0]/4080.)*4080);
56 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/lzma/Java/Tukaani/src/org/tukaani/xz/check/
CRC64.java 13 private static final long poly = 0xC96C5795D7870F42L; field in class:CRC64
23 r = (r >>> 1) ^ poly;
  /prebuilts/go/darwin-x86/src/crypto/aes/
const.go 23 // Reducing mod poly corresponds to binary xor with poly every
25 const poly = 1<<8 | 1<<4 | 1<<3 | 1<<1 | 1<<0 // x? + x? + x³ + x + 1 const
27 // Powers of x mod poly in GF(2).
  /prebuilts/go/linux-x86/src/crypto/aes/
const.go 23 // Reducing mod poly corresponds to binary xor with poly every
25 const poly = 1<<8 | 1<<4 | 1<<3 | 1<<1 | 1<<0 // x? + x? + x³ + x + 1 const
27 // Powers of x mod poly in GF(2).
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/spec/
ECNamedCurveSpec.java 43 Polynomial poly = ((PolynomialExtensionField)field).getMinimalPolynomial(); local
44 int[] exponents = poly.getExponentsPresent();
46 return new ECFieldF2m(poly.getDegree(), ks);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
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;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
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/boringssl/mac-x86_64/crypto/modes/
aesni-gcm-x86_64.S 788 L$poly:
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
EC5Util.java 248 Polynomial poly = ((PolynomialExtensionField)field).getMinimalPolynomial(); local
249 int[] exponents = poly.getExponentsPresent();
251 return new ECFieldF2m(poly.getDegree(), ks);
  /external/pdfium/third_party/zlib_v128/
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/syslinux/com32/lib/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/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/boringssl/mac-x86_64/crypto/ec/
p256-x86_64-asm.S 7 L$poly:
40 leaq L$poly(%rip),%rsi
108 movq L$poly+8(%rip),%r14
114 movq L$poly+24(%rip),%r15
428 movq L$poly+8(%rip),%rsi
429 movq L$poly+24(%rip),%rbp
770 movq L$poly+8(%rip),%r14
771 movq L$poly+24(%rip),%r15
  /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...]
  /external/boringssl/win-x86_64/crypto/modes/
aesni-gcm-x86_64.asm 862 $L$poly:
  /frameworks/av/media/libstagefright/
MPEG2TSWriter.cpp 956 uint32_t poly = 0x04C11DB7; local
961 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);

Completed in 1371 milliseconds

1 2