Searched defs:sb (Results 51 - 75 of 447) sorted by relevance

1234567891011>>

/external/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
H A Dunitbuf.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
H A Duppercase.pass.cpp24 testbuf sb; local
25 std::ios ios(&sb);
/external/qemu/distrib/ext4_utils/src/
H A Dext4_sb.c21 int ext4_parse_sb(struct ext4_super_block *sb, struct fs_info *info) argument
25 if (sb->s_magic != EXT4_SUPER_MAGIC)
28 if ((sb->s_state & EXT4_VALID_FS) != EXT4_VALID_FS)
31 info->block_size = 1024 << sb->s_log_block_size;
32 info->blocks_per_group = sb->s_blocks_per_group;
33 info->inodes_per_group = sb->s_inodes_per_group;
34 info->inode_size = sb->s_inode_size;
35 info->inodes = sb->s_inodes_count;
36 info->feat_ro_compat = sb->s_feature_ro_compat;
37 info->feat_compat = sb
[all...]
/external/clang/test/CodeGen/
H A D2007-04-24-str-const.c13 sb(void) function
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.manip/
H A Dflush.pass.cpp45 testbuf<char> sb; local
46 std::ostream os(&sb);
52 testbuf<wchar_t> sb; local
53 std::wostream os(&sb);
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.unformatted/
H A Dflush.pass.cpp45 testbuf<char> sb; local
46 std::ostream os(&sb);
/external/libcxx/test/input.output/iostream.format/output.streams/ostream_sentry/
H A Ddestruct.pass.cpp46 testbuf1<char> sb; local
47 std::ostream os(&sb);
53 testbuf1<char> sb; local
54 std::ostream os(&sb);
61 testbuf1<char> sb; local
62 std::ostream os(&sb);
H A Dconstruct.pass.cpp45 testbuf1<char> sb; local
46 std::ostream os(&sb);
51 testbuf1<char> sb; local
52 std::ostream os(&sb);
/external/libcxx/test/algorithms/alg.nonmodifying/alg.find.first.of/
H A Dfind_first_of.pass.cpp27 const unsigned sb = sizeof(ib)/sizeof(ib[0]); local
31 forward_iterator<const int*>(ib + sb)) ==
H A Dfind_first_of_pred.pass.cpp29 const unsigned sb = sizeof(ib)/sizeof(ib[0]); local
33 forward_iterator<const int*>(ib + sb),
/external/libcxx/test/input.output/iostream.format/input.streams/iostreamclass/iostream.cons/
H A Dmove.pass.cpp34 test_iostream(testbuf<CharT>* sb) : base(sb) {} argument
46 testbuf<char> sb; local
47 test_iostream<char> is1(&sb);
49 assert(is1.rdbuf() == &sb);
62 testbuf<wchar_t> sb; local
63 test_iostream<wchar_t> is1(&sb);
67 assert(is1.rdbuf() == &sb);
/external/libcxx/test/input.output/iostream.format/input.streams/istream/istream.cons/
H A Dmove.pass.cpp34 test_istream(testbuf<CharT>* sb) : base(sb) {} argument
46 testbuf<char> sb; local
47 test_istream<char> is1(&sb);
49 assert(is1.rdbuf() == &sb);
62 testbuf<wchar_t> sb; local
63 test_istream<wchar_t> is1(&sb);
67 assert(is1.rdbuf() == &sb);
/external/libcxx/test/input.output/iostream.format/output.streams/ostream.cons/
H A Dmove.pass.cpp34 test_ostream(testbuf<CharT>* sb) : base(sb) {} argument
46 testbuf<char> sb; local
47 test_ostream<char> os1(&sb);
49 assert(os1.rdbuf() == &sb);
60 testbuf<wchar_t> sb; local
61 test_ostream<wchar_t> os1(&sb);
63 assert(os1.rdbuf() == &sb);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DStringBufferPool.java50 * @param sb Must be a non-null reference to a string buffer.
52 public synchronized static void free(FastStringBuffer sb) argument
57 sb.setLength(0);
58 m_stringBufPool.freeInstance(sb);
/external/compiler-rt/lib/builtins/
H A Dmulvdi3.c41 di_int sb = b >> (N - 1); local
42 di_int abs_b = (b ^ sb) - sb;
45 if (sa == sb)
H A Dmulvsi3.c41 si_int sb = b >> (N - 1); local
42 si_int abs_b = (b ^ sb) - sb;
45 if (sa == sb)
H A Dmulvti3.c43 ti_int sb = b >> (N - 1); local
44 ti_int abs_b = (b ^ sb) - sb;
47 if (sa == sb)
/external/e2fsprogs/ext2ed/
H A Dsuper_com.c149 struct ext2_super_block sb; local
151 sb=type_data.u.t_ext2_super_block;
153 type_data.u.t_ext2_super_block=sb;
/external/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/
H A Dreverse.pass.cpp34 const unsigned sb = sizeof(ib)/sizeof(ib[0]); local
35 std::reverse(Iter(ib), Iter(ib+sb));
/external/libcxx/test/algorithms/alg.nonmodifying/alg.search/
H A Dsearch_n.pass.cpp42 const unsigned sb = sizeof(ib)/sizeof(ib[0]); local
43 assert(std::search_n(Iter(ib), Iter(ib+sb), 0, 0) == Iter(ib));
44 assert(std::search_n(Iter(ib), Iter(ib+sb), 1, 0) == Iter(ib+0));
45 assert(std::search_n(Iter(ib), Iter(ib+sb), 2, 0) == Iter(ib+0));
46 assert(std::search_n(Iter(ib), Iter(ib+sb), 3, 0) == Iter(ib+sb));
47 assert(std::search_n(Iter(ib), Iter(ib+sb), sb, 0) == Iter(ib+sb));
48 assert(std::search_n(Iter(ib), Iter(ib+sb),
[all...]
/external/libcxx/test/algorithms/alg.sorting/alg.set.operations/includes/
H A Dincludes.pass.cpp30 const unsigned sb = sizeof(ib)/sizeof(ib[0]); local
41 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(ib), Iter2(ib+sb)));
42 assert(!std::includes(Iter1(ib), Iter1(ib+sb), Iter2(ia), Iter2(ia+sa)));
H A Dincludes_comp.pass.cpp31 const unsigned sb = sizeof(ib)/sizeof(ib[0]); local
42 assert(std::includes(Iter1(ia), Iter1(ia+sa), Iter2(ib), Iter2(ib+sb), std::less<int>()));
43 assert(!std::includes(Iter1(ib), Iter1(ib+sb), Iter2(ia), Iter2(ia+sa), std::less<int>()));
/external/libcxx/test/algorithms/alg.sorting/alg.set.operations/set.intersection/
H A Dset_intersection.pass.cpp33 const int sb = sizeof(ib)/sizeof(ib[0]); local
38 Iter2(ib), Iter2(ib+sb), OutIter(ic));
41 ce = std::set_intersection(Iter1(ib), Iter1(ib+sb),
H A Dset_intersection_comp.pass.cpp35 const int sb = sizeof(ib)/sizeof(ib[0]); local
40 Iter2(ib), Iter2(ib+sb), OutIter(ic), std::less<int>());
43 ce = std::set_intersection(Iter1(ib), Iter1(ib+sb),
/external/libcxx/test/algorithms/alg.sorting/alg.set.operations/set.symmetric.difference/
H A Dset_symmetric_difference.pass.cpp34 const int sb = sizeof(ib)/sizeof(ib[0]); local
39 Iter2(ib), Iter2(ib+sb), OutIter(ic));
42 ce = std::set_symmetric_difference(Iter1(ib), Iter1(ib+sb),

Completed in 221 milliseconds

1234567891011>>