Searched defs:sb (Results 101 - 125 of 447) sorted by relevance

1234567891011>>

/external/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.arithmetic/
H A Dunsigned_short.pass.cpp62 testbuf<char> sb; local
63 std::ostream os(&sb);
66 assert(sb.str() == "0");
69 testbuf<char> sb; local
70 std::ostream os(&sb);
73 assert(sb.str() == "10");
76 testbuf<char> sb; local
77 std::ostream os(&sb);
81 assert(sb.str() == "fff6");
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.formatted/ostream.inserters.character/
H A DCharT.pass.cpp63 testbuf<wchar_t> sb; local
64 std::wostream os(&sb);
67 assert(sb.str() == L"a");
70 testbuf<wchar_t> sb; local
71 std::wostream os(&sb);
75 assert(sb.str() == L" a");
79 testbuf<wchar_t> sb; local
80 std::wostream os(&sb);
85 assert(sb.str() == L"a ");
H A DCharT_pointer.pass.cpp63 testbuf<wchar_t> sb; local
64 std::wostream os(&sb);
67 assert(sb.str() == L"123");
70 testbuf<wchar_t> sb; local
71 std::wostream os(&sb);
75 assert(sb.str() == L" 123");
79 testbuf<wchar_t> sb; local
80 std::wostream os(&sb);
85 assert(sb.str() == L"123 ");
H A Dchar.pass.cpp63 testbuf<char> sb; local
64 std::ostream os(&sb);
67 assert(sb.str() == "a");
70 testbuf<char> sb; local
71 std::ostream os(&sb);
75 assert(sb.str() == " a");
79 testbuf<char> sb; local
80 std::ostream os(&sb);
85 assert(sb.str() == "a ");
H A Dchar_pointer.pass.cpp63 testbuf<char> sb; local
64 std::ostream os(&sb);
67 assert(sb.str() == "123");
70 testbuf<char> sb; local
71 std::ostream os(&sb);
75 assert(sb.str() == " 123");
79 testbuf<char> sb; local
80 std::ostream os(&sb);
85 assert(sb.str() == "123 ");
H A Dchar_to_wide.pass.cpp63 testbuf<wchar_t> sb; local
64 std::wostream os(&sb);
67 assert(sb.str() == L"a");
70 testbuf<wchar_t> sb; local
71 std::wostream os(&sb);
75 assert(sb.str() == L" a");
79 testbuf<wchar_t> sb; local
80 std::wostream os(&sb);
85 assert(sb.str() == L"a ");
H A Dchar_to_wide_pointer.pass.cpp63 testbuf<wchar_t> sb; local
64 std::wostream os(&sb);
67 assert(sb.str() == L"123");
70 testbuf<wchar_t> sb; local
71 std::wostream os(&sb);
75 assert(sb.str() == L" 123");
79 testbuf<wchar_t> sb; local
80 std::wostream os(&sb);
85 assert(sb.str() == L"123 ");
H A Dsigned_char.pass.cpp63 testbuf<char> sb; local
64 std::ostream os(&sb);
67 assert(sb.str() == "a");
70 testbuf<char> sb; local
71 std::ostream os(&sb);
75 assert(sb.str() == " a");
79 testbuf<char> sb; local
80 std::ostream os(&sb);
85 assert(sb.str() == "a ");
H A Dsigned_char_pointer.pass.cpp63 testbuf<char> sb; local
64 std::ostream os(&sb);
67 assert(sb.str() == "123");
70 testbuf<char> sb; local
71 std::ostream os(&sb);
75 assert(sb.str() == " 123");
79 testbuf<char> sb; local
80 std::ostream os(&sb);
85 assert(sb.str() == "123 ");
H A Dunsigned_char.pass.cpp63 testbuf<char> sb; local
64 std::ostream os(&sb);
67 assert(sb.str() == "a");
70 testbuf<char> sb; local
71 std::ostream os(&sb);
75 assert(sb.str() == " a");
79 testbuf<char> sb; local
80 std::ostream os(&sb);
85 assert(sb.str() == "a ");
H A Dunsigned_char_pointer.pass.cpp63 testbuf<char> sb; local
64 std::ostream os(&sb);
67 assert(sb.str() == "123");
70 testbuf<char> sb; local
71 std::ostream os(&sb);
75 assert(sb.str() == " 123");
79 testbuf<char> sb; local
80 std::ostream os(&sb);
85 assert(sb.str() == "123 ");
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.manip/
H A Dends.pass.cpp56 testbuf<char> sb; local
57 std::ostream os(&sb);
59 assert(sb.str().size() == 1);
60 assert(sb.str().back() == 0);
64 testbuf<wchar_t> sb; local
65 std::wostream os(&sb);
67 assert(sb.str().size() == 1);
68 assert(sb.str().back() == 0);
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.rvalue/
H A DCharT_pointer.pass.cpp62 testbuf<char> sb; local
63 std::ostream(&sb) << "testing...";
64 assert(sb.str() == "testing...");
67 testbuf<wchar_t> sb; local
68 std::wostream(&sb) << L"123";
69 assert(sb.str() == L"123");
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.seeks/
H A Dseekp.pass.cpp48 testbuf<char> sb; local
49 std::ostream os(&sb);
H A Dseekp2.pass.cpp50 testbuf<char> sb; local
51 std::ostream os(&sb);
H A Dtellp.pass.cpp49 testbuf<char> sb; local
50 std::ostream os(&sb);
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.unformatted/
H A Dput.pass.cpp61 testbuf<wchar_t> sb; local
62 std::wostream os(&sb);
65 assert(sb.str() == L"a");
69 testbuf<char> sb; local
70 std::ostream os(&sb);
73 assert(sb.str() == "a");
H A Dwrite.pass.cpp61 testbuf<wchar_t> sb; local
62 std::wostream os(&sb);
66 assert(sb.str() == s);
69 testbuf<char> sb; local
70 std::ostream os(&sb);
73 assert(sb.str() == s);
/external/chromium_org/third_party/ots/src/
H A Dmetrics.cc120 int16_t sb = 0; local
121 if (!table->ReadU16(&adv) || !table->ReadS16(&sb)) {
125 // Since so many fonts don't have proper value on |adv| and |sb|,
133 if (sb < header->min_sb1) {
134 OTS_WARNING("bad sb: %d < %d", sb, header->min_sb1);
135 sb = header->min_sb1;
138 metrics->entries.push_back(std::make_pair(adv, sb));
143 int16_t sb; local
144 if (!table->ReadS16(&sb)) {
[all...]
/external/compiler-rt/lib/builtins/
H A Dmulodi4.c43 di_int sb = b >> (N - 1); local
44 di_int abs_b = (b ^ sb) - sb;
47 if (sa == sb)
H A Dmulosi4.c43 si_int sb = b >> (N - 1); local
44 si_int abs_b = (b ^ sb) - sb;
47 if (sa == sb)
H A Dmuloti4.c45 ti_int sb = b >> (N - 1); local
46 ti_int abs_b = (b ^ sb) - sb;
49 if (sa == sb)
/external/e2fsprogs/e2fsck/
H A Dquota.c52 struct ext2_super_block *sb = ctx->fs->super; local
59 !(sb->s_feature_ro_compat & EXT4_FEATURE_RO_COMPAT_QUOTA))
62 pctx.ino = sb->s_usr_quota_inum;
63 if (sb->s_usr_quota_inum &&
64 (sb->s_usr_quota_inum != EXT4_USR_QUOTA_INO) &&
66 move_quota_inode(fs, sb->s_usr_quota_inum, EXT4_USR_QUOTA_INO,
68 sb->s_usr_quota_inum = EXT4_USR_QUOTA_INO;
71 pctx.ino = sb->s_grp_quota_inum;
72 if (sb->s_grp_quota_inum &&
73 (sb
[all...]
/external/e2fsprogs/lib/ext2fs/
H A Dtst_super_size.c21 struct sb_struct sb; variable in typeref:struct:sb_struct
27 #define check_field(x, s) cur_offset = do_field(#x, s, sizeof(sb.x), \
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dfilecap.c45 const struct stat *sb,
49 if (S_ISREG(sb->st_mode) == 0)
44 check_file(const char *fpath, const struct stat *sb, int typeflag_unused __attribute__ ((unused)), struct FTW *s_unused __attribute__ ((unused))) argument

Completed in 238 milliseconds

1234567891011>>