Home
last modified time | relevance | path

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

12345678910>>...18

/minix/external/bsd/libpcap/dist/
H A Dscanner.l102 V680 {W}:{W}:{W}:{W}:{W}:{W}:{W}:{W}
104 V670 ::{W}:{W}:{W}:{W}:{W}:{W}:{W}
105 V671 {W}::{W}:{W}:{W}:{W}:{W}:{W}
106 V672 {W}:{W}::{W}:{W}:{W}:{W}:{W}
107 V673 {W}:{W}:{W}::{W}:{W}:{W}:{W}
108 V674 {W}:{W}:{W}:{W}::{W}:{W}:{W}
109 V675 {W}:{W}:{W}:{W}:{W}::{W}:{W}
110 V676 {W}:{W}:{W}:{W}:{W}:{W}::{W}
111 V677 {W}:{W}:{W}:{W}:{W}:{W}:{W}::
114 V661 {W}::{W}:{W}:{W}:{W}:{W}
[all …]
/minix/external/bsd/llvm/dist/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp398 DictScope D(W, "DOSHeader"); in printDOSHeader()
719 DictScope D(W, "Section"); in printSections()
778 W.indent(); in printRelocations()
786 W.unindent(); in printRelocations()
787 W.startLine() << "}\n"; in printRelocations()
815 OS << W.hex(Offset) in printRelocation()
850 DictScope D(W, "Symbol"); in printSymbol()
856 W.flush(); in printSymbol()
982 Win64EH::Dumper Dumper(W); in printUnwindInfo()
1082 W.printHex("RVA", RVA); in printCOFFExports()
[all …]
H A DMachODumper.cpp342 DictScope H(W, "MachHeader"); in printFileHeaders()
390 ListScope Group(W, "Sections"); in printSections()
432 ListScope D(W, "Symbols"); in printSections()
455 ListScope D(W, "Relocations"); in printRelocations()
467 W.indent(); in printRelocations()
475 W.unindent(); in printRelocations()
476 W.startLine() << "}\n"; in printRelocations()
515 W.printHex("Offset", Offset); in printRelocation()
527 OS << W.hex(Offset) in printRelocation()
542 ListScope Group(W, "Symbols"); in printSymbols()
[all …]
H A DELFDumper.cpp580 W.printHex("Type", in printSections()
631 W.indent(); in printRelocations()
635 W.unindent(); in printRelocations()
636 W.startLine() << "}\n"; in printRelocations()
720 DictScope D(W, "Symbol"); in printSymbol()
945 W.startLine() in printDynamicTable()
949 W.startLine() in printDynamicTable()
957 W.startLine() << "]\n"; in printDynamicTable()
986 W.printHex ("Type", in printProgramHeaders()
1043 MipsGOTParser(const ObjectFile *Obj, StreamWriter &W) : Obj(Obj), W(W) {} in MipsGOTParser() argument
[all …]
H A DStreamWriter.h267 DictScope(StreamWriter& W, StringRef N) : W(W) { in DictScope()
268 W.startLine() << N << " {\n"; in DictScope()
269 W.indent(); in DictScope()
273 W.unindent(); in ~DictScope()
274 W.startLine() << "}\n"; in ~DictScope()
277 StreamWriter& W; member
281 ListScope(StreamWriter& W, StringRef N) : W(W) { in ListScope()
283 W.indent(); in ListScope()
287 W.unindent(); in ~ListScope()
288 W.startLine() << "]\n"; in ~ListScope()
[all …]
/minix/external/bsd/llvm/dist/clang/utils/ABITest/
H A DEnumeration.py88 if W <= 0 or H <= 0:
90 elif N >= W*H:
98 if H < W:
103 return N%W,N//W
124 index,offset = N%W,N//W
143 if W==0:
145 elif W==1:
147 elif W==2:
150 LW,RW = W//2, W - (W//2)
156 assert len(t) == W
[all …]
/minix/minix/drivers/net/rtl8139/
H A Drtl8139.h344 7-6 R/W LEDS[1-0] LED PIN
345 5 R/W DVRLOAD Driver Load
346 4 R/W LWACT LWAKE active mode
353 6 R/W PARM_En Parameter Enable
354 5 R/W Magic Magic Packet
355 4 R/W LinkUp Link Up
362 6 R/W AnaOff Analog Power Off
364 4 R/W LWPME LANWAKE vs PMEB
366 2 R/W LWPTN LWAKE pattern
428 1 R/W LANWake LANWake Signal
[all …]
/minix/external/bsd/llvm/dist/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-vtables-virtual-inheritance.cpp334 W();
366 W::W() {} in W() function in Test9::W
455 W w;
474 struct W : Z { struct
478 W();
484 W::W() {} in W() function in Test12::W
610 struct W : Z { struct
625 W w;
628 struct T : W {
760 W();
[all …]
/minix/external/bsd/llvm/dist/clang/test/CXX/special/class.copy/
H A 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;
/minix/external/bsd/llvm/dist/clang/test/Layout/
H A Dms-x86-empty-base-after-base-with-vbptr.cpp9 struct W { }; struct
14 struct A : X, W { char a; };
43 struct B : X, U, W { char a; };
72 struct C : X, V, W { char a; };
97 struct D : X, U, V, W { char a; };
126 struct E : X, U, Y, V, W { char a; };
163 struct F : Z, W { char a; };
190 struct G : X, W, Y, V { char a; };
/minix/minix/lib/liblwip/dist/src/netif/ppp/polarssl/
H A Dsha1.c111 temp = W[(t - 3) & 0x0F] ^ W[(t - 8) & 0x0F] ^ \ in sha1_process()
112 W[(t - 14) & 0x0F] ^ W[ t & 0x0F], \ in sha1_process()
130 P( A, B, C, D, E, W[0] ); in sha1_process()
131 P( E, A, B, C, D, W[1] ); in sha1_process()
132 P( D, E, A, B, C, W[2] ); in sha1_process()
133 P( C, D, E, A, B, W[3] ); in sha1_process()
134 P( B, C, D, E, A, W[4] ); in sha1_process()
135 P( A, B, C, D, E, W[5] ); in sha1_process()
136 P( E, A, B, C, D, W[6] ); in sha1_process()
137 P( D, E, A, B, C, W[7] ); in sha1_process()
[all …]
/minix/crypto/external/bsd/heimdal/dist/lib/hcrypto/libtommath/
H A Dbn_fast_mp_montgomery_reduce.c31 mp_word W[MP_WARRAY]; in fast_mp_montgomery_reduce() local
51 _W = W; in fast_mp_montgomery_reduce()
78 mu = (mp_digit) (((W[ix] & MP_MASK) * rho) & MP_MASK); in fast_mp_montgomery_reduce()
103 _W = W + ix; in fast_mp_montgomery_reduce()
112 W[ix + 1] += W[ix] >> ((mp_word) DIGIT_BIT); in fast_mp_montgomery_reduce()
126 _W1 = W + ix; in fast_mp_montgomery_reduce()
129 _W = W + ++ix; in fast_mp_montgomery_reduce()
146 _W = W + n->used; in fast_mp_montgomery_reduce()
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/PowerPC/
H A Dbranch-opt.ll7 define void @foo(i32 %W, i32 %X, i32 %Y, i32 %Z) {
9 %tmp1 = and i32 %W, 1 ; <i32> [#uses=1]
22 %tmp10 = and i32 %W, 2 ; <i32> [#uses=1]
35 %tmp23 = and i32 %W, 4 ; <i32> [#uses=1]
48 %tmp36 = and i32 %W, 8 ; <i32> [#uses=1]
57 %W_addr.0 = sub i32 %W, %indvar ; <i32> [#uses=1]
58 %exitcond = icmp eq i32 %indvar, %W ; <i1> [#uses=1]
61 ….1 = phi i32 [ %W, %bb5 ], [ %W, %bb16 ], [ %W, %bb29 ], [ %W, %cond_false33 ], [ %W_addr.0, %bb42…
H A Ddiv-2.ll10 define i32 @test2(i32 %W) {
11 %X = and i32 %W, 15 ; <i32> [#uses=1]
17 define i32 @test3(i32 %W) {
18 %X = and i32 %W, 15 ; <i32> [#uses=1]
24 define i32 @test4(i32 %W) {
25 %X = and i32 %W, 2 ; <i32> [#uses=1]
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/X86/
H A Dbyval6.ll3 %struct.W = type { x86_fp80, x86_fp80 }
4 @B = global %struct.W { x86_fp80 0xK4001A000000000000000, x86_fp80 0xK4001C000000000000000 }, align…
5 @.cpx = internal constant %struct.W { x86_fp80 0xK4001E000000000000000, x86_fp80 0xK400280000000000…
9 tail call void (i32, ...)* @bar( i32 3, %struct.W* byval @.cpx ) nounwind
10 tail call void (i32, ...)* @baz( i32 3, %struct.W* byval @B ) nounwind
/minix/external/bsd/llvm/dist/llvm/lib/Analysis/
H A DBlockFrequencyInfoImpl.cpp120 if (!W.Amount) { in combineWeight()
121 W = OtherW; in combineWeight()
124 assert(W.Type == OtherW.Type); in combineWeight()
127 if (W.Amount > W.Amount + OtherW.Amount) in combineWeight()
129 W.Amount = UINT64_MAX; in combineWeight()
131 W.Amount += OtherW.Amount; in combineWeight()
158 for (const Weight &W : Weights) in combineWeightsByHashing() local
159 combineWeight(Combined[W.TargetNode.Index], W); in combineWeightsByHashing()
230 for (Weight &W : Weights) { in normalize()
234 W.Amount = std::max(UINT64_C(1), shiftRightAndRound(W.Amount, Shift)); in normalize()
[all …]
/minix/crypto/external/bsd/openssl/dist/crypto/sha/
H A Dsha512.c424 T = W[i]; in sha512_block_data_order()
458 W += SHA_LBLOCK; in sha512_block_data_order()
528 W += SHA_LBLOCK; in sha512_block_data_order()
562 T1 = X[0] = W[0]; in sha512_block_data_order()
564 T1 = X[1] = W[1]; in sha512_block_data_order()
566 T1 = X[2] = W[2]; in sha512_block_data_order()
568 T1 = X[3] = W[3]; in sha512_block_data_order()
570 T1 = X[4] = W[4]; in sha512_block_data_order()
572 T1 = X[5] = W[5]; in sha512_block_data_order()
574 T1 = X[6] = W[6]; in sha512_block_data_order()
[all …]
/minix/external/bsd/llvm/dist/clang/test/CXX/dcl.decl/dcl.init/
H A Dp5.cpp35 struct W { struct
39 W w = W(); // ok argument
48 static_assert(!__has_trivial_constructor(W), "");
/minix/external/bsd/llvm/dist/llvm/include/llvm/Support/
H A DGenericDomTreeConstruction.h192 typename GraphT::NodeType* W = DT.Vertex[i]; in Calculate() local
200 DT.IDoms[V] = DT.Info[U].Semi < i ? U : W; in Calculate()
209 InvTraits::child_begin(W), in Calculate()
210 E = InvTraits::child_end(W); CI != E; ++CI) { in Calculate()
223 DT.IDoms[W] = DT.Vertex[WInfo.Parent]; in Calculate()
240 typename GraphT::NodeType* W = DT.Vertex[i]; in Calculate() local
241 typename GraphT::NodeType*& WIDom = DT.IDoms[W]; in Calculate()
242 if (WIDom != DT.Vertex[DT.Info[W].Semi]) in Calculate()
259 typename GraphT::NodeType* W = DT.Vertex[i]; in Calculate() local
264 typename GraphT::NodeType* ImmDom = DT.getIDom(W); in Calculate()
[all …]
/minix/external/bsd/bind/dist/contrib/idn/idnkit-1.0-src/wsock/
H A DREADME_j.txt150 �Z�[�W�L���[���t�b�N���āA���̊������b�Z�[�W��ߊl����K�v������܂��B
265 idn wrapper �p�̃��W�X�g���ݒ��
273 ���W�X�g�� Where (REG_DWORD)
301 idn wrapper �p�̃��W�X�g���ݒ��
372 ���W�X�g���̐ݒ�
375 ���W�X�g���l���쐬�A�ݒ肵�܂��B
551 Warning �x�����b�Z�[�W���L�^����
608 4.1. DLL �o�[�W����
670 5. ���W�X�g���ݒ� - �܂Ƃ�
672 5.1. ���W�X�g���̗D�揇��
[all …]
/minix/external/bsd/llvm/dist/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
H A Dp6.cpp61 template<int M, int N> struct alignas(M) W;
62 template<int M, int N> struct alignas(N) W {}; struct
63 W<4,4> w44; // ok
65 W<1,2> w12;
66 static_assert(alignof(W<4,4>) == 4, "");
/minix/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/
H A Dgcc_qsub.c50 double W, w; in __gcc_qsub() local
63 W = (A + B) + w; in __gcc_qsub()
64 Y = (A + B) - W; in __gcc_qsub()
72 dst.s.hi = Y = W + w; in __gcc_qsub()
73 dst.s.lo = (W - Y) + w; in __gcc_qsub()
H A Dgcc_qadd.c50 double W, w; in __gcc_qadd() local
63 W = (A + B) + w; in __gcc_qadd()
64 Y = (A + B) - W; in __gcc_qadd()
72 dst.s.hi = Y = W + w; in __gcc_qadd()
73 dst.s.lo = (W - Y) + w; in __gcc_qadd()
/minix/external/bsd/llvm/dist/llvm/test/ExecutionEngine/MCJIT/
H A Dtest-fp.ll6 %W = fsub double %V, %V ; <double> [#uses=3]
7 %X = fmul double %W, %W ; <double> [#uses=2]
10 %Z1 = fdiv double %Z, %W ; <double> [#uses=0]
/minix/external/bsd/llvm/dist/llvm/test/ExecutionEngine/
H A Dtest-fp.ll6 %W = fsub double %V, %V ; <double> [#uses=3]
7 %X = fmul double %W, %W ; <double> [#uses=2]
10 %Z1 = fdiv double %Z, %W ; <double> [#uses=0]

12345678910>>...18