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

<<11121314151617181920>>

  /external/v8/src/ia32/
builtins-ia32.cc 6 // * Redistributions of source code must retain the above copyright
99 // Try to allocate the object without transitioning into C code. If any of
100 // the preconditions is not met, the code bails out to the runtime call.
190 // and jump into the continuation code at any time from now on. Any
316 Handle<Code> code = local
319 __ InvokeCode(code, expected, expected, RelocInfo::CODE_TARGET,
424 // Invoke the code.
435 // context and the function left on the stack by the code
473 __ lea(eax, FieldOperand(eax, Code::kHeaderSize))
    [all...]
debug-ia32.cc 6 // * Redistributions of source code must retain the above copyright
46 // Patch the JS frame exit code with a debug break call. See
58 // Restore the JS frame exit code.
65 // A debug break in the frame exit code is identified by the JS frame exit code
157 // If this call did not replace a call but patched other code then there will
235 // Register state for CallFunctionStub (from code-stubs-ia32.cc).
244 // Register state for CallFunctionStub (from code-stubs-ia32.cc).
254 // Register state for CallConstructStub (from code-stubs-ia32.cc).
267 // Register state for CallConstructStub (from code-stubs-ia32.cc)
    [all...]
  /external/v8/src/x64/
builtins-x64.cc 6 // * Redistributions of source code must retain the above copyright
98 // Try to allocate the object without transitioning into C code. If any of
99 // the preconditions is not met, the code bails out to the runtime call.
194 // and jump into the continuation code at any time from now on. Any
321 Handle<Code> code = local
324 __ InvokeCode(code, expected, expected, RelocInfo::CODE_TARGET,
485 // Invoke the code.
497 // context and the function left on the stack by the code
538 __ lea(rax, FieldOperand(rax, Code::kHeaderSize))
    [all...]
  /external/v8/src/
spaces.cc 6 // * Redistributions of source code must retain the above copyright
205 // Code range is full or too fragmented.
309 // Code which is part of the code-range does not have its own VirtualMemory.
511 // Allocate executable memory either from code range or from the
705 // We are guarding code pages: the first OS page after the header
717 // We are guarding code pages: the first OS page after the header
724 // We are guarding code pages: the last OS page will be protected as
2430 Code* code = Code::cast(obj); local
2800 Code* code = Code::cast(obj); local
    [all...]
  /art/runtime/entrypoints/quick/
quick_invoke_entrypoints.cc 107 const DexFile::CodeItem* code = MethodHelper(caller_method).GetCodeItem(); local
108 CHECK_LT(dex_pc, code->insns_size_in_code_units_);
109 const Instruction* instr = Instruction::At(&code->insns_[dex_pc]);
110 Instruction::Code instr_code = instr->Opcode();
128 const void* code = method->GetEntryPointFromCompiledCode(); local
132 if (UNLIKELY(code == NULL)) {
134 LOG(FATAL) << "Code was NULL in method: " << PrettyMethod(method)
140 uint64_t code_uint = reinterpret_cast<uint32_t>(code);
162 const void* code = method->GetEntryPointFromCompiledCode(); local
166 if (UNLIKELY(code == NULL))
    [all...]
  /external/chromium_org/third_party/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::__anon16436
74 #define Code fc.code
82 int max_code; /* largest code with non zero frequency */
234 * example a binary file with poorly compressible code followed by
244 /* Buffer for distances. To simplify the code, d_buf and l_buf hav
    [all...]
  /external/chromium_org/v8/src/ia32/
debug-ia32.cc 6 // * Redistributions of source code must retain the above copyright
46 // Patch the JS frame exit code with a debug break call. See
58 // Restore the JS frame exit code.
65 // A debug break in the frame exit code is identified by the JS frame exit code
159 bool taken = reg.code() == esi.code();
174 ASSERT(unused_reg.code() != -1);
185 // If this call did not replace a call but patched other code then there will
272 // Register state for CallFunctionStub (from code-stubs-ia32.cc)
    [all...]
  /external/chromium_org/v8/src/
safepoint-table.cc 6 // * Redistributions of source code must retain the above copyright
61 SafepointTable::SafepointTable(Code* code) {
62 ASSERT(code->is_crankshafted());
63 code_ = code;
64 Address header = code->instruction_start() + code->safepoint_table_offset();
120 registers_->Add(reg.code(), zone);
  /external/chromium_org/v8/src/x64/
debug-x64.cc 6 // * Redistributions of source code must retain the above copyright
47 // Patch the JS frame exit code with a debug break call. See
58 // Restore the JS frame exit code.
65 // A debug break in the frame exit code is identified by the JS frame exit code
175 // If this call did not replace a call but patched other code then there will
263 // Register state for CallFunctionStub (from code-stubs-x64.cc).
272 // Register state for CallFunctionStub (from code-stubs-x64.cc).
282 // Register state for CallConstructStub (from code-stubs-x64.cc).
294 // Register state for CallConstructStub (from code-stubs-x64.cc)
    [all...]
  /external/libffi/src/powerpc/
darwin.S 198 .byte 0x1 ; uleb128 0x1; CIE Code Alignment Factor
darwin_closure.S 122 /* Each of the ret_typeX code fragments has to be exactly 16 bytes long
257 .byte 0x1 ; uleb128 0x1; CIE Code Alignment Factor
linux64.S 149 .uleb128 0x1 # CIE Code Alignment Factor
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 208 /// the code generator.
436 const char *Code) const;
  /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.
56 STATISTIC(NumBytes, "Number of bytes of machine code compiled");
68 // JIT lazy compilation code.
338 /// Information about emitted code, which is passed to the
345 void *Code; // The address the function's code actually starts at.
347 EmittedCode() : FunctionBody(0), Code(0), ExceptionTable(0) {}
640 // If we have already code generated the function, just return the address.
684 // JITEmitter code
    [all...]
  /external/lzma/C/
Xz.h 138 CODER_STATUS_NOT_SPECIFIED, /* use main error code instead */
156 SRes (*Code)(void *p, Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen,
XzDec.c 218 p->Code = BraState_Code;
267 p->Code = SbState_Code;
313 p->Code = Lzma2State_Code;
441 res = coder->Code(coder->p, destCur, &destLenCur, srcCur, &srcLenCur, srcFinishedCur, finishMode, &encodingWasFinished);
  /external/lzma/CPP/7zip/Common/
FilterCoder.cpp 39 STDMETHODIMP CFilterCoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream,
  /external/lzma/CPP/7zip/Compress/
Lzma2Decoder.cpp 75 STDMETHODIMP CDecoder::Code(ISequentialInStream *inStream,
LzmaDecoder.cpp 159 STDMETHODIMP CDecoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream,
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaAlone.cs 319 encoder.Code(inStream, outStream, -1, -1, null);
342 decoder.Code(inStream, outStream, compressedSize, outSize, null);
LzmaBench.cs 297 encoder.Code(inStream, compressedStream, -1, -1, progressInfo);
314 decoder.Code(compressedStream, crcOutStream, 0, (Int64)outSize, null);
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscosASM.S 25 AREA |C$$CODE|
31 ; Code provided by Adrain Lees
  /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::__anon26977
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/smali/baksmali/src/main/java/org/jf/baksmali/
baksmali.java 9 * 1. Redistributions of source code must retain the above copyright
33 import org.jf.dexlib.Code.Analysis.*;
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
DeodexUtil.java 9 * 1. Redistributions of source code must retain the above copyright
29 package org.jf.dexlib.Code.Analysis;

Completed in 926 milliseconds

<<11121314151617181920>>