HomeSort by relevance Sort by last modified time
    Searched refs:out (Results 26 - 50 of 17003) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/fio/lib/
output_buffer.c 11 void buf_output_init(struct buf_output *out)
13 out->max_buflen = 0;
14 out->buflen = 0;
15 out->buf = NULL;
18 void buf_output_free(struct buf_output *out)
20 free(out->buf);
23 size_t buf_output_add(struct buf_output *out, const char *buf, size_t len)
25 if (out->max_buflen - out->buflen < len) {
26 size_t need = len - (out->max_buflen - out->buflen)
    [all...]
  /test/vts/compilation_tools/vtsc/code_gen/driver/
HalHidlCodeGen.cpp 37 Formatter& out, const ComponentSpecificationMessage& message,
39 out << "\n";
44 out << "::android::hardware::Return<"
47 out << "::android::hardware::Return<void> ";
52 out << full_method_name << "(\n";
53 out.indent();
56 out << GetCppVariableType(arg, IsConstType(arg.type())) << " arg" << index
58 if (index != (api.arg_size() - 1)) out << ",\n";
61 out << ") {\n";
63 out << (api.arg_size() != 0 ? ", " : "")
    [all...]
DriverCodeGenBase.cpp 42 Formatter& out, const ComponentSpecificationMessage& message) {
67 out << "#ifndef __VTS_DRIVER__" << component_name_token << "__\n";
68 out << "#define __VTS_DRIVER__" << component_name_token << "__\n";
69 out << "\n";
71 out << "#undef LOG_TAG\n";
72 out << "#define LOG_TAG \"" << fuzzer_extended_class_name << "\"\n";
74 GenerateHeaderIncludeFiles(out, message, fuzzer_extended_class_name);
76 GenerateOpenNameSpaces(out, message);
77 GenerateClassHeader(out, message, fuzzer_extended_class_name);
78 out << "\n\n"
    [all...]
  /external/swiftshader/src/OpenGL/compiler/
intermOut.cpp 24 // 2. Print out a text based description of the tree.
97 TInfoSinkBase& out = sink; local
99 OutputTreeText(out, node, mDepth);
102 case EOpAssign: out << "move second child to first child"; break;
103 case EOpInitialize: out << "initialize first child with second child"; break;
104 case EOpAddAssign: out << "add second child into first child"; break;
105 case EOpSubAssign: out << "subtract second child into first child"; break;
106 case EOpMulAssign: out << "multiply second child into first child"; break;
107 case EOpVectorTimesMatrixAssign: out << "matrix mult second child into first child"; break;
108 case EOpVectorTimesScalarAssign: out << "vector scale second child into first child"; break
161 TInfoSinkBase& out = sink; local
247 TInfoSinkBase& out = sink; local
337 TInfoSinkBase& out = sink; local
370 TInfoSinkBase& out = sink; local
407 TInfoSinkBase& out = sink; local
445 TInfoSinkBase& out = sink; local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
intermOut.cpp 33 // ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
86 // 2. Print out a text based description of the tree.
142 TInfoSink& out = infoSink; local
144 OutputTreeText(out, node, depth);
147 case EOpAssign: out.debug << "move second child to first child"; break;
148 case EOpAddAssign: out.debug << "add second child into first child"; break;
149 case EOpSubAssign: out.debug << "subtract second child into first child"; break;
150 case EOpMulAssign: out.debug << "multiply second child into first child"; break;
151 case EOpVectorTimesMatrixAssign: out.debug << "matrix mult second child into first child"; break;
152 case EOpVectorTimesScalarAssign: out.debug << "vector scale second child into first child"; break
211 TInfoSink& out = infoSink; local
503 TInfoSink& out = infoSink; local
804 TInfoSink& out = infoSink; local
964 TInfoSink& out = infoSink; local
1002 TInfoSink& out = infoSink; local
1029 TInfoSink& out = infoSink; local
    [all...]
  /external/libcxx/test/std/strings/string.view/string.view.io/
stream_insert.pass.cpp 27 std::ostringstream out; local
29 out << sv;
30 assert(out.good());
31 assert(sv == out.str());
34 std::ostringstream out; local
37 out.width(12);
38 out << sv;
39 assert(out.good());
40 assert(" " + s == out.str());
43 std::wostringstream out; local
50 std::wostringstream out; local
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/string.view/string.view.io/
stream_insert.pass.cpp 27 std::ostringstream out; local
29 out << sv;
30 assert(out.good());
31 assert(sv == out.str());
34 std::ostringstream out; local
37 out.width(12);
38 out << sv;
39 assert(out.good());
40 assert(" " + s == out.str());
43 std::wostringstream out; local
50 std::wostringstream out; local
    [all...]
  /art/test/616-cha-interface-default/src-multidex/
Base.java 27 System.out.print("");
28 System.out.print("");
29 System.out.print("");
30 System.out.print("");
31 System.out.print("");
32 System.out.print("");
33 System.out.print("");
34 System.out.print("");
39 System.out.println(msg);
  /external/libopus/silk/
log2lin.c 24 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40 opus_int32 out, frac_Q7; local
48 out = silk_LSHIFT( 1, silk_RSHIFT( inLog_Q7, 7 ) );
52 out = silk_ADD_RSHIFT32( out, silk_MUL( out, silk_SMLAWB( frac_Q7, silk_SMULBB( frac_Q7, 128 - frac_Q7 ), -174 ) ), 7 );
55 out = silk_MLA( out, silk_RSHIFT( out, 7 ), silk_SMLAWB( frac_Q7, silk_SMULBB( frac_Q7, 128 - frac_Q7 ), -174 ) );
57 return out;
    [all...]
NSQ.h 25 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 opus_int32 out; local
41 out = silk_RSHIFT( order, 1 );
42 out = silk_SMLAWB( out, buf32[ 0 ], coef16[ 0 ] );
43 out = silk_SMLAWB( out, buf32[ -1 ], coef16[ 1 ] );
44 out = silk_SMLAWB( out, buf32[ -2 ], coef16[ 2 ] );
45 out = silk_SMLAWB( out, buf32[ -3 ], coef16[ 3 ] )
69 opus_int32 out; local
    [all...]
  /test/vts/compilation_tools/vtsc/code_gen/profiler/
HalHidlProfilerCodeGen.cpp 26 Formatter& out, const VariableSpecificationMessage& val,
28 out << arg_name << "->set_type(TYPE_SCALAR);\n";
29 out << arg_name << "->mutable_scalar_value()->set_" << val.scalar_type()
34 Formatter& out, const VariableSpecificationMessage&,
36 out << arg_name << "->set_type(TYPE_STRING);\n";
37 out << arg_name << "->mutable_string_value()->set_message"
39 out << arg_name << "->mutable_string_value()->set_length"
44 Formatter& out, const VariableSpecificationMessage& val,
46 out << arg_name << "->set_type(TYPE_ENUM);\n";
52 out << "profile__" << predefined_type << "(" << arg_name << ",
    [all...]
  /external/e2fsprogs/lib/uuid/
pack.c 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
42 unsigned char *out = ptr; local
45 out[3] = (unsigned char) tmp;
47 out[2] = (unsigned char) tmp;
49 out[1] = (unsigned char) tmp;
51 out[0] = (unsigned char) tmp;
54 out[5] = (unsigned char) tmp;
56 out[4] = (unsigned char) tmp;
59 out[7] = (unsigned char) tmp;
61 out[6] = (unsigned char) tmp
    [all...]
  /test/vts/compilation_tools/vtsc/code_gen/fuzzer/
FuzzerCodeGenBase.cpp 34 void FuzzerCodeGenBase::GenerateHeaderFile(Formatter & /* out */) {
38 void FuzzerCodeGenBase::GenerateSourceFile(Formatter &out) {
42 GenerateWarningComment(out);
43 GenerateSourceIncludeFiles(out);
44 GenerateUsingDeclaration(out);
45 GenerateOpenNameSpaces(out);
46 GenerateGlobalVars(out);
47 GenerateLLVMFuzzerInitialize(out);
48 GenerateLLVMFuzzerTestOneInput(out);
49 GenerateCloseNameSpaces(out);
    [all...]
HalHidlFuzzerCodeGen.cpp 31 void HalHidlFuzzerCodeGen::GenerateSourceIncludeFiles(Formatter &out) {
32 out << "#include <iostream>\n\n";
33 out << "#include \"FuncFuzzerUtils.h\"\n";
34 out << "#include <" << GetPackagePath(comp_spec_) << "/"
37 out << "\n";
40 void HalHidlFuzzerCodeGen::GenerateUsingDeclaration(Formatter &out) {
41 out << "using std::cerr;\n";
42 out << "using std::endl;\n";
43 out << "using std::string;\n\n";
49 out << "using namespace ::" << package_path << "::" << comp_version << ";\n"
    [all...]
  /external/v8/
genmakefiles.py 35 with open(filename, 'w') as out:
36 out.write(_makefileCommonHeader(module_name))
37 out.write('LOCAL_MODULE_CLASS := STATIC_LIBRARIES\n')
39 out.write('LOCAL_SRC_FILES := \\\n')
41 out.write(_makefileSources(sources))
43 out.write('LOCAL_C_INCLUDES := \\\n')
44 out.write('\t$(LOCAL_PATH)/src \\\n')
45 out.write('\t$(LOCAL_PATH)/include\n')
47 out.write('include $(BUILD_STATIC_LIBRARY)\n')
53 with open('Android.mkpeephole.mk', 'w') as out
    [all...]
  /art/test/071-dexfile-map-clean/src-ex/
Another.java 19 System.out.println("Another Instance");
  /art/test/091-override-package-private-method/src/
OverridePackagePrivateMethodSuper.java 19 System.out.println("OverridePackagePrivateMethodSuper");
  /art/test/127-checker-secondarydex/src/
Super.java 19 System.out.println("Super");
  /art/test/162-method-resolution/src/
Test1Base.java 19 System.out.println("Test1Base.foo()");
Test2Base.java 19 System.out.println("Test2Base.foo()");
Test2Interface.java 19 System.out.println("Test2Interface.foo()");
Test3Base.java 19 System.out.println("Test3Base.foo()");
Test3Interface.java 19 System.out.println("Test3Interface.foo()");
Test7Base.java 19 System.out.println("Test7Base.foo()");
Test7Interface.java 19 System.out.println("Test7Interface.foo()");

Completed in 2661 milliseconds

12 3 4 5 6 7 8 91011>>