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

/haiku-buildtools/gcc/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 );
/haiku-buildtools/binutils/opcodes/
H A Dmoxie-dis.c50 unsigned short iword; local
57 iword = bfd_getb16 (buffer);
59 iword = bfd_getl16 (buffer);
62 if ((iword & (1<<15)) == 0)
65 opcode = &moxie_form1_opc_info[iword >> 8];
73 reg_names[OP_A(iword)]);
77 reg_names[OP_A(iword)],
78 reg_names[OP_B(iword)]);
90 reg_names[OP_A(iword)], imm);
123 reg_names[OP_A(iword)], reg_name
[all...]
H A Dft32-dis.c41 unsigned int iword; local
49 iword = bfd_getl32 (buffer);
52 if ((iword & oo->mask) == oo->bits)
60 fpr (stream, "%08x %s", iword, oo->name);
63 fpr (stream, ".%c ", "bsl"[(iword >> FT32_FLD_DW_BIT) & 3]);
79 imm = ((iword >> FT32_FLD_CB_BIT) & ((1 << FT32_FLD_CB_SIZ) - 1)) << 4;
80 imm |= ((iword >> FT32_FLD_CV_BIT) & ((1 << FT32_FLD_CV_SIZ) - 1));
101 imm = (iword >> FT32_FLD_CB_BIT) & ((1 << FT32_FLD_CB_SIZ) - 1);
105 fpr(stream, "$r%d", (iword >> FT32_FLD_R_D_BIT) & 0x1f);
108 imm = (iword >> FT32_FLD_CR_BI
[all...]
/haiku-buildtools/gcc/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 );
/haiku-buildtools/gcc/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 );
/haiku-buildtools/gcc/libstdc++-v3/testsuite/27_io/ios_base/storage/
H A D3.cc37 d.iword(0) = 1;
H A D2.cc92 // iword
93 ios.iword(1) = 1;
94 VERIFY( ios.iword(1) == 1 );
98 l = ios.iword(max);
112 VERIFY( ios.iword(1) == 1 );
118 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);
/haiku-buildtools/binutils/gas/config/
H A Dtc-moxie.c163 unsigned short iword = 0; local
197 iword = (1<<15) | (opcode->opcode << 12);
204 iword += (reg << 8);
218 iword = opcode->opcode << 8;
228 iword += (dest << 4) + src;
236 iword = opcode->opcode << 8;
248 iword += (regnum << 4);
270 iword = opcode->opcode << 8;
288 iword = opcode->opcode << 8;
295 iword
[all...]
/haiku-buildtools/legacy/gcc/libio/
H A Dioextend.cc57 // NOTE: This implementation of ios::iword and ios::pword assumes
106 long& ios::iword(int index) function in class:ios
116 long ios::iword(int index) const function in class:ios
H A Dstreambuf.h96 void *_arrays; /* Support for ios::iword and ios::pword. */
239 long& iword(int);
240 long iword(int) const;
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dios_base.h566 // 27.4.2.5 Members for iword/pword storage
574 // Only for failed iword/pword calls.
578 // The first 5 iword and pword slots are reserved for internal use.
784 * index for the iword and pword functions. The expectation is that an
785 * application calls xalloc in order to obtain an index in the iword and
790 * that is safe to use in the iword and pword arrays.
800 * The iword function provides access to an array of integers that can be
809 iword(int __ix) function in class:io_errc::ios_base

Completed in 120 milliseconds