HomeSort by relevance Sort by last modified time
    Searched defs:Code (Results 76 - 100 of 139) sorted by null

1 2 34 5 6

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
AnalyzedInstruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Analysis;
31 import org.jf.dexlib.Code.*;
78 * is one that the analyzer never reaches. This occurs either with natural "dead code" - code that simply has no
79 * code path that can ever reach it, or code that follows an odexed instruction that can't be deodexed.
DeodexUtil.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Analysis;
RegisterType.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Analysis;
37 import static org.jf.dexlib.Code.Analysis.ClassPath.ClassDef;
116 //example if the register's type is an Integer on one incomming code path, but is a Reference type on another
117 //incomming code path. There is no register type that can hold either an Integer or a Reference.
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
ArrayDataPseudoInstruction.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Format;
31 import org.jf.dexlib.Code.Instruction;
32 import org.jf.dexlib.Code.Opcode;
Instruction35c.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Format;
31 import org.jf.dexlib.Code.FiveRegisterInstruction;
32 import org.jf.dexlib.Code.Instruction;
33 import org.jf.dexlib.Code.InstructionWithReference;
34 import org.jf.dexlib.Code.Opcode;
42 import static org.jf.dexlib.Code.Opcode.*;
Format.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Format;
31 import org.jf.dexlib.Code.Instruction;
  /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/clang/tools/libclang/
CXLoadedDiagnostic.cpp 192 void reportBad(enum CXLoadDiag_Error code, llvm::StringRef err) {
194 *error = code;
326 unsigned Code = Stream.ReadCode();
330 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
347 switch ((llvm::bitc::FixedAbbrevIDs)Code) {
370 blockOrRecordID = Code;
  /external/llvm/lib/MC/
MCELFStreamer.cpp 374 SmallString<256> Code;
375 raw_svector_ostream VecOS(Code);
410 CEIF->getContents().append(Code.begin(), Code.end());
434 DF->getContents().append(Code.begin(), Code.end());
MCObjectStreamer.cpp 222 SmallString<128> Code;
223 raw_svector_ostream VecOS(Code);
226 IF->getContents().append(Code.begin(), Code.end());
WinCOFFStreamer.cpp 87 SmallString<256> Code;
88 raw_svector_ostream VecOS(Code);
97 DF->getContents().append(Code.begin(), Code.end());
MCAsmStreamer.cpp 252 virtual void EmitWin64EHPushFrame(bool Code);
700 assert(Directive && "Invalid size for machine code value!");
766 default: llvm_unreachable("Invalid size for machine code value!");
793 default: llvm_unreachable("Invalid size for machine code value!");
    [all...]
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 410 bool Code = false;
416 if (CodeID != "code")
417 return Error(startLoc, "expected @code");
418 Code = true;
426 getStreamer().EmitWin64EHPushFrame(Code);
464 // violation so this validation code is disabled.
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 57 cl::desc("Do not print per-code histogram"));
115 /// GetCodeName - Return a symbolic code name if known, otherwise return
304 /// CodeFreq - Keep track of the number of times we see each code.
418 unsigned Code = Stream.readRecord(Entry.ID, Record, &Blob);
420 // Increment the # occurrences of this code.
421 if (BlockStats.CodeFreq.size() <= Code)
422 BlockStats.CodeFreq.resize(Code+1);
423 BlockStats.CodeFreq[Code].NumInstances++;
424 BlockStats.CodeFreq[Code].TotalBits +=
427 BlockStats.CodeFreq[Code].NumAbbrev++
    [all...]
  /external/llvm/utils/TableGen/
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/llvm/lib/TableGen/
TGLexer.h 46 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List,
112 /// LexToken - Read the next token and return its code.
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 42 serialization::DeclCode Code;
201 Code = serialization::DECL_TYPEDEF;
206 Code = serialization::DECL_TYPEALIAS;
260 Code = serialization::DECL_ENUM;
284 Code = serialization::DECL_RECORD;
299 Code = serialization::DECL_ENUM_CONSTANT;
407 Code = serialization::DECL_FUNCTION;
456 Code = serialization::DECL_OBJC_METHOD;
463 // Abstract class (no need to define a stable serialization::DECL code).
510 Code = serialization::DECL_OBJC_INTERFACE
    [all...]
GlobalModuleIndex.cpp 617 unsigned Code = InStream.readRecord(Entry.ID, Record, &Blob);
620 if (State == ControlBlock && Code == IMPORTS) {
654 if (State == ASTBlock && Code == IDENTIFIER_TABLE && Record[0] > 0) {
  /external/clang/unittests/ASTMatchers/
ASTMatchersTest.cpp     [all...]
  /external/dexmaker/src/main/java/com/google/dexmaker/
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/llvm/include/llvm/Bitcode/
BitstreamReader.h 186 // CurCodeSize - This is the declared size of code values used for the current
286 unsigned Code = ReadCode();
287 if (Code == bitc::END_BLOCK) {
294 if (Code == bitc::ENTER_SUBBLOCK)
297 if (Code == bitc::DEFINE_ABBREV &&
305 return BitstreamEntry::getRecord(Code);
467 /// ReadSubBlockID - Having read the ENTER_SUBBLOCK code, read the BlockID for
478 // don't care what code widths are used inside of it.
  /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::__anon13543
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
192 """Group of adjacent code objects."""
214 def Add(self, code):
215 self.code_objects.append(code)
217 def Remove(self, code):
218 self.code_objects.remove(code)
    [all...]
  /external/zlib/src/
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 */
64 /* Data structure describing a single value and its code string. */
68 ush code; /* bit string */ member in union:ct_data_s::__anon18672
77 #define Code fc.code
85 int max_code; /* largest code with non zero frequency */
232 * example a binary file with poorly compressible code followed by
242 /* Buffer for distances. To simplify the code, d_buf and l_buf hav
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITEmitter.cpp 1 //===-- JITEmitter.cpp - Write machine code to executable memory ----------===//
11 // write machine code to memory and remember where relocatable values are.
57 STATISTIC(NumBytes, "Number of bytes of machine code compiled");
69 // JIT lazy compilation code.
342 /// Information about emitted code, which is passed to the
349 void *Code; // The address the function's code actually starts at.
351 EmittedCode() : FunctionBody(0), Code(0), ExceptionTable(0) {}
651 // If we have already code generated the function, just return the address.
695 // JITEmitter code
    [all...]

Completed in 2880 milliseconds

1 2 34 5 6