HomeSort by relevance Sort by last modified time
    Searched refs:Code (Results 101 - 125 of 727) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/lzma/CPP/7zip/Compress/
Lzma2Encoder.h 25 STDMETHOD(Code)(ISequentialInStream *inStream, ISequentialOutStream *outStream,
LzmaEncoder.h 25 STDMETHOD(Code)(ISequentialInStream *inStream, ISequentialOutStream *outStream,
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction52c.java 9 * * Redistributions of source code must retain the above copyright
32 package org.jf.dexlib.Code.Format;
34 import org.jf.dexlib.Code.Instruction;
35 import org.jf.dexlib.Code.Opcode;
36 import org.jf.dexlib.Code.TwoRegisterInstruction;
Instruction21c.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.InstructionWithReference;
33 import org.jf.dexlib.Code.Opcode;
34 import org.jf.dexlib.Code.SingleRegisterInstruction;
Instruction35ms.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.OdexedInvokeVirtual;
34 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.*;
Instruction3rc.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.InstructionWithReference;
33 import org.jf.dexlib.Code.Opcode;
34 import org.jf.dexlib.Code.RegisterRangeInstruction;
42 import static org.jf.dexlib.Code.Opcode.*;
  /external/chromium_org/v8/src/arm/
codegen-arm.h 6 // * Redistributions of source code must retain the above copyright
56 // Allocate and install the code.
57 static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm,
58 Code::Flags flags,
61 // Print the code after compiling it.
62 static void PrintCode(Handle<Code> code, CompilationInfo* info);
84 // Generates the code for handling different string types and loading the
  /external/chromium_org/v8/src/ia32/
codegen-ia32.h 6 // * Redistributions of source code must retain the above copyright
48 // Allocate and install the code.
49 static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm,
50 Code::Flags flags,
53 // Print the code after compiling it.
54 static void PrintCode(Handle<Code> code, CompilationInfo* info);
77 // Generates the code for handling different string types and loading the
  /external/chromium_org/v8/src/mips/
codegen-mips.h 6 // * Redistributions of source code must retain the above copyright
58 // Allocate and install the code.
59 static Handle<Code> MakeCodeEpilogue(MacroAssembler* masm,
60 Code::Flags flags,
63 // Print the code after compiling it.
64 static void PrintCode(Handle<Code> code, CompilationInfo* info);
86 // Generates the code for handling different string types and loading the
  /external/lzma/C/
Ppmd7Dec.c 3 This code is based on PPMd var.H (2001): Dmitry Shkarin : Public domain */
12 p->Code = 0;
17 p->Code = (p->Code << 8) | p->Stream->Read((void *)p->Stream);
18 return (p->Code < 0xFFFFFFFF);
24 return (p->Code) / (p->Range /= total);
31 p->Code = (p->Code << 8) | p->Stream->Read((void *)p->Stream);
35 p->Code = (p->Code << 8) | p->Stream->Read((void *)p->Stream);
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
InstructionMethodItemFactory.java 9 * 1. Redistributions of source code must retain the above copyright
32 import org.jf.dexlib.Code.Format.*;
33 import org.jf.dexlib.Code.Instruction;
34 import org.jf.dexlib.Code.OffsetInstruction;
UnresolvedOdexInstructionMethodItem.java 9 * 1. Redistributions of source code must retain the above copyright
32 import org.jf.dexlib.Code.Format.UnresolvedOdexInstruction;
  /external/smack/src/org/xbill/DNS/
EDNSOption.java 16 public static class Code {
17 private Code() {}
30 codes.setPrefix("CODE");
38 * Converts an EDNS Option Code into its textual representation
41 string(int code) {
42 return codes.getText(code);
46 * Converts a textual representation of an EDNS Option Code into its
48 * @param s The textual representation of the option code
49 * @return The option code, or -1 on error.
57 private final int code; field in class:EDNSOption
118 int code, length; local
    [all...]
  /external/chromium_org/v8/src/
codegen.cc 6 // * Redistributions of source code must retain the above copyright
78 PrintF("[generating %s code for %s function: ", kind, ftype);
103 Handle<Code> CodeGenerator::MakeCodeEpilogue(MacroAssembler* masm,
104 Code::Flags flags,
108 // Allocate and install the code.
111 Code::ExtractKindFromFlags(flags) == Code::OPTIMIZED_FUNCTION ||
114 Handle<Code> code = local
117 if (!code.is_null())
    [all...]
disassembler.cc 6 // * Redistributions of source code must retain the above copyright
30 #include "code-stubs.h"
62 explicit V8NameConverter(Code* code) : code_(code) {}
65 Code* code() const { return code_; } function in class:v8::internal::V8NameConverter
67 Code* code_;
82 // print as code offset, if it seems reasonable
94 // The V8NameConverter is used for well known code, so we can "safely
237 Code* code = Code::GetCodeFromTargetAddress(relocinfo.target_address()); local
    [all...]
  /external/v8/src/
ic.cc 6 // * Redistributions of source code must retain the above copyright
52 // computed from the original code - not the patched code. Let
53 // these cases fall through to the unreachable code below.
64 Code* new_target) {
75 Code* apply_builtin = isolate->builtins()->builtin(
85 Code::GetKeyedAccessGrowMode(new_target->extra_ic_state()) ==
114 // To improve the performance of the (much used) IC code, we unfold
115 // a few levels of the stack frame iteration code. This yields a
150 // Find the function on the stack and both the active code for th
154 Code* code = shared->code(); local
269 Code* code = Code::cast(isolate()->heap()->FindCodeObject(addr)); local
701 Handle<Code> code; local
774 Handle<Code> code = isolate()->stub_cache()->ComputeCallArguments( local
779 Handle<Code> code = isolate()->stub_cache()->ComputeCallMegamorphic( local
1047 Handle<Code> code = compiler.CompileLoadPolymorphic( local
1085 Handle<Code> code = local
1097 Handle<Code> code = local
1110 Handle<Code> code = local
1411 Handle<Code> code; local
1707 Handle<Code> code = compiler.CompileStorePolymorphic( local
1859 Handle<Code> code; local
2290 Handle<Code> code = stub.GetCode(); local
2366 Handle<Code> code = stub.GetCode(); local
2547 Handle<Code> code = stub.GetCode(); local
    [all...]
code-stubs.cc 6 // * Redistributions of source code must retain the above copyright
31 #include "code-stubs.h"
40 bool CodeStub::FindCodeInCache(Code** code_out) {
44 *code_out = Code::cast(heap->code_stubs()->ValueAt(index));
52 // Update the static counter each time a new code stub is generated.
58 // Generate the code for the stub.
75 void CodeStub::RecordCodeGeneration(Code* code, MacroAssembler* masm) {
76 code->set_major_key(MajorKey());
80 PROFILE(isolate, CodeCreateEvent(Logger::STUB_TAG, code, *name))
103 Code* code; local
    [all...]
  /external/llvm/lib/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...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
InlineMethodResolver.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.OdexedInvokeInline;
32 import org.jf.dexlib.Code.OdexedInvokeVirtual;
34 import static org.jf.dexlib.Code.Analysis.DeodexUtil.Static;
35 import static org.jf.dexlib.Code.Analysis.DeodexUtil.Virtual;
36 import static org.jf.dexlib.Code.Analysis.DeodexUtil.Direct;
  /external/chromium_org/tools/json_schema_compiler/
cpp_util.py 2 # Use of this source code is governed by a BSD-style license that can be
5 """Utilies and constants specific to Chromium C++ code.
8 from code import Code
16 // Use of this source code is governed by a BSD-style license that can be
38 """Returns the C++ code for retrieving a fundamental type from a
102 c = Code()
110 c = Code()
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBit.cs 92 if (rangeDecoder.Code < newBound)
98 rangeDecoder.Code = (rangeDecoder.Code << 8) | (byte)rangeDecoder.Stream.ReadByte();
106 rangeDecoder.Code -= newBound;
110 rangeDecoder.Code = (rangeDecoder.Code << 8) | (byte)rangeDecoder.Stream.ReadByte();
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PostInstructionRegisterInfoMethodItem.java 9 * 1. Redistributions of source code must retain the above copyright
35 import org.jf.dexlib.Code.Analysis.AnalyzedInstruction;
36 import org.jf.dexlib.Code.Analysis.MethodAnalyzer;
37 import org.jf.dexlib.Code.Analysis.RegisterType;
  /external/v8/test/cctest/
test-assembler-arm.cc 6 // * Redistributions of source code must retain the above copyright
69 Object* code = HEAP->CreateCode( variable
71 Code::ComputeFlags(Code::STUB),
73 CHECK(code->IsCode());
75 Code::cast(code)->Print();
77 F2 f = FUNCTION_CAST<F2>(Code::cast(code)->entry());
106 Object* code = HEAP->CreateCode variable
152 Object* code = HEAP->CreateCode( variable
200 Object* code = HEAP->CreateCode( variable
315 Object* code = HEAP->CreateCode( variable
375 Object* code = HEAP->CreateCode( variable
410 Object* code = HEAP->CreateCode( variable
486 Object* code = HEAP->CreateCode( local
672 Object* code = HEAP->CreateCode( variable
787 Object* code = HEAP->CreateCode( variable
898 Object* code = HEAP->CreateCode( variable
995 Object* code = HEAP->CreateCode( variable
    [all...]
  /external/giflib/
gif_hash.h 16 #define HT_MAX_KEY 8191 /* 13bits - 1, maximal code possible */
17 #define HT_MAX_CODE 4095 /* Biggest code possible in 12 bits. */
19 /* The 32 bits of the long are divided into two parts for the key & code: */
20 /* 1. The code is 12 bits as our compression algorithm is limited to 12bits */
21 /* 2. The key is 12 bits Prefix code + 8 bit new char or 20 bits. */
22 /* The key is the upper 20 bits. The code is the lower 12. */
34 void _InsertHashTable(GifHashTableType *HashTable, uint32_t Key, int Code);

Completed in 696 milliseconds

1 2 3 45 6 7 8 91011>>