Searched refs:iword (Results 1 - 18 of 18) sorted by relevance

/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/ios_base/sync_with_stdio/
H A D9523.cc32 cin.iword(index) = 5;
33 cout.iword(index) = 6;
34 cerr.iword(index) = 7;
35 clog.iword(index) = 8;
39 VERIFY( cin.iword(index) == 5 );
40 VERIFY( cout.iword(index) == 6 );
41 VERIFY( cerr.iword(index) == 7 );
42 VERIFY( clog.iword(index) == 8 );
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/ios_base/sync_with_stdio/
H A D9523.cc33 cin.iword(index) = 5;
34 cout.iword(index) = 6;
35 cerr.iword(index) = 7;
36 clog.iword(index) = 8;
40 VERIFY( cin.iword(index) == 5 );
41 VERIFY( cout.iword(index) == 6 );
42 VERIFY( cerr.iword(index) == 7 );
43 VERIFY( clog.iword(index) == 8 );
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/opcodes/
H A Dmoxie-dis.c50 unsigned short iword; local
55 iword = bfd_getb16 (buffer);
58 if ((iword & (1<<15)) == 0)
61 opcode = &moxie_form1_opc_info[iword >> 8];
69 reg_names[OP_A(iword)]);
73 reg_names[OP_A(iword)],
74 reg_names[OP_B(iword)]);
83 reg_names[OP_A(iword)], imm);
110 reg_names[OP_A(iword)], reg_names[OP_B(iword)]);
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/opcodes/
H A Dmoxie-dis.c50 unsigned short iword; local
55 iword = bfd_getb16 (buffer);
58 if ((iword & (1<<15)) == 0)
61 opcode = &moxie_form1_opc_info[iword >> 8];
69 reg_names[OP_A(iword)]);
73 reg_names[OP_A(iword)],
74 reg_names[OP_B(iword)]);
83 reg_names[OP_A(iword)], imm);
110 reg_names[OP_A(iword)], reg_names[OP_B(iword)]);
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/objects/char/
H A D5.cc62 std::cin.iword(ret) = ret + 1;
63 std::cout.iword(ret) = ret + 2;
64 std::cerr.iword(ret) = ret + 3;
65 std::clog.iword(ret) = ret + 4;
74 VERIFY( std::cin.iword(i) == i + 1 );
75 VERIFY( std::cout.iword(i) == i + 2 );
76 VERIFY( std::cerr.iword(i) == i + 3 );
77 VERIFY( std::clog.iword(i) == i + 4 );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/objects/wchar_t/
H A D5.cc62 std::wcin.iword(ret) = ret + 1;
63 std::wcout.iword(ret) = ret + 2;
64 std::wcerr.iword(ret) = ret + 3;
65 std::wclog.iword(ret) = ret + 4;
74 VERIFY( std::wcin.iword(i) == i + 1 );
75 VERIFY( std::wcout.iword(i) == i + 2 );
76 VERIFY( std::wcerr.iword(i) == i + 3 );
77 VERIFY( std::wclog.iword(i) == i + 4 );
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/objects/char/
H A D5.cc63 std::cin.iword(ret) = ret + 1;
64 std::cout.iword(ret) = ret + 2;
65 std::cerr.iword(ret) = ret + 3;
66 std::clog.iword(ret) = ret + 4;
75 VERIFY( std::cin.iword(i) == i + 1 );
76 VERIFY( std::cout.iword(i) == i + 2 );
77 VERIFY( std::cerr.iword(i) == i + 3 );
78 VERIFY( std::clog.iword(i) == i + 4 );
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/objects/wchar_t/
H A D5.cc63 std::wcin.iword(ret) = ret + 1;
64 std::wcout.iword(ret) = ret + 2;
65 std::wcerr.iword(ret) = ret + 3;
66 std::wclog.iword(ret) = ret + 4;
75 VERIFY( std::wcin.iword(i) == i + 1 );
76 VERIFY( std::wcout.iword(i) == i + 2 );
77 VERIFY( std::wcerr.iword(i) == i + 3 );
78 VERIFY( std::wclog.iword(i) == i + 4 );
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/ios_base/storage/
H A D3.cc43 d.iword(0) = 1;
H A D2.cc96 // iword
97 ios.iword(1) = 1;
98 VERIFY( ios.iword(1) == 1 );
102 l = ios.iword(max);
116 VERIFY( ios.iword(1) == 1 );
122 l = ios.iword(std::numeric_limits<int>::max());
H A D11584.cc50 std::cout.iword(100) = 69;
51 VERIFY( std::cout.iword(100) == 0 );
53 // Access to pword failure storage shouldn't clear iword pword storage.
54 long& lr = std::cout.iword(100);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/ios_base/storage/
H A D3.cc44 d.iword(0) = 1;
H A D2.cc89 // iword
90 ios.iword(1) = 1;
91 VERIFY( ios.iword(1) == 1 );
95 l = ios.iword(max);
109 VERIFY( ios.iword(1) == 1 );
115 l = ios.iword(std::numeric_limits<int>::max());
H A D11584.cc51 std::cout.iword(100) = 69;
52 VERIFY( std::cout.iword(100) == 0 );
54 // Access to pword failure storage shouldn't clear iword pword storage.
55 long& lr = std::cout.iword(100);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/config/
H A Dtc-moxie.c159 unsigned short iword = 0; local
193 iword = (1<<15) | (opcode->opcode << 12);
200 iword += (reg << 8);
214 iword = opcode->opcode << 8;
224 iword += (dest << 4) + src;
232 iword = opcode->opcode << 8;
244 iword += (regnum << 4);
266 iword = opcode->opcode << 8;
284 iword = opcode->opcode << 8;
291 iword
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dios_base.h497 // 27.4.2.5 Members for iword/pword storage
505 // Only for failed iword/pword calls.
509 // The first 5 iword and pword slots are reserved for internal use.
715 * index for the iword and pword functions. The expectation is that an
716 * application calls xalloc in order to obtain an index in the iword and
721 * that is safe to use in the iword and pword arrays.
731 * The iword function provides access to an array of integers that can be
740 iword(int __ix) function in class:ios_base
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/bits/
H A Dios_base.h495 // 27.4.2.5 Members for iword/pword storage
503 // Only for failed iword/pword calls.
507 // The first 5 iword and pword slots are reserved for internal use.
709 * index for the iword and pword functions. The expectation is that an
710 * application calls xalloc in order to obtain an index in the iword and
715 * that is safe to use in the iword and pword arrays.
725 * The iword function provides access to an array of integers that can be
734 iword(int __ix) function in class:std::ios_base
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/sim/sh/
H A Dinterp.c843 #define Delay_Slot(TEMPPC) iword = RIAT (TEMPPC); in_delay_slot = 1; goto top;
2045 register unsigned int iword = RIAT (insn_ptr); local
2054 fprintf (stderr, "PC: %08x, insn: %04x\n", PH2T (insn_ptr), iword);

Completed in 139 milliseconds