HomeSort by relevance Sort by last modified time
    Searched refs:poly (Results 101 - 125 of 171) sorted by null

1 2 3 45 6 7

  /external/python/cpython2/Lib/lib-tk/
turtle.py 849 def addcomponent(self, poly, fill, outline=None):
852 Arguments: poly is a polygon, i. e. a tuple of number pairs.
860 >>> poly = ((0,0),(10,-5),(0,10),(-10,-5))
862 >>> s.addcomponent(poly, "red", "blue")
    [all...]
  /frameworks/base/core/jni/android/opengl/
util.cpp 42 #include "poly.h"
57 print_poly(const char* label, Poly* pPoly) {
116 Poly poly; local
117 float* pDest = & poly.vert[0].sx;
119 poly.n = 3;
123 result = poly_clip_to_frustum(&poly);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
turtle.py 848 def addcomponent(self, poly, fill, outline=None):
851 Arguments: poly is a polygon, i. e. a tuple of number pairs.
859 >>> poly = ((0,0),(10,-5),(0,10),(-10,-5))
861 >>> s.addcomponent(poly, "red", "blue")
869 self._data.append([poly, fill, outline])
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
turtle.py 848 def addcomponent(self, poly, fill, outline=None):
851 Arguments: poly is a polygon, i. e. a tuple of number pairs.
859 >>> poly = ((0,0),(10,-5),(0,10),(-10,-5))
861 >>> s.addcomponent(poly, "red", "blue")
869 self._data.append([poly, fill, outline])
    [all...]
  /prebuilts/go/darwin-x86/src/math/
lgamma.go 42 // lgamma(x) = -1.214862905358496078218 + z**2*poly(z)
43 // poly(z) is a 14 degree polynomial.
  /prebuilts/go/linux-x86/src/math/
lgamma.go 42 // lgamma(x) = -1.214862905358496078218 + z**2*poly(z)
43 // poly(z) is a 14 degree polynomial.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 848 def addcomponent(self, poly, fill, outline=None):
851 Arguments: poly is a polygon, i. e. a tuple of number pairs.
859 >>> poly = ((0,0),(10,-5),(0,10),(-10,-5))
861 >>> s.addcomponent(poly, "red", "blue")
869 self._data.append([poly, fill, outline])
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
turtle.py 848 def addcomponent(self, poly, fill, outline=None):
851 Arguments: poly is a polygon, i. e. a tuple of number pairs.
859 >>> poly = ((0,0),(10,-5),(0,10),(-10,-5))
861 >>> s.addcomponent(poly, "red", "blue")
869 self._data.append([poly, fill, outline])
    [all...]
  /external/python/cpython2/Mac/Modules/qd/
_Qdmodule.c 3379 PolyHandle poly; local
3395 PolyHandle poly; local
3417 PolyHandle poly; local
3433 PolyHandle poly; local
3449 PolyHandle poly; local
3465 PolyHandle poly; local
3481 PolyHandle poly; local
3683 PolyHandle poly; local
4148 PolyHandle poly; local
    [all...]
  /external/boringssl/src/crypto/cipher_extra/asm/
aes128gcmsiv-x86_64.pl 57 poly: label
105 vpclmulqdq \$0x10, poly(%rip), $TMP1, $TMP2
109 vpclmulqdq \$0x10, poly(%rip), $TMP1, $TMP2
332 vpclmulqdq \$0x10, poly(%rip), $T, $TMP4 # reduction stage 1a
345 vpclmulqdq \$0x10, poly(%rip), $T, $TMP4 # reduction stage 2a
379 vpclmulqdq \$0x10, poly(%rip), $T, $TMP3
383 vpclmulqdq \$0x10, poly(%rip), $T, $TMP3
    [all...]
  /external/boringssl/mac-x86_64/crypto/fipsmodule/
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
908 movq L$poly+8(%rip),%r14
909 movq L$poly+24(%rip),%r15
  /external/boringssl/win-x86_64/crypto/fipsmodule/
p256-x86_64-asm.asm 11 $L$poly:
51 lea rsi,[$L$poly]
131 mov r14,QWORD[(($L$poly+8))]
137 mov r15,QWORD[(($L$poly+24))]
460 mov rsi,QWORD[(($L$poly+8))]
461 mov rbp,QWORD[(($L$poly+24))]
1044 mov r14,QWORD[(($L$poly+8))]
1045 mov r15,QWORD[(($L$poly+24))]
    [all...]
  /external/python/cpython3/Lib/
turtle.py     [all...]
  /external/libvpx/libvpx/third_party/libyuv/include/libyuv/
planar_functions.h 271 // poly points to a 4x4 matrix. The first row is constants. The 2nd row is
281 const float* poly,
  /external/libyuv/files/include/libyuv/
planar_functions.h 412 // poly points to a 4x4 matrix. The first row is constants. The 2nd row is
424 const float* poly,
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
entropy_coding.c 681 double poly[MAX_ORDER]; local
703 poly[0] = 1.0;
705 memcpy(&poly[1], ptrIO, sizeof(double) * vecSize);
706 WebRtcIsac_Poly2Rc(poly, vecSize, rc);
    [all...]
  /prebuilts/go/darwin-x86/src/compress/bzip2/
bzip2.go 480 const poly = 0x04C11DB7
485 crc = (crc << 1) ^ poly
  /prebuilts/go/darwin-x86/src/hash/crc64/
crc64_test.go 159 func bench(b *testing.B, poly uint64, size int64) {
165 h := New(MakeTable(poly))
  /prebuilts/go/linux-x86/src/compress/bzip2/
bzip2.go 480 const poly = 0x04C11DB7
485 crc = (crc << 1) ^ poly
  /prebuilts/go/linux-x86/src/hash/crc64/
crc64_test.go 159 func bench(b *testing.B, poly uint64, size int64) {
165 h := New(MakeTable(poly))
  /external/boringssl/win-x86_64/crypto/cipher_extra/
aes128gcmsiv-x86_64.asm 28 poly: label
56 vpclmulqdq xmm3,xmm2,XMMWORD[poly],0x10
60 vpclmulqdq xmm3,xmm2,XMMWORD[poly],0x10
253 vpclmulqdq xmm7,xmm1,XMMWORD[poly],0x10
282 vpclmulqdq xmm7,xmm1,XMMWORD[poly],0x10
348 vpclmulqdq xmm6,xmm1,XMMWORD[poly],0x10
352 vpclmulqdq xmm6,xmm1,XMMWORD[poly],0x10
1574 vmovdqa xmm3,XMMWORD[poly]
    [all...]
  /external/boringssl/linux-x86_64/crypto/cipher_extra/
aes128gcmsiv-x86_64.S 24 poly: label
51 vpclmulqdq $0x10,poly(%rip),%xmm2,%xmm3
55 vpclmulqdq $0x10,poly(%rip),%xmm2,%xmm3
219 vpclmulqdq $0x10,poly(%rip),%xmm1,%xmm7
248 vpclmulqdq $0x10,poly(%rip),%xmm1,%xmm7
314 vpclmulqdq $0x10,poly(%rip),%xmm1,%xmm6
318 vpclmulqdq $0x10,poly(%rip),%xmm1,%xmm6
1455 vmovdqa poly(%rip),%xmm3
    [all...]
  /external/boringssl/mac-x86_64/crypto/cipher_extra/
aes128gcmsiv-x86_64.S 24 poly: label
51 vpclmulqdq $0x10,poly(%rip),%xmm2,%xmm3
55 vpclmulqdq $0x10,poly(%rip),%xmm2,%xmm3
219 vpclmulqdq $0x10,poly(%rip),%xmm1,%xmm7
248 vpclmulqdq $0x10,poly(%rip),%xmm1,%xmm7
314 vpclmulqdq $0x10,poly(%rip),%xmm1,%xmm6
318 vpclmulqdq $0x10,poly(%rip),%xmm1,%xmm6
1445 vmovdqa poly(%rip),%xmm3
1571 vmovdqa poly(%rip),%xmm3
    [all...]
  /frameworks/av/media/libstagefright/
MPEG2TSWriter.cpp 956 uint32_t poly = 0x04C11DB7; local
961 crc = (crc << 1) ^ ((crc & 0x80000000) ? (poly) : 0);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/include/isl/
polynomial.h 93 __isl_take isl_qpolynomial *poly, void *user), void *user);
96 __isl_take isl_qpolynomial *poly);

Completed in 1671 milliseconds

1 2 3 45 6 7