/third_party/boost/boost/sort/common/ |
D | file_vector.hpp | 48 std::ofstream ofile; in generate_file() local 49 ofile.open(filename, std::ios_base::out | std::ios_base::binary | in generate_file() 51 if (ofile.bad()) in generate_file() 60 ofile.write((char *) &Aux, 8); in generate_file() 62 ofile.close(); in generate_file() 121 std::ofstream ofile; in write_file_uint64() local 122 ofile.open(filename, in write_file_uint64() 125 if (ofile.bad()) in write_file_uint64() 131 ofile.write((char *) &(V[i]), 8); in write_file_uint64() 133 ofile.close(); in write_file_uint64() [all …]
|
/third_party/gettext/gettext-tools/examples/hello-c++-kde/admin/ |
D | compile | 34 ofile= 42 ofile=$2 44 case "$ofile" in 48 args="$args -o $ofile" 49 ofile= 64 if test -z "$ofile" || test -z "$cfile"; then 95 mv "$cofile" "$ofile"
|
/third_party/ltp/testcases/network/stress/ns-tools/ |
D | check_netem | 63 ofile=`mktemp -p $TMPDIR` 64 $LTP_RSH $RHOST "PATH=/sbin:/usr/sbin:$PATH tc qdisc add dev eth0 root netem help" >$ofile 2>&1 65 grep -l "Usage:.*netem" $ofile >/dev/null 2>&1 68 rm -f $ofile 71 rm -f $ofile
|
/third_party/boost/libs/sort/example/ |
D | keyplusdatasample.cpp | 83 std::ofstream ofile; in main() local 85 ofile.open("standard_sort_out.txt", std::ios_base::out | in main() 88 ofile.open("boost_sort_out.txt", std::ios_base::out | in main() 90 if (ofile.good()) { in main() 92 ofile.write(reinterpret_cast<char *>(&(array[v].key)), in main() 94 ofile << array[v].data; in main() 96 ofile.close(); in main()
|
D | charstringsample.cpp | 81 std::ofstream ofile; in main() local 83 ofile.open("standard_sort_out.txt", std::ios_base::out | in main() 86 ofile.open("boost_sort_out.txt", std::ios_base::out | in main() 88 if (ofile.good()) { in main() 90 ofile << array[u].a << "\n"; in main() 91 ofile.close(); in main()
|
D | sample.cpp | 66 std::ofstream ofile; in main() local 68 ofile.open("standard_sort_out.txt", std::ios_base::out | in main() 71 ofile.open("boost_sort_out.txt", std::ios_base::out | in main() 73 if (ofile.good()) { in main() 75 ofile.write(reinterpret_cast<char *>(&(array[v])), sizeof(array[v]) ); in main() 77 ofile.close(); in main()
|
D | int64.cpp | 71 std::ofstream ofile; in main() local 73 ofile.open("standard_sort_out.txt", std::ios_base::out | in main() 76 ofile.open("boost_sort_out.txt", std::ios_base::out | in main() 78 if (ofile.good()) { in main() 80 ofile.write(reinterpret_cast<char *>(&(array[v])), sizeof(array[v]) ); in main() 82 ofile.close(); in main()
|
D | rightshiftsample.cpp | 77 std::ofstream ofile; in main() local 79 ofile.open("standard_sort_out.txt", std::ios_base::out | in main() 82 ofile.open("boost_sort_out.txt", std::ios_base::out | in main() 84 if (ofile.good()) { in main() 86 ofile.write(reinterpret_cast<char *>(&(array[v])), sizeof(array[v]) ); in main() 88 ofile.close(); in main()
|
D | alreadysorted.cpp | 70 std::ofstream ofile; in main() local 72 ofile.open("standard_sort_out.txt", std::ios_base::out | in main() 75 ofile.open("boost_sort_out.txt", std::ios_base::out | in main() 77 if (ofile.good()) { in main() 79 ofile.write(reinterpret_cast<char *>(&(array[v])), sizeof(array[v]) ); in main() 81 ofile.close(); in main()
|
D | randomgen.cpp | 37 std::ofstream ofile; in main() local 38 ofile.open("input.txt", std::ios_base::out | std::ios_base::binary | in main() 40 if (ofile.bad()) { in main() 65 ofile.write(reinterpret_cast<char *>(pNumbers), uDivideFactor * 4 ); in main() 67 ofile.close(); in main()
|
D | floatfunctorsample.cpp | 115 std::ofstream ofile; in main() local 117 ofile.open("standard_sort_out.txt", std::ios_base::out | in main() 120 ofile.open("boost_sort_out.txt", std::ios_base::out | in main() 122 if (ofile.good()) { in main() 124 ofile.write(reinterpret_cast<char *>(&(array[v].key)), in main() 126 ofile << array[v].data; in main() 128 ofile.close(); in main()
|
D | floatsample.cpp | 78 std::ofstream ofile; in main() local 80 ofile.open("standard_sort_out.txt", std::ios_base::out | in main() 83 ofile.open("boost_sort_out.txt", std::ios_base::out | in main() 85 if (ofile.good()) { in main() 87 ofile.write(reinterpret_cast<char *>(&(array[v])), sizeof(array[v]) ); in main() 89 ofile.close(); in main()
|
D | shiftfloatsample.cpp | 86 std::ofstream ofile; in main() local 88 ofile.open("standard_sort_out.txt", std::ios_base::out | in main() 91 ofile.open("boost_sort_out.txt", std::ios_base::out | in main() 93 if (ofile.good()) { in main() 95 ofile.write(reinterpret_cast<char *>(&(array[v])), sizeof(array[v]) ); in main() 97 ofile.close(); in main()
|
D | reverseintsample.cpp | 80 std::ofstream ofile; in main() local 82 ofile.open("standard_sort_out.txt", std::ios_base::out | in main() 85 ofile.open("boost_sort_out.txt", std::ios_base::out | in main() 87 if (ofile.good()) { in main() 89 ofile.write(reinterpret_cast<char *>(&(array[v])), sizeof(array[v])); in main() 91 ofile.close(); in main()
|
D | mostlysorted.cpp | 79 std::ofstream ofile; in main() local 81 ofile.open("standard_sort_out.txt", std::ios_base::out | in main() 84 ofile.open("boost_sort_out.txt", std::ios_base::out | in main() 86 if (ofile.good()) { in main() 88 ofile.write(reinterpret_cast<char *>(&(array[v])), sizeof(array[v]) ); in main() 90 ofile.close(); in main()
|
D | boostrandomgen.cpp | 33 std::ofstream ofile; in main() local 34 ofile.open("input.txt", std::ios_base::out | std::ios_base::binary | in main() 36 if (ofile.bad()) { in main() 65 ofile.write(reinterpret_cast<char *>(&(result[0])), result.size() * in main() 67 ofile.close(); in main()
|
D | double.cpp | 84 std::ofstream ofile; in main() local 86 ofile.open("standard_sort_out.txt", std::ios_base::out | in main() 89 ofile.open("boost_sort_out.txt", std::ios_base::out | in main() 91 if (ofile.good()) { in main() 93 ofile.write(reinterpret_cast<char *>(&(array[v])), sizeof(array[v]) ); in main() 95 ofile.close(); in main()
|
/third_party/libpng/ |
D | compile | 264 ofile= 279 ofile=$2 301 if test -z "$ofile" || test -z "$cfile"; then 332 test "$cofile" = "$ofile" || mv "$cofile" "$ofile" 334 test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
|
/third_party/eudev/ |
D | compile | 264 ofile= 279 ofile=$2 301 if test -z "$ofile" || test -z "$cfile"; then 332 test "$cofile" = "$ofile" || mv "$cofile" "$ofile" 334 test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
|
/third_party/mtdev/config-aux/ |
D | compile | 264 ofile= 279 ofile=$2 301 if test -z "$ofile" || test -z "$cfile"; then 332 test "$cofile" = "$ofile" || mv "$cofile" "$ofile" 334 test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
|
/third_party/skia/third_party/externals/microhttpd/ |
D | compile | 263 ofile= 278 ofile=$2 300 if test -z "$ofile" || test -z "$cfile"; then 331 test "$cofile" = "$ofile" || mv "$cofile" "$ofile" 333 test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
|
/third_party/libffi/ |
D | compile | 264 ofile= 279 ofile=$2 301 if test -z "$ofile" || test -z "$cfile"; then 332 test "$cofile" = "$ofile" || mv "$cofile" "$ofile" 334 test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
|
/third_party/elfio/ |
D | compile | 264 ofile= 279 ofile=$2 301 if test -z "$ofile" || test -z "$cfile"; then 332 test "$cofile" = "$ofile" || mv "$cofile" "$ofile" 334 test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
|
/third_party/libevdev/build-aux/ |
D | compile | 264 ofile= 279 ofile=$2 301 if test -z "$ofile" || test -z "$cfile"; then 332 test "$cofile" = "$ofile" || mv "$cofile" "$ofile" 334 test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
|
/third_party/node/deps/cares/ |
D | compile | 264 ofile= 279 ofile=$2 301 if test -z "$ofile" || test -z "$cfile"; then 332 test "$cofile" = "$ofile" || mv "$cofile" "$ofile" 334 test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
|