Home
last modified time | relevance | path

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

12

/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/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.cpp83 std::unique_ptr<tool_output_file> Out in WriteOutputFile() local
91 if (Force || !CheckBitcodeOutputToConsole(Out->os(), true)) { in WriteOutputFile()
92 slang::writeBitcode(Out->os(), *M, in WriteOutputFile()
97 if (!Out->os().has_error()) { in WriteOutputFile()
99 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.cpp83 GeneratedFile *Out, const RSContext *RSContext,
1397 void genReduceResultRangeCheck(GeneratedFile &Out, const char *InVal) { in genReduceResultRangeCheck() argument
1398 Out.indent() << "if (" << InVal << " < 0)\n"; in genReduceResultRangeCheck()
1399 Out.indent() << " throw new RSRuntimeException(\"Result is not representible in Java\");\n"; in genReduceResultRangeCheck()
2463 const char *RenderScriptVar, GeneratedFile *Out, const RSContext *RSContext, in RSReflectionJavaElementBuilder() argument
2466 mRenderScriptVar(RenderScriptVar), mOut(Out), mPaddingFieldIndex(1), in RSReflectionJavaElementBuilder()
/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/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
DomxVCM4P10_InvTransformResidualAndAdd.c84 OMX_S16 In[16], Out[16]; in omxVCM4P10_InvTransformResidualAndAdd() local
117 armVCM4P10_TransformResidual4x4 (Out, In); in omxVCM4P10_InvTransformResidualAndAdd()
124 Value = (OMX_S32) Out [j * 4 + i] + pSrcPred [j * iSrcPredStep + i]; in omxVCM4P10_InvTransformResidualAndAdd()
/frameworks/base/docs/html/design/patterns/
Dfullscreen.jd138 <h2 id="lightsout">What About Lights Out Mode?</h2>
141 Before Android 4.4, the design guideline was to use Lights Out mode, a mode
148 Replace previous implementations of Lights Out mode with the Lean Back or
149 Immersive approaches. Continue to use Lights Out mode for implementations of
Dbuttons.jd138 <h2 id="lightsout">What About Lights Out Mode?</h2>
141 Before Android 4.4, the design guideline was to use Lights Out mode, a mode
148 Replace previous implementations of Lights Out mode with the Lean Back or
149 Immersive approaches. Continue to use Lights Out mode for implementations of
/frameworks/base/libs/hwui/
DTreeInfo.h109 struct Out { struct
/frameworks/compile/slang/BitWriter_3_2/
DReaderWriter_3_2.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_2_9/
DReaderWriter_2_9.h56 void WriteBitcodeToFile(const llvm::Module *M, llvm::raw_ostream &Out);
/frameworks/base/docs/html/training/tv/tif/
Dindex.jd19 <h2>Try It Out</h2>
Dtvinput.jd24 <h2>Try It Out</h2>
Dchannel.jd17 <h2>Try It Out</h2>
Dui.jd18 <h2>Try It Out</h2>
/frameworks/compile/libbcc/lib/Renderscript/
DRSKernelExpand.cpp510 SmallGEPIndices Out(I32Args.size()); in GEPHelper() local
512 std::transform(I32Args.begin(), I32Args.end(), Out.begin(), in GEPHelper()
514 return Out; in GEPHelper()
/frameworks/base/services/core/java/com/android/server/
DEventLogTags.logtags162 # Out of memory for surfaces.
/frameworks/support/
Dbuild.gradle303 println ' 2) Out of date prebuilts in prebuilts/sdk'
/frameworks/base/docs/html/preview/features/
Dsecurity-config.jd21 <li><a href="#CleartextTrafficPermitted">Opting Out of Cleartext Traffic</a></li>
242 <h2 id="CleartextTrafficPermitted">Opting Out of Cleartext Traffic</h2>
/frameworks/base/docs/html/training/connect-devices-wirelessly/
Dwifi-direct.jd233 // Out with the old, in with the new.

12