/external/bluetooth/bluedroid/stack/smp/ |
D | aes.c | 92 #define sb_data(w) { /* S Box data values */ \ argument 93 w(0x63), w(0x7c), w(0x77), w(0x7b), w(0xf2), w(0x6b), w(0x6f), w(0xc5),\ 94 w(0x30), w(0x01), w(0x67), w(0x2b), w(0xfe), w(0xd7), w(0xab), w(0x76),\ 95 w(0xca), w(0x82), w(0xc9), w(0x7d), w(0xfa), w(0x59), w(0x47), w(0xf0),\ 96 w(0xad), w(0xd4), w(0xa2), w(0xaf), w(0x9c), w(0xa4), w(0x72), w(0xc0),\ 97 w(0xb7), w(0xfd), w(0x93), w(0x26), w(0x36), w(0x3f), w(0xf7), w(0xcc),\ 98 w(0x34), w(0xa5), w(0xe5), w(0xf1), w(0x71), w(0xd8), w(0x31), w(0x15),\ 99 w(0x04), w(0xc7), w(0x23), w(0xc3), w(0x18), w(0x96), w(0x05), w(0x9a),\ 100 w(0x07), w(0x12), w(0x80), w(0xe2), w(0xeb), w(0x27), w(0xb2), w(0x75),\ 101 w(0x09), w(0x83), w(0x2c), w(0x1a), w(0x1b), w(0x6e), w(0x5a), w(0xa0),\ [all …]
|
/external/valgrind/main/VEX/priv/ |
D | guest_generic_bb_to_IR.c | 781 static inline UInt ROL32 ( UInt w, Int n ) { in ROL32() argument 782 w = (w << n) | (w >> (32-n)); in ROL32() 783 return w; in ROL32() 793 UInt w; in genericg_compute_checksum_4al() local 794 w = p[0]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al() 795 w = p[1]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al() 796 w = p[2]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al() 797 w = p[3]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al() 803 UInt w; in genericg_compute_checksum_4al() local 804 w = p[0]; sum1 = ROL32(sum1 ^ w, 31); sum2 += w; in genericg_compute_checksum_4al() [all …]
|
/external/qemu/slirp-android/ |
D | cksum.c | 49 register u_int16_t *w; in cksum() local 65 w = mtod(m, u_int16_t *); in cksum() 75 if ((1 & (long) w) && (mlen > 0)) { in cksum() 78 s_util.c[0] = *(u_int8_t *)w; in cksum() 79 w = (u_int16_t *)((int8_t *)w + 1); in cksum() 88 sum += w[0]; sum += w[1]; sum += w[2]; sum += w[3]; in cksum() 89 sum += w[4]; sum += w[5]; sum += w[6]; sum += w[7]; in cksum() 90 sum += w[8]; sum += w[9]; sum += w[10]; sum += w[11]; in cksum() 91 sum += w[12]; sum += w[13]; sum += w[14]; sum += w[15]; in cksum() 92 w += 16; in cksum() [all …]
|
/external/qemu/slirp/ |
D | cksum.c | 49 register u_int16_t *w; in cksum() local 65 w = mtod(m, u_int16_t *); in cksum() 75 if ((1 & (long) w) && (mlen > 0)) { in cksum() 78 s_util.c[0] = *(u_int8_t *)w; in cksum() 79 w = (u_int16_t *)((int8_t *)w + 1); in cksum() 88 sum += w[0]; sum += w[1]; sum += w[2]; sum += w[3]; in cksum() 89 sum += w[4]; sum += w[5]; sum += w[6]; sum += w[7]; in cksum() 90 sum += w[8]; sum += w[9]; sum += w[10]; sum += w[11]; in cksum() 91 sum += w[12]; sum += w[13]; sum += w[14]; sum += w[15]; in cksum() 92 w += 16; in cksum() [all …]
|
/external/llvm/test/Transforms/LoopDeletion/ |
D | simplify-then-delete.ll | 17 br i1 %cmp4, label %bb.n10, label %w.e12 19 w.c: 21 br i1 %cmp, label %w.c2.p, label %w.c.w.e12c 23 w.c.w.e12c: 24 br label %w.c.w.e12c.s 26 w.c.w.e12c.s: 27 br label %w.e12 31 br i1 %cmp51, label %bb.n10.w.c.w.e12c.sc, label %bb.n10.bb.n10.sc 36 bb.n10.w.c.w.e12c.sc: 37 br label %w.c.w.e12c.s [all …]
|
/external/openssl/crypto/bn/ |
D | bn_word.c | 63 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w) in BN_mod_word() argument 72 if (w == 0) in BN_mod_word() 76 w&=BN_MASK2; in BN_mod_word() 80 ret=((ret<<BN_BITS4)|((a->d[i]>>BN_BITS4)&BN_MASK2l))%w; in BN_mod_word() 81 ret=((ret<<BN_BITS4)|(a->d[i]&BN_MASK2l))%w; in BN_mod_word() 84 (BN_ULLONG)w); in BN_mod_word() 90 BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w) in BN_div_word() argument 96 w &= BN_MASK2; in BN_div_word() 98 if (!w) in BN_div_word() 105 j = BN_BITS2 - BN_num_bits_word(w); in BN_div_word() [all …]
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
D | Vector4f.java | 89 public float w; field in Vector4f 97 x = y = z = w = 0; in Vector4f() 113 public Vector4f(float x, float y, float z, float w) { in Vector4f() argument 117 this.w = w; in Vector4f() 143 public Vector4f set(float x, float y, float z, float w) { in set() argument 147 this.w = w; in set() 163 this.w = vect.w; in set() 182 return new Vector4f(x + vec.x, y + vec.y, z + vec.z, w + vec.w); in add() 200 result.w = w + vec.w; in add() 221 w += vec.w; in addLocal() [all …]
|
D | Quaternion.java | 69 protected float x, y, z, w; field in Quaternion 80 w = 1; in Quaternion() 96 public Quaternion(float x, float y, float z, float w) { in Quaternion() argument 100 this.w = w; in Quaternion() 116 return w; in getW() 133 public Quaternion set(float x, float y, float z, float w) { in set() argument 137 this.w = w; in set() 154 this.w = q.w; in set() 196 this.w = q.w; in Quaternion() 204 w = 1; in loadIdentity() [all …]
|
/external/v8/src/ |
D | gdb-jit.cc | 77 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { } in Slot() argument 341 virtual void WriteBody(Writer::Slot<Header> header, Writer* w) { in WriteBody() argument 342 uintptr_t start = w->position(); in WriteBody() 343 if (WriteBody(w)) { in WriteBody() 344 uintptr_t end = w->position(); in WriteBody() 350 virtual bool WriteBody(Writer* w) { in WriteBody() argument 453 void AttachWriter(Writer* w) { in AttachWriter() argument 454 writer_ = w; in AttachWriter() 465 virtual void WriteBody(Writer::Slot<Header> header, Writer* w) { in WriteBody() argument 508 void Write(Writer* w, uintptr_t code_start, uintptr_t code_size) { in Write() argument [all …]
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/ |
D | SHA1.java | 20 private final int[] w = new int[80]; field in SHA1 63 …w[idx] = (((b[off++] & 0xff) << 24) | ((b[off++] & 0xff) << 16) | ((b[off++] & 0xff) << 8) | (b[of… in update() 74 …w[idx] = (w[idx] << 24) | (((b[off++] & 0xff) << 16) | ((b[off++] & 0xff) << 8) | (b[off++] & 0xff… in update() 85 w[idx] = (w[idx] << 16) | (((b[off++] & 0xff) << 8) | (b[off++] & 0xff)); in update() 96 w[idx] = (w[idx] << 8) | (b[off++] & 0xff); in update() 112 …w[currentPos >> 2] = ((b[off++] & 0xff) << 24) | ((b[off++] & 0xff) << 16) | ((b[off++] & 0xff) <<… in update() 122 …w[currentPos >> 2] = ((b[off++] & 0xff) << 24) | ((b[off++] & 0xff) << 16) | ((b[off++] & 0xff) <<… in update() 139 …w[currentPos >> 2] = ((b[off++] & 0xff) << 24) | ((b[off++] & 0xff) << 16) | ((b[off++] & 0xff) <<… in update() 158 w[idx] = (w[idx] << 8) | (b[off++] & 0xff); in update() 175 w[idx] = (w[idx] << 8) | (b & 0xff); in update() [all …]
|
/external/valgrind/main/none/tests/amd64/ |
D | lzcnt64.c | 60 ULong w; in main() local 62 w = 0xFEDC192837475675ULL; in main() 66 do_lzcnt64(&flags, &res, w); in main() 67 printf("lzcntq %016llx -> %016llx %04x\n", w, res, flags); in main() 68 if (w == 0) break; in main() 69 w = ((w >> 2) | (w >> 1)) + (w / 17ULL); in main() 72 w = 0xFEDC192837475675ULL; in main() 76 do_lzcnt32(&flags, &res, w); in main() 77 printf("lzcntl %016llx -> %016llx %04x\n", w, res, flags); in main() 78 if (w == 0) break; in main() [all …]
|
/external/skia/src/animator/ |
D | SkXMLAnimatorWriter.cpp | 53 SkXMLAnimatorWriter w(&s); in UnitTest() local 54 w.startElement("screenplay"); in UnitTest() 55 w.startElement("animateField"); in UnitTest() 56 w.addAttribute("field", "x1"); in UnitTest() 57 w.addAttribute("id", "to100"); in UnitTest() 58 w.addAttribute("from", "0"); in UnitTest() 59 w.addAttribute("to", "100"); in UnitTest() 60 w.addAttribute("dur", "1"); in UnitTest() 61 w.endElement(); in UnitTest() 62 w.startElement("event"); in UnitTest() [all …]
|
/external/skia/legacy/src/animator/ |
D | SkXMLAnimatorWriter.cpp | 53 SkXMLAnimatorWriter w(&s); in UnitTest() local 54 w.startElement("screenplay"); in UnitTest() 55 w.startElement("animateField"); in UnitTest() 56 w.addAttribute("field", "x1"); in UnitTest() 57 w.addAttribute("id", "to100"); in UnitTest() 58 w.addAttribute("from", "0"); in UnitTest() 59 w.addAttribute("to", "100"); in UnitTest() 60 w.addAttribute("dur", "1"); in UnitTest() 61 w.endElement(); in UnitTest() 62 w.startElement("event"); in UnitTest() [all …]
|
/external/llvm/test/MC/ARM/ |
D | thumb-shift-encoding.s | 7 sbc.w r12, lr, r0 8 sbc.w r1, r8, r9, lsr #32 9 sbc.w r2, r7, pc, lsr #16 10 sbc.w r3, r6, r10, lsl #0 11 sbc.w r4, r5, lr, lsl #16 12 sbc.w r5, r4, r11, asr #32 13 sbc.w r6, r3, sp, asr #16 14 sbc.w r7, r2, r12, rrx 15 sbc.w r8, r1, r0, ror #16 17 @ CHECK: sbc.w r12, lr, r0 @ encoding: [0x6e,0xeb,0x00,0x0c] [all …]
|
/external/qemu/android/ |
D | config.c | 359 writer_init( Writer* w, const char* fn ) in writer_init() argument 361 w->p = w->buff; in writer_init() 362 w->end = w->buff + sizeof(w->buff); in writer_init() 364 w->fd = creat( fn, 0755 ); in writer_init() 365 if (w->fd < 0) in writer_init() 369 _setmode( w->fd, _O_BINARY ); in writer_init() 375 writer_write( Writer* w, const char* src, int len ) in writer_write() argument 378 int avail = w->end - w->p; in writer_write() 383 memcpy( w->p, src, avail ); in writer_write() 387 w->p += avail; in writer_write() [all …]
|
/external/openssh/openbsd-compat/ |
D | bsd-waitpid.h | 38 #define _W_INT(w) (*(int*)&(w)) /* convert union wait to int */ argument 39 #define WIFEXITED(w) (!((_W_INT(w)) & 0377)) argument 40 #define WIFSTOPPED(w) ((_W_INT(w)) & 0100) argument 41 #define WIFSIGNALED(w) (!WIFEXITED(w) && !WIFSTOPPED(w)) argument 42 #define WEXITSTATUS(w) (int)(WIFEXITED(w) ? ((_W_INT(w) >> 8) & 0377) : -1) argument 43 #define WTERMSIG(w) (int)(WIFSIGNALED(w) ? (_W_INT(w) & 0177) : -1) argument 45 #define WCOREDUMP(w) ((_W_INT(w)) & WCOREFLAG) argument
|
/external/eigen/test/ |
D | qtvector.cpp | 26 QVector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y); in check_qtvector_matrix() local 29 VERIFY_IS_APPROX(w[i], y); in check_qtvector_matrix() 32 w[6] = v[5]; in check_qtvector_matrix() 33 VERIFY_IS_APPROX(w[6], v[5]); in check_qtvector_matrix() 34 v = w; in check_qtvector_matrix() 37 VERIFY_IS_APPROX(w[i], v[i]); in check_qtvector_matrix() 51 MatrixType* ref = &w[0]; in check_qtvector_matrix() 52 for(int i=0; i<30 || ((ref==&w[0]) && i<300); ++i) in check_qtvector_matrix() 53 v.push_back(w[i%w.size()]); in check_qtvector_matrix() 56 VERIFY(v[i]==w[(i-23)%w.size()]); in check_qtvector_matrix() [all …]
|
D | stdvector.cpp | 20 …std::vector<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, … in check_stdvector_matrix() local 22 w[6] = v[5]; in check_stdvector_matrix() 23 VERIFY_IS_APPROX(w[6], v[5]); in check_stdvector_matrix() 24 v = w; in check_stdvector_matrix() 27 VERIFY_IS_APPROX(w[i], v[i]); in check_stdvector_matrix() 41 MatrixType* ref = &w[0]; in check_stdvector_matrix() 42 for(int i=0; i<30 || ((ref==&w[0]) && i<300); ++i) in check_stdvector_matrix() 43 v.push_back(w[i%w.size()]); in check_stdvector_matrix() 46 VERIFY(v[i]==w[(i-23)%w.size()]); in check_stdvector_matrix() 55 std::vector<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y); in check_stdvector_transform() local [all …]
|
D | stdvector_overload.cpp | 34 std::vector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y); in EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION() local 36 w[6] = v[5]; in EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION() 37 VERIFY_IS_APPROX(w[6], v[5]); in EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION() 38 v = w; in EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION() 41 VERIFY_IS_APPROX(w[i], v[i]); in EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION() 55 MatrixType* ref = &w[0]; in EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION() 56 for(int i=0; i<30 || ((ref==&w[0]) && i<300); ++i) in EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION() 57 v.push_back(w[i%w.size()]); in EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION() 60 VERIFY(v[i]==w[(i-23)%w.size()]); in EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION() 69 std::vector<TransformType> v(10), w(20, y); in check_stdvector_transform() local [all …]
|
/external/eigen/test/eigen2/ |
D | eigen2_qtvector.cpp | 26 QVector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y); in check_qtvector_matrix() local 29 VERIFY_IS_APPROX(w[i], y); in check_qtvector_matrix() 32 w[6] = v[5]; in check_qtvector_matrix() 33 VERIFY_IS_APPROX(w[6], v[5]); in check_qtvector_matrix() 34 v = w; in check_qtvector_matrix() 37 VERIFY_IS_APPROX(w[i], v[i]); in check_qtvector_matrix() 51 MatrixType* ref = &w[0]; in check_qtvector_matrix() 52 for(int i=0; i<30 || ((ref==&w[0]) && i<300); ++i) in check_qtvector_matrix() 53 v.push_back(w[i%w.size()]); in check_qtvector_matrix() 56 VERIFY(v[i]==w[(i-23)%w.size()]); in check_qtvector_matrix() [all …]
|
D | eigen2_stdvector.cpp | 20 std::vector<MatrixType, aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, y); in check_stdvector_matrix() local 22 w[6] = v[5]; in check_stdvector_matrix() 23 VERIFY_IS_APPROX(w[6], v[5]); in check_stdvector_matrix() 24 v = w; in check_stdvector_matrix() 27 VERIFY_IS_APPROX(w[i], v[i]); in check_stdvector_matrix() 41 MatrixType* ref = &w[0]; in check_stdvector_matrix() 42 for(int i=0; i<30 || ((ref==&w[0]) && i<300); ++i) in check_stdvector_matrix() 43 v.push_back(w[i%w.size()]); in check_stdvector_matrix() 46 VERIFY(v[i]==w[(i-23)%w.size()]); in check_stdvector_matrix() 55 std::vector<TransformType, aligned_allocator<TransformType> > v(10), w(20, y); in check_stdvector_transform() local [all …]
|
D | eigen2_newstdvector.cpp | 21 …std::vector<MatrixType,Eigen::aligned_allocator<MatrixType> > v(10, MatrixType(rows,cols)), w(20, … in check_stdvector_matrix() local 23 w[6] = v[5]; in check_stdvector_matrix() 24 VERIFY_IS_APPROX(w[6], v[5]); in check_stdvector_matrix() 25 v = w; in check_stdvector_matrix() 28 VERIFY_IS_APPROX(w[i], v[i]); in check_stdvector_matrix() 42 MatrixType* ref = &w[0]; in check_stdvector_matrix() 43 for(int i=0; i<30 || ((ref==&w[0]) && i<300); ++i) in check_stdvector_matrix() 44 v.push_back(w[i%w.size()]); in check_stdvector_matrix() 47 VERIFY(v[i]==w[(i-23)%w.size()]); in check_stdvector_matrix() 56 std::vector<TransformType,Eigen::aligned_allocator<TransformType> > v(10), w(20, y); in check_stdvector_transform() local [all …]
|
/external/fdlibm/ |
D | k_tan.c | 75 double z, r, v, w, s; in __kernel_tan() local 90 z = w = x + y; in __kernel_tan() 93 t = a = -one / w; in __kernel_tan() 107 w = pio4lo - y; in __kernel_tan() 108 x = z + w; in __kernel_tan() 112 w = z * z; in __kernel_tan() 118 r = T[1] + w * (T[3] + w * (T[5] + w * (T[7] + w * (T[9] + in __kernel_tan() 119 w * T[11])))); in __kernel_tan() 120 v = z * (T[2] + w * (T[4] + w * (T[6] + w * (T[8] + w * (T[10] + in __kernel_tan() 121 w * T[12]))))); in __kernel_tan() [all …]
|
/external/srec/config/en.us/audio/v139/ |
D | v139_024.nwv | 10 …w�z�r�q�p�p�q�r�x�y�r�q�u�q�m�r�p�q�x�t�l�p�t�s�s�s�v�z�|�{�v�u�y�y�{��{�w�x����|�������������~�… 12 /GDHj�mj��vwdMM@(����������k�O�7�4�7�%� 17 ��� g���=C(2[+��?�����#�����������i�{����������J��TwcBq��A��������… 20 �t�n��:���3�^����W���#T~��;�\�������9���������� ������������w�Y���������… 22 �,�����������������9�n(��C����"�����G�]���k���0��$�(�|�S���e���I�\���q�V���w�?��… 23 …w���U�eE����W�q��{����������������^�O�w�����C�W�m�P�\�f�E�C�R�R�`�O��8�w�k�A�>�e�… 26 …���������e�E�S�^�Q�:�5�/�'�[��������/�f�|�����������]2$B������w�w�l�\�p�l�:�'�%�����…
|
/external/valgrind/main/none/tests/x86/ |
D | lzcnt32.c | 43 UInt w; in main() local 45 w = 0xFEDC1928; in main() 49 do_lzcnt32(&flags, &res, w); in main() 50 printf("lzcntl %08x -> %08x %04x\n", w, res, flags); in main() 51 if (w == 0) break; in main() 52 w = ((w >> 2) | (w >> 1)) + (w / 17); in main() 55 w = 0xFEDC1928; in main() 59 do_lzcnt16(&flags, &res, w); in main() 60 printf("lzcntw %08x -> %08x %04x\n", w, res, flags); in main() 61 if (w == 0) break; in main() [all …]
|