Home
last modified time | relevance | path

Searched refs:Out (Results 1 – 25 of 34) sorted by relevance

12

/frameworks/base/tools/incident_report/
Dprinter.cpp29 Out::Out(int fd) in Out() function in Out
38 Out::~Out() in ~Out()
44 Out::reallocate(int size) in reallocate()
59 Out::printf(const char* format, ...) in printf()
102 Out::indent() in indent()
109 Out::dedent() in dedent()
117 Out::print_indent() in print_indent()
Dprinter.h22 class Out
25 Out(int fd);
26 ~Out();
Dmain.cpp41 static void print_message(Out* out, Descriptor const* descriptor, GenericMessage const* message);
143 print_value(Out* out, FieldDescriptor const* field, GenericMessage::Node const& node) in print_value()
221 print_message(Out* out, Descriptor const* descriptor, GenericMessage const* message) in print_message()
582 Out out(outFd); in main()
/frameworks/compile/mclinker/lib/Target/AArch64/
DAArch64PLT.cpp121 uint32_t* Out = NULL; in applyPLT1() local
124 Out = static_cast<uint32_t*>(malloc(AArch64PLT1::EntrySize)); in applyPLT1()
125 memcpy(Out, aarch64_plt1, AArch64PLT1::EntrySize); in applyPLT1()
129 Out[0] = helper_reencode_adr_imm(Out[0], imm >> 12); in applyPLT1()
131 Out[1] = helper_reencode_add_imm( in applyPLT1()
132 Out[1], helper_get_page_offset(GOTEntryAddress) >> 3); in applyPLT1()
134 Out[2] = helper_reencode_add_imm(Out[2], in applyPLT1()
137 plt1->setValue(reinterpret_cast<unsigned char*>(Out)); in applyPLT1()
/frameworks/support/work/workmanager/src/main/java/androidx/work/impl/utils/
DLiveDataUtils.java49 public static <In, Out> LiveData<Out> dedupedMappedLiveDataFor( in dedupedMappedLiveDataFor()
51 @NonNull final Function<In, Out> mappingMethod) { in dedupedMappedLiveDataFor()
52 final MediatorLiveData<Out> outputLiveData = new MediatorLiveData<>(); in dedupedMappedLiveDataFor()
60 Out newOutput = mappingMethod.apply(input); in dedupedMappedLiveDataFor()
61 Out previousOutput = outputLiveData.getValue(); in dedupedMappedLiveDataFor()
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
DGSMPhoneTest.java.broken100 assertNotNull("Message Time Out", msg);
166 assertNotNull("Message Time Out", msg);
201 assertNotNull("Message Time Out", mGSMTestHandler.waitForMessage(ANY_MESSAGE));
229 assertNotNull("Message Time Out", mGSMTestHandler.waitForMessage(ANY_MESSAGE));
255 assertNotNull("Message Time Out", msg);
306 assertNotNull("Message Time Out", msg);
340 assertNotNull("Message Time Out", mGSMTestHandler.waitForMessage(ANY_MESSAGE));
376 assertNotNull("Message Time Out", msg);
435 assertNotNull("Message Time Out", mGSMTestHandler.waitForMessage(ANY_MESSAGE));
462 assertNotNull("Message Time Out", mGSMTestHandler.waitForMessage(ANY_MESSAGE));
[all …]
/frameworks/compile/mclinker/lib/Target/ARM/
DARMPLT.cpp115 uint32_t* Out = NULL; in applyPLT1() local
118 Out = static_cast<uint32_t*>(malloc(ARMPLT1::EntrySize)); in applyPLT1()
120 if (!Out) in applyPLT1()
127 Out[0] = arm_plt1[0] | ((Offset >> 20) & 0xFF); in applyPLT1()
128 Out[1] = arm_plt1[1] | ((Offset >> 12) & 0xFF); in applyPLT1()
129 Out[2] = arm_plt1[2] | (Offset & 0xFFF); in applyPLT1()
131 plt1->setValue(reinterpret_cast<unsigned char*>(Out)); in applyPLT1()
/frameworks/compile/slang/
Dllvm-rs-as.cpp89 std::unique_ptr<tool_output_file> Out in WriteOutputFile() local
97 if (Force || !CheckBitcodeOutputToConsole(Out->os(), true)) { in WriteOutputFile()
98 slang::writeBitcode(Out->os(), *M, in WriteOutputFile()
103 if (!Out->os().has_error()) { in WriteOutputFile()
105 Out->keep(); in WriteOutputFile()
Dslang_bitcode_gen.cpp32 void writeBitcode(llvm::raw_ostream &Out, in writeBitcode() argument
99 Out.write(reinterpret_cast<char*>(&Wrapper), ActualWrapperLen); in writeBitcode()
100 Out << Bitcode.str(); in writeBitcode()
Dslang_bitcode_gen.h31 void writeBitcode(llvm::raw_ostream &Out,
Dslang_rs_reflection.cpp80 GeneratedFile &Out, bool Parens);
87 GeneratedFile *Out, const RSContext *RSContext,
426 GeneratedFile &Out, bool Parens) { in genCheck64BitInternal() argument
430 Out << '('; in genCheck64BitInternal()
431 Out << "RenderScript.getPointerSize() == 8"; in genCheck64BitInternal()
433 Out << ')'; in genCheck64BitInternal()
436 Out << "sIs64Bit"; in genCheck64BitInternal()
1602 void genReduceResultRangeCheck(GeneratedFile &Out, const char *InVal) { in genReduceResultRangeCheck() argument
1603 Out.indent() << "if (" << InVal << " < 0)\n"; in genReduceResultRangeCheck()
1604 Out.indent() << " throw new RSRuntimeException(\"Result is not representible in Java\");\n"; in genReduceResultRangeCheck()
[all …]
/frameworks/compile/libbcc/tools/bcc_strip_attr/
Dbcc_strip_attr.cpp134 tool_output_file Out(OutputFilename.c_str(), EC, in main() local
147 Out.os() << *M; in main()
148 } else if (!CheckBitcodeOutputToConsole(Out.os(), true)) { in main()
149 WriteBitcodeToFile(M.get(), Out.os()); in main()
152 Out.keep(); in main()
/frameworks/compile/mclinker/lib/Target/Hexagon/
DHexagonPLT.cpp140 uint32_t* Out = NULL; in applyPLT1() local
143 Out = static_cast<uint32_t*>(malloc(HexagonPLT1::EntrySize)); in applyPLT1()
145 if (!Out) in applyPLT1()
148 memcpy(Out, hexagon_plt1, plt1->size()); in applyPLT1()
150 int32_t* dest = reinterpret_cast<int32_t*>(Out); in applyPLT1()
160 plt1->setValue(reinterpret_cast<unsigned char*>(Out)); in applyPLT1()
/frameworks/base/libs/hwui/pipeline/skia/
DSkiaDisplayList.cpp96 nsecs_t timeTilNextFrame = TreeInfo::Out::kNoAnimatedImageDelay; in prepareListAndChildren()
103 timeTilNextFrame != TreeInfo::Out::kNoAnimatedImageDelay) { in prepareListAndChildren()
105 if (delay == TreeInfo::Out::kNoAnimatedImageDelay || timeTilNextFrame < delay) { in prepareListAndChildren()
/frameworks/ml/nn/tools/test_generator/tests/P_float/
Daddfloat.mod.py7 Model().Add(i1, i2).Add(i3).Out(o)
/frameworks/ml/nn/tools/test_generator/tests/P_vts_operands/
Daddfloat.mod.py11 Model().Add(i1, i2).Add(i3).Out(o)
/frameworks/base/libs/hwui/
DTreeInfo.h96 struct Out { struct
/frameworks/compile/slang/BitWriter_2_9/
DReaderWriter_2_9.h56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
/frameworks/compile/slang/BitWriter_2_9_func/
DReaderWriter_2_9_func.h56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
/frameworks/compile/slang/BitWriter_3_2/
DReaderWriter_3_2.h56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
/frameworks/support/
DREADME.md11 ## Checking Out the Code
/frameworks/ml/nn/tools/test_generator/
Dtest_generator.py541 def Out(self, o): member in Model
552 ret = Model.Out(self, o)
/frameworks/compile/libbcc/lib/
DRSKernelExpand.cpp533 SmallGEPIndices Out(I32Args.size()); in GEPHelper() local
535 std::transform(I32Args.begin(), I32Args.end(), Out.begin(), in GEPHelper()
537 return Out; in GEPHelper()
/frameworks/base/services/core/java/com/android/server/
DEventLogTags.logtags174 # Out of memory for surfaces.
/frameworks/base/libs/hwui/renderthread/
DCanvasContext.cpp411 info.out.animatedImageDelay != TreeInfo::Out::kNoAnimatedImageDelay) { in prepareTree()

12