HomeSort by relevance Sort by last modified time
    Searched defs:Code (Results 1 - 25 of 50) sorted by null

1 2

  /external/llvm/lib/DebugInfo/
DWARFAbbreviationDeclaration.h 22 uint32_t Code;
29 : Code(InvalidCode), Tag(0), HasChildren(0) {}
31 uint32_t getCode() const { return Code; }
44 bool extract(DataExtractor data, uint32_t* offset_ptr, uint32_t code);
45 bool isValid() const { return Code != 0 && Tag != 0; }
  /external/llvm/utils/TableGen/
StringMatcher.cpp 40 /// code to verify that CharNo and later are the same.
42 /// \return - True if control can leave the emitted code fragment.
50 // matching code.
54 // If the to-execute code has \n's in it, indent each subsequent line.
55 StringRef Code = Matches[0]->second;
57 std::pair<StringRef, StringRef> Split = Code.split('\n');
60 Code = Split.second;
61 while (!Code.empty()) {
62 Split = Code.split('\n');
64 Code = Split.second
    [all...]
DAGISelMatcherEmitter.cpp 10 // This file contains code to generate C++ code for a matcher.
28 // To reduce generated source code size.
162 // We need to encode the child and the offset of the failure code before
297 // We need to encode the opcode and the offset of the case code before
298 // emitting the case code. Handle this by buffering the output into a
624 // Emit the predicate code corresponding to this pattern.
627 assert(!PredFn.isAlwaysTrue() && "No code in this predicate");
690 const std::string &Code = Entry.second;
703 OS << Code << "\n }\n"
    [all...]
  /external/webkit/Source/WebCore/html/
MediaError.h 7 * 1. Redistributions of source code must retain the above copyright
38 enum Code { MEDIA_ERR_ABORTED = 1, MEDIA_ERR_NETWORK, MEDIA_ERR_DECODE, MEDIA_ERR_SRC_NOT_SUPPORTED };
40 static PassRefPtr<MediaError> create(Code code) { return adoptRef(new MediaError(code)); }
42 Code code() const { return m_code; } function in class:WebCore::MediaError
45 MediaError(Code code) : m_code(code) { }
    [all...]
  /dalvik/dx/src/com/android/dx/io/
Code.java 19 public final class Code {
28 public Code(int registersSize, int insSize, int outsSize, int debugInfoOffset,
  /external/llvm/lib/MC/
MCELFStreamer.cpp 336 SmallString<256> Code;
337 raw_svector_ostream VecOS(Code);
349 DF->getContents().append(Code.begin(), Code.end());
MCMachOStreamer.cpp 136 // FIXME: Cleanup this code, these bits should be emitted based on semantic
227 // FIXME: Cleanup this code, these bits should be emitted based on semantic
367 SmallString<256> Code;
368 raw_svector_ostream VecOS(Code);
377 DF->getContents().append(Code.begin(), Code.end());
MCObjectStreamer.cpp 190 SmallString<128> Code;
191 raw_svector_ostream VecOS(Code);
194 IF->getCode().append(Code.begin(), Code.end());
MCPureStreamer.cpp 201 SmallString<256> Code;
202 raw_svector_ostream VecOS(Code);
206 IF->getCode() = Code;
214 SmallString<256> Code;
215 raw_svector_ostream VecOS(Code);
224 DF->getContents().append(Code.begin(), Code.end());
MCAssembler.cpp 702 SmallString<256> Code;
703 raw_svector_ostream VecOS(Code);
709 IF.getCode() = Code;
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 94 unsigned Code = MI->getOperand(OpNo).getImm();
96 switch ((PPC::Predicate)Code) {
113 if (Code == PPC::PRED_ALWAYS) return;
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTest.cpp 35 void *Code;
41 void *Code;
53 void *Code, size_t Size,
55 FunctionEmittedEvent Event = {NextIndex++, &F, Code, Size, Details};
106 EXPECT_EQ(F1_addr, Listener.EmittedEvents[0].Code);
113 EXPECT_EQ(F2_addr, Listener.EmittedEvents[1].Code);
119 EXPECT_EQ(F1_addr, Listener.FreedEvents[0].Code);
122 EXPECT_EQ(F2_addr, Listener.FreedEvents[1].Code);
159 EXPECT_EQ(F1_addr, Listener1.EmittedEvents[0].Code);
165 EXPECT_EQ(F2_addr, Listener1.FreedEvents[0].Code);
    [all...]
  /external/valgrind/main/coregrind/m_initimg/
simple_huffman.c 14 * - Maximum tree depth of 32 (the coder aborts if any code exceeds a
73 UInt Code;
191 sym[k].Code = 0;
225 UInt code, UInt bits, UInt first,
237 /* Store code info in symbol array */
238 sym[first].Code = code;
272 _Huffman_MakeTree( sym, stream, (code<<1)+0, bits+1,
294 _Huffman_MakeTree( sym, stream, (code<<1)+1, bits+1,
310 huff_bitstream_t *stream, UInt code, UInt bits
455 UInt bits, delta_bits, new_bits, code; local
    [all...]
  /external/llvm/include/llvm/MC/
MCStreamer.h 1 //===- MCStreamer.h - High-level Streaming Machine Code Output --*- C++ -*-===//
40 /// MCStreamer - Streaming machine code generation interface. This interface
78 /// Indicator of whether the previous data-or-code indicator was for
79 /// code or not. Used to determine when we need to emit a new indicator.
82 Code,
161 /// emitting code to.
169 /// emitting code to.
204 /// SwitchSection - Set the current section where code is being emitted to
218 /// SwitchSectionNoChange - Set the current section where code is being
266 /// EmitCodeRegion - Emit a label that marks the beginning of a code
    [all...]
MCAssembler.h 160 // object with just the MCInst and a code size, then we should just change
166 /// Code - Binary data for the currently encoded instruction.
167 SmallString<8> Code;
184 SmallVectorImpl<char> &getCode() { return Code; }
185 const SmallVectorImpl<char> &getCode() const { return Code; }
187 unsigned getInstSize() const { return Code.size(); }
690 // FIXME: We really would like this in target specific code rather than
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 392 bool Code = false;
398 if (CodeID != "code")
399 return Error(startLoc, "expected @code");
400 Code = true;
408 getStreamer().EmitWin64EHPushFrame(Code);
446 // violation so this validation code is disabled.
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 58 cl::desc("Do not print per-code histogram"));
116 /// GetCodeName - Return a symbolic code name if known, otherwise return
304 /// CodeFreq - Keep track of the number of times we see each code.
372 // Read the code for this record.
413 unsigned Code = Stream.ReadRecord(AbbrevID, Record, BlobStart, BlobLen);
417 // Increment the # occurrences of this code.
418 if (BlockStats.CodeFreq.size() <= Code)
419 BlockStats.CodeFreq.resize(Code+1);
420 BlockStats.CodeFreq[Code].NumInstances++;
421 BlockStats.CodeFreq[Code].TotalBits +
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 135 // CurCodeSize - This is the declared size of code values used for the current
361 /// ReadSubBlockID - Having read the ENTER_SUBBLOCK code, read the BlockID for
372 // don't care what code widths are used inside of it.
485 unsigned Code = ReadVBR(6);
489 return Code;
541 unsigned Code = (unsigned)Vals[0];
543 return Code;
589 unsigned Code = ReadCode();
590 if (Code == bitc::END_BLOCK)
592 if (Code == bitc::ENTER_SUBBLOCK)
    [all...]
  /external/llvm/lib/TableGen/
TGLexer.h 45 Bit, Bits, Class, Code, Dag, Def, Defm, Field, In, Int, Let, List,
107 /// LexToken - Read the next token and return its code.
  /dalvik/dx/src/com/android/dx/gen/
Code.java 19 import com.android.dx.rop.code.BasicBlockList;
20 import com.android.dx.rop.code.Insn;
21 import com.android.dx.rop.code.PlainCstInsn;
22 import com.android.dx.rop.code.PlainInsn;
23 import com.android.dx.rop.code.RegisterSpecList;
24 import com.android.dx.rop.code.Rop;
25 import static com.android.dx.rop.code.Rop.BRANCH_GOTO;
26 import static com.android.dx.rop.code.Rop.BRANCH_NONE;
27 import static com.android.dx.rop.code.Rop.BRANCH_RETURN;
28 import com.android.dx.rop.code.Rops
    [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 40 serialization::DeclCode Code;
191 Code = serialization::DECL_TYPEDEF;
197 Code = serialization::DECL_TYPEALIAS;
243 Code = serialization::DECL_ENUM;
265 Code = serialization::DECL_RECORD;
280 Code = serialization::DECL_ENUM_CONSTANT;
386 Code = serialization::DECL_FUNCTION;
433 Code = serialization::DECL_OBJC_METHOD;
440 // Abstract class (no need to define a stable serialization::DECL code).
478 Code = serialization::DECL_OBJC_INTERFACE
    [all...]
ASTWriterStmt.cpp 32 serialization::StmtCode Code;
63 Code = serialization::STMT_NULL;
74 Code = serialization::STMT_COMPOUND;
90 Code = serialization::STMT_CASE;
98 Code = serialization::STMT_DEFAULT;
106 Code = serialization::STMT_LABEL;
117 Code = serialization::STMT_IF;
130 Code = serialization::STMT_SWITCH;
139 Code = serialization::STMT_WHILE;
149 Code = serialization::STMT_DO
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
deflate.h 20 the crc code when it is not needed. For shared libraries, gzip encoding
31 /* number of length codes, not counting the special END_BLOCK code */
37 /* number of Literal or Length codes, including the END_BLOCK code */
61 /* Data structure describing a single value and its code string. */
65 ush code; /* bit string */ member in union:ct_data_s::__anon9850
74 #define Code fc.code
82 int max_code; /* largest code with non zero frequency */
229 * example a binary file with poorly compressible code followed by
239 /* Buffer for distances. To simplify the code, d_buf and l_buf hav
    [all...]
  /external/v8/tools/
ll_prof.py 8 # * Redistributions of source code must retain the above copyright
80 class Code(object):
81 """Code object."""
86 self.id = Code._id
87 Code._id += 1
180 filename = options.log + ".code"
192 """Group of adjacent code objects."""
214 def Add(self, code):
215 self.code_objects.append(code)
217 def Remove(self, code)
    [all...]
  /external/zlib/
deflate.h 20 the crc code when it is not needed. For shared libraries, gzip encoding
31 /* number of length codes, not counting the special END_BLOCK code */
37 /* number of Literal or Length codes, including the END_BLOCK code */
61 /* Data structure describing a single value and its code string. */
65 ush code; /* bit string */ member in union:ct_data_s::__anon14463
74 #define Code fc.code
82 int max_code; /* largest code with non zero frequency */
229 * example a binary file with poorly compressible code followed by
239 /* Buffer for distances. To simplify the code, d_buf and l_buf hav
    [all...]

Completed in 562 milliseconds

1 2