Home
last modified time | relevance | path

Searched refs:W (Results 1 – 25 of 867) sorted by relevance

12345678910>>...35

/external/libpcap/
Dscanner.l82 W ([0-9A-Fa-f][0-9A-Fa-f]?[0-9A-Fa-f]?[0-9A-Fa-f]?)
91 V680 {W}:{W}:{W}:{W}:{W}:{W}:{W}:{W}
93 V670 ::{W}:{W}:{W}:{W}:{W}:{W}:{W}
94 V671 {W}::{W}:{W}:{W}:{W}:{W}:{W}
95 V672 {W}:{W}::{W}:{W}:{W}:{W}:{W}
96 V673 {W}:{W}:{W}::{W}:{W}:{W}:{W}
97 V674 {W}:{W}:{W}:{W}::{W}:{W}:{W}
98 V675 {W}:{W}:{W}:{W}:{W}::{W}:{W}
99 V676 {W}:{W}:{W}:{W}:{W}:{W}::{W}
100 V677 {W}:{W}:{W}:{W}:{W}:{W}:{W}::
[all …]
/external/openfst/src/include/fst/
Dsparse-power-weight.h36 template<class W, class K>
38 W Map(const K& k, const W& v1, const W& v2) const { in Map()
43 template<class W, class K>
45 W Map(const K& k, const W& v1, const W& v2) const { in Map()
50 template<class W, class K>
55 W Map(const K& k, const W& v1, const W& v2) const { in Map()
61 template<class W, class K>
64 W Map(const K& k, const W& v1, const W& v2) const { in Map()
65 return ApproxEqual(v1, v2, delta_) ? W::One() : W::Zero(); in Map()
79 template <class W, class K = int>
[all …]
Dpower-weight.h38 template <class W, unsigned int n>
39 class PowerWeight : public TupleWeight<W, n> {
41 using TupleWeight<W, n>::Zero;
42 using TupleWeight<W, n>::One;
43 using TupleWeight<W, n>::NoWeight;
44 using TupleWeight<W, n>::Quantize;
45 using TupleWeight<W, n>::Reverse;
47 typedef PowerWeight<typename W::ReverseWeight, n> ReverseWeight;
51 PowerWeight(const TupleWeight<W, n> &w) : TupleWeight<W, n>(w) {} in PowerWeight() argument
54 PowerWeight(Iterator begin, Iterator end) : TupleWeight<W, n>(begin, end) {} in PowerWeight()
[all …]
Dtuple-weight.h36 template<class W, unsigned int n> class TupleWeight;
37 template <class W, unsigned int n>
38 istream &operator>>(istream &strm, TupleWeight<W, n> &w);
41 template <class W, unsigned int n>
44 typedef TupleWeight<typename W::ReverseWeight, n> ReverseWeight;
59 TupleWeight(const W &w) { in TupleWeight()
64 static const TupleWeight<W, n> &Zero() { in Zero()
65 static const TupleWeight<W, n> zero(W::Zero()); in Zero()
69 static const TupleWeight<W, n> &One() { in One()
70 static const TupleWeight<W, n> one(W::One()); in One()
[all …]
Dsparse-tuple-weight.h48 template <class W, class K> class SparseTupleWeight;
50 template<class W, class K>
53 template <class W, class K>
54 istream &operator>>(istream &strm, SparseTupleWeight<W, K> &w);
59 template <class W, class K = int>
62 typedef pair<K, W> Pair;
63 typedef SparseTupleWeight<typename W::ReverseWeight, K> ReverseWeight;
79 SparseTupleWeight(const K& key, const W &w) { in SparseTupleWeight()
84 SparseTupleWeight(const W &w) { in SparseTupleWeight()
88 SparseTupleWeight(const SparseTupleWeight<W, K> &w) { in SparseTupleWeight() argument
[all …]
Dweight.h130 template <class W>
133 typedef W Weight;
136 if (!(W::Properties() & kIdempotent)) { in NaturalLess()
138 << W::Type(); in NaturalLess()
142 bool operator()(const W &w1, const W &w2) const { in operator()
152 template <class W>
153 W Power(W w, size_t n) { in Power()
154 W result = W::One(); in Power()
172 template <class W>
173 struct WeightConvert<W, W> {
[all …]
/external/srtp/crypto/hash/
Dsha1.c105 uint32_t W[80]; in sha1_core() local
118 W[0] = be32_to_cpu(M[0]); in sha1_core()
119 W[1] = be32_to_cpu(M[1]); in sha1_core()
120 W[2] = be32_to_cpu(M[2]); in sha1_core()
121 W[3] = be32_to_cpu(M[3]); in sha1_core()
122 W[4] = be32_to_cpu(M[4]); in sha1_core()
123 W[5] = be32_to_cpu(M[5]); in sha1_core()
124 W[6] = be32_to_cpu(M[6]); in sha1_core()
125 W[7] = be32_to_cpu(M[7]); in sha1_core()
126 W[8] = be32_to_cpu(M[8]); in sha1_core()
[all …]
/external/dropbear/libtomcrypt/src/hashes/
Dmd5.c106 ulong32 i, W[16], a, b, c, d; in _md5_compress() local
113 LOAD32L(W[i], buf + (4*i)); in _md5_compress()
124 FF(a,b,c,d,W[Worder[i]],Rorder[i],Korder[i]); in _md5_compress()
129 GG(a,b,c,d,W[Worder[i]],Rorder[i],Korder[i]); in _md5_compress()
134 HH(a,b,c,d,W[Worder[i]],Rorder[i],Korder[i]); in _md5_compress()
139 II(a,b,c,d,W[Worder[i]],Rorder[i],Korder[i]); in _md5_compress()
144 FF(a,b,c,d,W[0],7,0xd76aa478UL) in _md5_compress()
145 FF(d,a,b,c,W[1],12,0xe8c7b756UL) in _md5_compress()
146 FF(c,d,a,b,W[2],17,0x242070dbUL) in _md5_compress()
147 FF(b,c,d,a,W[3],22,0xc1bdceeeUL) in _md5_compress()
[all …]
/external/webkit/Source/JavaScriptCore/wtf/
DRefPtrHashMap.h123 template<typename T, typename U, typename V, typename W, typename X>
124 inline void HashMap<RefPtr<T>, U, V, W, X>::swap(HashMap& other) in swap()
129 template<typename T, typename U, typename V, typename W, typename X>
130 inline int HashMap<RefPtr<T>, U, V, W, X>::size() const in size()
135 template<typename T, typename U, typename V, typename W, typename X>
136 inline int HashMap<RefPtr<T>, U, V, W, X>::capacity() const in capacity()
141 template<typename T, typename U, typename V, typename W, typename X>
142 inline bool HashMap<RefPtr<T>, U, V, W, X>::isEmpty() const in isEmpty()
147 template<typename T, typename U, typename V, typename W, typename X>
148 inline typename HashMap<RefPtr<T>, U, V, W, X>::iterator HashMap<RefPtr<T>, U, V, W, X>::begin() in begin()
[all …]
DHashMap.h144 template<typename T, typename U, typename V, typename W, typename X>
145 inline void HashMap<T, U, V, W, X>::swap(HashMap& other) in swap()
150 template<typename T, typename U, typename V, typename W, typename X>
151 inline int HashMap<T, U, V, W, X>::size() const in size()
156 template<typename T, typename U, typename V, typename W, typename X>
157 inline int HashMap<T, U, V, W, X>::capacity() const in capacity()
162 template<typename T, typename U, typename V, typename W, typename X>
163 inline bool HashMap<T, U, V, W, X>::isEmpty() const in isEmpty()
168 template<typename T, typename U, typename V, typename W, typename X>
169 inline typename HashMap<T, U, V, W, X>::iterator HashMap<T, U, V, W, X>::begin() in begin()
[all …]
/external/opencv/cvaux/src/
Dcvmorphcontours.cpp77 void _cvWorkEast (int i, int j, _CvWork** W, CvPoint2D32f* edges1, CvPoint2D32f* edges2);
78 void _cvWorkSouthEast(int i, int j, _CvWork** W, CvPoint2D32f* edges1, CvPoint2D32f* edges2);
79 void _cvWorkSouth (int i, int j, _CvWork** W, CvPoint2D32f* edges1, CvPoint2D32f* edges2);
382 void _cvWorkEast(int i, int j, _CvWork** W, CvPoint2D32f* edges1, CvPoint2D32f* edges2) in _cvWorkEast() argument
388 w1 = W[i-1][j].w_east /*+ _cvBendingWork( &edges1[i-2], in _cvWorkEast()
397 w2 = W[i-1][j].w_southeast + _cvBendingWork(&edges1[i-2], in _cvWorkEast()
405 W[i][j].w_east = w1 + _cvStretchingWork( &edges1[i-1], &null_edge ); in _cvWorkEast()
406 W[i][j].path_e = PATH_TO_E; in _cvWorkEast()
410 W[i][j].w_east = w2 + _cvStretchingWork( &edges1[i-1], &null_edge ); in _cvWorkEast()
411 W[i][j].path_e = PATH_TO_SE; in _cvWorkEast()
[all …]
/external/llvm/include/llvm/CodeGen/
DMachineCodeEmitter.h93 void emitWordLE(uint32_t W) { in emitWordLE() argument
95 emitWordLEInto(CurBufferPtr, W); in emitWordLE()
105 static void emitWordLEInto(uint8_t *&Buf, uint32_t W) { in emitWordLEInto() argument
106 *Buf++ = (uint8_t)(W >> 0); in emitWordLEInto()
107 *Buf++ = (uint8_t)(W >> 8); in emitWordLEInto()
108 *Buf++ = (uint8_t)(W >> 16); in emitWordLEInto()
109 *Buf++ = (uint8_t)(W >> 24); in emitWordLEInto()
115 void emitWordBE(uint32_t W) { in emitWordBE() argument
117 *CurBufferPtr++ = (uint8_t)(W >> 24); in emitWordBE()
118 *CurBufferPtr++ = (uint8_t)(W >> 16); in emitWordBE()
[all …]
DJITCodeEmitter.h88 void emitWordLE(uint32_t W) { in emitWordLE() argument
90 *CurBufferPtr++ = (uint8_t)(W >> 0); in emitWordLE()
91 *CurBufferPtr++ = (uint8_t)(W >> 8); in emitWordLE()
92 *CurBufferPtr++ = (uint8_t)(W >> 16); in emitWordLE()
93 *CurBufferPtr++ = (uint8_t)(W >> 24); in emitWordLE()
102 void emitWordBE(uint32_t W) { in emitWordBE() argument
104 *CurBufferPtr++ = (uint8_t)(W >> 24); in emitWordBE()
105 *CurBufferPtr++ = (uint8_t)(W >> 16); in emitWordBE()
106 *CurBufferPtr++ = (uint8_t)(W >> 8); in emitWordBE()
107 *CurBufferPtr++ = (uint8_t)(W >> 0); in emitWordBE()
[all …]
/external/qemu/target-i386/
Dops_sse.h25 #define W(n) MMX_W(n) macro
33 #define W(n) XMM_W(n) macro
50 d->W(0) >>= shift; in glue()
51 d->W(1) >>= shift; in glue()
52 d->W(2) >>= shift; in glue()
53 d->W(3) >>= shift; in glue()
55 d->W(4) >>= shift; in glue()
56 d->W(5) >>= shift; in glue()
57 d->W(6) >>= shift; in glue()
58 d->W(7) >>= shift; in glue()
[all …]
/external/clang/utils/ABITest/
DEnumeration.py83 def getNthPairBounded(N,W=aleph0,H=aleph0,useDivmod=False): argument
88 if W <= 0 or H <= 0:
90 elif N >= W*H:
94 if W is aleph0 and H is aleph0:
98 if H < W:
99 x,y = getNthPairBounded(N,H,W,useDivmod=useDivmod)
103 return N%W,N//W
110 cornerSize = base(W)
116 M = W*H - N - 1
119 return (W-1-x,H-1-y)
[all …]
/external/openfst/src/include/fst/script/
Dweight-class.h42 template<class W>
44 W weight;
46 explicit WeightClassImpl(const W& weight) : weight(weight) { } in WeightClassImpl()
48 virtual WeightClassImpl<W> *Copy() const { in Copy()
49 return new WeightClassImpl<W>(weight); in Copy()
52 virtual const string &Type() const { return W::Type(); } in Type()
68 const WeightClassImpl<W> *typed_other =
69 static_cast<const WeightClassImpl<W> *>(&other);
81 template<class W>
82 explicit WeightClass(const W& weight) in WeightClass()
[all …]
/external/eigen/blas/
Ddrotm.f56 DOUBLE PRECISION DFLAG,DH11,DH12,DH21,DH22,TWO,W,Z,ZERO local
73 W = DX(I)
75 DX(I) = W + Z*DH12
76 DY(I) = W*DH21 + Z
83 W = DX(I)
85 DX(I) = W*DH11 + Z
86 DY(I) = -W + DH22*Z
95 W = DX(I)
97 DX(I) = W*DH11 + Z*DH12
98 DY(I) = W*DH21 + Z*DH22
[all …]
Dsrotm.f57 REAL SFLAG,SH11,SH12,SH21,SH22,TWO,W,Z,ZERO local
74 W = SX(I)
76 SX(I) = W + Z*SH12
77 SY(I) = W*SH21 + Z
84 W = SX(I)
86 SX(I) = W*SH11 + Z
87 SY(I) = -W + SH22*Z
96 W = SX(I)
98 SX(I) = W*SH11 + Z*SH12
99 SY(I) = W*SH21 + Z*SH22
[all …]
/external/clang/test/CXX/special/class.copy/
Dp13-0x.cpp85 struct W { struct
86 W(); // expected-note {{here}}
91 static_assert(!__is_literal_type(W), "");
94 static_assert(!__is_literal_type(S<W>), "");
103 friend constexpr W::W(); // expected-error {{follows non-constexpr declaration}}
104 friend constexpr W::W(W&&) noexcept;
105 friend constexpr W::W(const W&) noexcept;
112 friend constexpr S<W>::S(); // expected-error {{follows non-constexpr declaration}}
113 friend constexpr S<W>::S(S<W>&&) noexcept;
114 friend constexpr S<W>::S(const S<W>&) noexcept;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
DLongDigest.java22 private long[] W = new long[80]; field in LongDigest
59 System.arraycopy(t.W, 0, W, 0, t.W.length); in LongDigest()
151 for (int i = 0; i != W.length; i++) in reset()
153 W[i] = 0; in reset()
166 W[wOff] = Pack.bigEndianToLong(in, inOff); in processWord()
196 W[14] = hiW; in processLength()
197 W[15] = lowW; in processLength()
209 W[t] = Sigma1(W[t - 2]) + W[t - 7] + Sigma0(W[t - 15]) + W[t - 16]; in processBlock()
228 h += Sum1(e) + Ch(e, f, g) + K[t] + W[t++]; in processBlock()
233 g += Sum1(d) + Ch(d, e, f) + K[t] + W[t++]; in processBlock()
[all …]
/external/libvpx/vp8/common/ppc/
Dplatform_altivec.asm15 .macro W V P macro
28 W v20, r3
29 W v21, r3
30 W v22, r3
31 W v23, r3
32 W v24, r3
33 W v25, r3
34 W v26, r3
35 W v27, r3
36 W v28, r3
[all …]
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/es-ES/
Des-ES_zl0_kpdf_lfz.pkb4 ��c ���r#����S ��%<Wt��陧����������+�������L��c����=�p"����/XM����…
28 (�e�|#���9�-S������� ��S����Uv�*�N����k�S�� � S�����U����W��H�&?�d���…
94 ]�-H����7W��v VWYb����N���1�M=���.���)qL ��4�]S������ 8���� jY � �$3�����…
97 …�5{��#�e�0�S��~� �P����(B��O��������&陈��9%L ����+0��l���(Q���K-W�L"(�\�� ���
107 � _ ���� 3;�R����������Hm�v� �T5�-�*���+��Ey�L�{j\�H�f��/����N?W���…
120 � ��C�6�My��W���Q����:ZU�a�&L���k� AnMN�����陎Q����u��n�j�
122 �����X����\g�C�#}��b�jQ��N�S�SW���
133 …�} :���������K������������h ����=�V��S��%� .�Z�W�:�����M���{…
153 �H�����`�����陗.�;�#����� �Cs"�ԙG��ƙ�W
164 …���陔����$_"R������\U%�,L\���%PYS������V��x�Fl9���X�`4��5�T陟6B �W�=L���y�y���2(Q{…
[all …]
/external/dropbear/libtommath/
Dbn_fast_mp_montgomery_reduce.c29 mp_word W[MP_WARRAY]; in fast_mp_montgomery_reduce() local
49 _W = W; in fast_mp_montgomery_reduce()
76 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK); in fast_mp_montgomery_reduce()
101 _W = W + ix; in fast_mp_montgomery_reduce()
110 W[ix + 1] += W[ix] >> ((mp_word) DIGIT_BIT); in fast_mp_montgomery_reduce()
124 _W1 = W + ix; in fast_mp_montgomery_reduce()
127 _W = W + ++ix; in fast_mp_montgomery_reduce()
144 _W = W + n->used; in fast_mp_montgomery_reduce()
/external/skia/samplecode/
DSampleClip.cpp16 #define W 150 macro
29 rand.nextSScalar1() * W, rand.nextSScalar1() * H + 20, in show_text()
47 r.setXYWH(rand.nextSScalar1() * W, rand.nextSScalar1() * H, in show_fill()
48 rand.nextUScalar1() * W, rand.nextUScalar1() * H); in show_fill()
52 r.setXYWH(rand.nextSScalar1() * W, rand.nextSScalar1() * H, in show_fill()
53 rand.nextUScalar1() * W, rand.nextUScalar1() * H); in show_fill()
76 r.setXYWH(rand.nextSScalar1() * W, rand.nextSScalar1() * H, in show_stroke()
77 rand.nextUScalar1() * W, rand.nextUScalar1() * H); in show_stroke()
81 r.setXYWH(rand.nextSScalar1() * W, rand.nextSScalar1() * H, in show_stroke()
82 rand.nextUScalar1() * W, rand.nextUScalar1() * H); in show_stroke()
[all …]
/external/icu4c/data/unidata/
DEastAsianWidth.txt15 # "N", "A", "H", "W", "F", "Na"
18 # The unassigned code points that default to "W" include ranges in the
339 1100..115F;W
341 11A3..11A7;W
343 11FA..11FF;W
552 2329..232A;W
656 2E80..2E99;W
657 2E9B..2EF3;W
658 2F00..2FD5;W
659 2FF0..2FFB;W
[all …]

12345678910>>...35