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

12 3 4 5 6 7 8 910

  /external/clang/lib/AST/
TemplateBase.cpp 35 /// \param Out the raw_ostream instance to use for printing.
37 raw_ostream &Out) {
42 Out << (Val.getBoolValue() ? "true" : "false");
45 Out << ((Ch == '\'') ? "'\\" : "'");
46 Out.write_escaped(StringRef(&Ch, 1), /*UseHexEscapes=*/ true);
47 Out << "'";
49 Out << Val;
341 raw_ostream &Out) const {
344 Out << "<no value>";
350 getAsType().print(Out, SubPolicy)
    [all...]
VTableBuilder.cpp 123 void dump(raw_ostream &Out, BaseSubobject Base,
372 void FinalOverriders::dump(raw_ostream &Out, BaseSubobject Base,
397 dump(Out, BaseSubobject(BaseDecl, BaseOffset), VisitedVirtualBases);
400 Out << "Final overriders for (" << RD->getQualifiedNameAsString() << ", ";
401 Out << Base.getBaseOffset().getQuantity() << ")\n";
413 Out << " " << MD->getQualifiedNameAsString() << " - (";
414 Out << Overrider.Method->getQualifiedNameAsString();
415 Out << ", " << Overrider.Offset.getQuantity() << ')';
422 Out << " [ret-adj: ";
424 Out << Offset.VirtualBase->getQualifiedNameAsString() << " vbase, "
    [all...]
  /external/clang/lib/Serialization/
GeneratePCH.cpp 33 isysroot(isysroot.str()), Out(OS),
55 // Write the generated bitstream to "Out".
56 Out->write((char *)&Buffer.front(), Buffer.size());
59 Out->flush();
  /external/llvm/lib/Support/
Twine.cpp 26 void Twine::toVector(SmallVectorImpl<char> &Out) const {
27 raw_svector_ostream OS(Out);
31 StringRef Twine::toStringRef(SmallVectorImpl<char> &Out) const {
34 toVector(Out);
35 return StringRef(Out.data(), Out.size());
38 StringRef Twine::toNullTerminatedStringRef(SmallVectorImpl<char> &Out) const {
52 toVector(Out);
53 Out.push_back(0);
54 Out.pop_back()
    [all...]
ConvertUTFWrapper.cpp 84 bool convertUTF16ToUTF8String(ArrayRef<char> SrcBytes, std::string &Out) {
85 assert(Out.empty());
87 // Error out on an uneven byte count.
113 Out.resize(SrcBytes.size() * UNI_MAX_UTF8_BYTES_PER_CODE_POINT);
114 UTF8 *Dst = reinterpret_cast<UTF8 *>(&Out[0]);
115 UTF8 *DstEnd = Dst + Out.size();
122 Out.clear();
126 Out.resize(reinterpret_cast<char *>(Dst) - &Out[0]);
  /external/llvm/include/llvm/CodeGen/
EdgeBundles.h 41 /// getBundle - Return the ingoing (Out = false) or outgoing (Out = true)
43 unsigned getBundle(unsigned N, bool Out) const { return EC[2 * N + Out]; }
  /external/clang/lib/Frontend/
CacheTokens.cpp 80 void EmitData(raw_ostream& Out) {
85 ::Emit64(Out, UID.getFile());
86 ::Emit64(Out, UID.getDevice());
87 ::Emit64(Out, FE->getModificationTime());
88 ::Emit64(Out, FE->getSize());
92 ::Emit64(Out, Data->UniqueID.getFile());
93 ::Emit64(Out, Data->UniqueID.getDevice());
94 ::Emit64(Out, Data->ModTime);
95 ::Emit64(Out, Data->Size);
121 EmitKeyDataLength(raw_ostream& Out, PTHEntryKeyVariant V
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Tracer.cs 30 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
62 Console.Out.Write(" ");
64 Console.Out.WriteLine("> " + grammarFileName + " " + ruleName + " lookahead(1)=" + GetInputSymbol(1));
73 Console.Out.Write(" ");
75 Console.Out.WriteLine("< " + grammarFileName + " " + ruleName + " lookahead(1)=" + GetInputSymbol(1));
  /external/llvm/tools/llvm-mc/
Disassembler.h 37 raw_ostream &Out);
  /external/chromium_org/third_party/skia/include/core/
SkMath.h 179 template <typename In, typename Out>
180 inline void SkTDivMod(In numer, In denom, Out* div, Out* mod) {
189 *div = static_cast<Out>(d);
190 *mod = static_cast<Out>(numer-d*denom);
193 *div = static_cast<Out>(numer/denom);
194 *mod = static_cast<Out>(numer%denom);
  /external/skia/include/core/
SkMath.h 179 template <typename In, typename Out>
180 inline void SkTDivMod(In numer, In denom, Out* div, Out* mod) {
189 *div = static_cast<Out>(d);
190 *mod = static_cast<Out>(numer-d*denom);
193 *div = static_cast<Out>(numer/denom);
194 *mod = static_cast<Out>(numer%denom);
  /external/webrtc/src/common_audio/signal_processing/
resample.c 22 static void WebRtcSpl_32khzTo22khzIntToShort(const WebRtc_Word32 *In, WebRtc_Word16 *Out,
25 void WebRtcSpl_32khzTo22khzIntToInt(const WebRtc_Word32 *In, WebRtc_Word32 *Out,
45 void WebRtcSpl_Resample22khzTo16khz(const WebRtc_Word16* in, WebRtc_Word16* out,
55 // WebRtc_Word32 out[440/SUB_BLOCKS_22_16]
61 // WebRtc_Word32 out[320/SUB_BLOCKS_22_16]
85 // WebRtc_Word32 out[160/SUB_BLOCKS_22_16]
87 WebRtcSpl_DownBy2IntToShort(tmpmem, 320 / SUB_BLOCKS_22_16, out, state->S_32_16);
91 out += 160 / SUB_BLOCKS_22_16;
115 void WebRtcSpl_Resample16khzTo22khz(const WebRtc_Word16* in, WebRtc_Word16* out,
125 // WebRtc_Word32 out[320/SUB_BLOCKS_16_22
    [all...]
  /frameworks/compile/slang/
llvm-rs-as.cpp 90 OwningPtr<tool_output_file> Out
98 if (Force || !CheckBitcodeOutputToConsole(Out->os(), true)) {
101 llvm_2_9::WriteBitcodeToFile(M, Out->os());
104 llvm_2_9_func::WriteBitcodeToFile(M, Out->os());
107 llvm_3_2::WriteBitcodeToFile(M, Out->os());
110 llvm::WriteBitcodeToFile(M, Out->os());
116 Out->keep();
120 // Print a stack trace if we signal out.
  /external/llvm/tools/llvm-ar/
llvm-ar.cpp 279 // putMode - utility function for printing out the file mode when the 't'
296 // Implement the 't' operation. This function prints out just
590 static void print32BE(raw_fd_ostream &Out, unsigned Val) {
593 Out << V;
597 static void printRestOfMemberHeader(raw_fd_ostream &Out,
601 printWithSpacePadding(Out, ModTime.toEpochTime(), 12);
602 printWithSpacePadding(Out, UID, 6);
603 printWithSpacePadding(Out, GID, 6);
604 printWithSpacePadding(Out, format("%o", Perms), 8);
605 printWithSpacePadding(Out, Size, 10)
    [all...]
  /external/clang/include/clang/Basic/
OnDiskHashTable.h 32 inline void Emit8(raw_ostream& Out, uint32_t V) {
33 Out << (unsigned char)(V);
36 inline void Emit16(raw_ostream& Out, uint32_t V) {
37 Out << (unsigned char)(V);
38 Out << (unsigned char)(V >> 8);
42 inline void Emit24(raw_ostream& Out, uint32_t V) {
43 Out << (unsigned char)(V);
44 Out << (unsigned char)(V >> 8);
45 Out << (unsigned char)(V >> 16);
49 inline void Emit32(raw_ostream& Out, uint32_t V)
    [all...]
  /external/lzma/CPP/7zip/Compress/
BranchRegister.cpp 11 static void *CreateCodec ## x ## Out() { return (void *)(ICompressFilter *)(new C ## x ## _Encoder); }
19 #define METHOD_ITEM(x, id1, id2, name) { CreateCodec ## x, CreateCodec ## x ## Out, 0x03030000 + (id1 * 256) + id2, name, 1, true }
  /external/llvm/tools/llvm-as/
llvm-as.cpp 72 OwningPtr<tool_output_file> Out(new tool_output_file(
79 if (Force || !CheckBitcodeOutputToConsole(Out->os(), true))
80 WriteBitcodeToFile(M, Out->os());
83 Out->keep();
87 // Print a stack trace if we signal out.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_InvTransformResidualAndAdd.c 69 OMX_S16 In[16], Out[16];
102 armVCM4P10_TransformResidual4x4 (Out, In);
109 Value = (OMX_S32) Out [j * 4 + i] + pSrcPred [j * iSrcPredStep + i];
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 246 llvm::raw_svector_ostream Out(Str);
257 Out << clang_getCString(FName) << ":" << Line << ":";
260 Out << Column << ":";
279 Out << "{" << StartLine << ":" << StartColumn << "-"
284 Out << ":";
287 Out << " ";
294 case CXDiagnostic_Note: Out << "note: "; break;
295 case CXDiagnostic_Warning: Out << "warning: "; break;
296 case CXDiagnostic_Error: Out << "error: "; break;
297 case CXDiagnostic_Fatal: Out << "fatal error: "; break
    [all...]
  /packages/apps/Camera/jni/feature_stab/src/dbreg/
vp_motionmodel.c 60 Writing the formula out in closed form is unnecessarily complicated
90 int inv4Mat(const VP_MOTION* in, VP_MOTION* out)
102 if (((VP_MOTION *) NULL == in) || ((VP_MOTION *) NULL == out)) {
138 out->par[k]=(VP_PAR)outmat[i][j]; /*lint !e771*/
155 vp_invert_motion(const VP_MOTION* in,VP_MOTION* out)
164 It is SAFE to pass the same pointer as both the 'in' and 'out'
169 out - output inverted motion. If singular matrix uninitialized.
179 int vp_invert_motion(const VP_MOTION* in,VP_MOTION* out)
184 if (((VP_MOTION *) NULL == in) || ((VP_MOTION *) NULL == out)) {
192 if (inv4Mat(in,out)<0
    [all...]
  /packages/apps/Camera2/jni/feature_stab/src/dbreg/
vp_motionmodel.c 60 Writing the formula out in closed form is unnecessarily complicated
90 int inv4Mat(const VP_MOTION* in, VP_MOTION* out)
102 if (((VP_MOTION *) NULL == in) || ((VP_MOTION *) NULL == out)) {
138 out->par[k]=(VP_PAR)outmat[i][j]; /*lint !e771*/
155 vp_invert_motion(const VP_MOTION* in,VP_MOTION* out)
164 It is SAFE to pass the same pointer as both the 'in' and 'out'
169 out - output inverted motion. If singular matrix uninitialized.
179 int vp_invert_motion(const VP_MOTION* in,VP_MOTION* out)
184 if (((VP_MOTION *) NULL == in) || ((VP_MOTION *) NULL == out)) {
192 if (inv4Mat(in,out)<0
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
vp_motionmodel.c 60 Writing the formula out in closed form is unnecessarily complicated
90 int inv4Mat(const VP_MOTION* in, VP_MOTION* out)
102 if (((VP_MOTION *) NULL == in) || ((VP_MOTION *) NULL == out)) {
138 out->par[k]=(VP_PAR)outmat[i][j]; /*lint !e771*/
155 vp_invert_motion(const VP_MOTION* in,VP_MOTION* out)
164 It is SAFE to pass the same pointer as both the 'in' and 'out'
169 out - output inverted motion. If singular matrix uninitialized.
179 int vp_invert_motion(const VP_MOTION* in,VP_MOTION* out)
184 if (((VP_MOTION *) NULL == in) || ((VP_MOTION *) NULL == out)) {
192 if (inv4Mat(in,out)<0
    [all...]
  /external/llvm/lib/Target/ARM/
A15SDOptimizer.cpp 12 // out-of-order with appropriate forwarding. The ARM architecture allows VFP
183 // MI is known to be dead. Figure out what instructions
279 // Find the thing we're subreg copying out of - is it of the same
435 unsigned Out = MRI->createVirtualRegister(QPR ? &ARM::QPRRegClass :
441 Out)
445 return Out;
455 unsigned Out = MRI->createVirtualRegister(TRC);
459 TII->get(TargetOpcode::COPY), Out)
462 return Out;
471 unsigned Out = MRI->createVirtualRegister(&ARM::QPRRegClass)
    [all...]
  /external/clang/tools/diagtool/
ShowEnabledWarnings.cpp 85 int ShowEnabledWarnings::run(unsigned int argc, char **argv, raw_ostream &Out) {
135 // Print them all out.
139 Out << getCharForLevel(I->Level) << " ";
140 Out << I->Name;
142 Out << " [-W" << I->Flag << "]";
143 Out << '\n';
  /external/llvm/tools/llvm-link/
llvm-link.cpp 70 // Print a stack trace if we signal out.
109 tool_output_file Out(OutputFilename.c_str(), ErrorInfo, sys::fs::F_Binary);
122 Out.os() << *Composite;
123 } else if (Force || !CheckBitcodeOutputToConsole(Out.os(), true))
124 WriteBitcodeToFile(Composite.get(), Out.os());
127 Out.keep();

Completed in 546 milliseconds

12 3 4 5 6 7 8 910