| /external/v8/src/crankshaft/x64/ |
| lithium-codegen-x64.h | 2 // Use of this source code is governed by a BSD-style license that can be 70 // Try to generate code for the entire chunk, but it may fail if the 72 // code generation attempt succeeded. 75 // Finish the code by setting stack height, safepoint, and bailout 77 void FinishCode(Handle<Code> code); 79 // Deferred code support. 135 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); } 141 // Code generation passes. Returns true if code generation shoul [all...] |
| /external/v8/src/ia32/ |
| code-stubs-ia32.h | 2 // Use of this source code is governed by a BSD-style license that can be 49 minor_key_ = DictionaryBits::encode(dictionary.code()) | 50 ResultBits::encode(result.code()) | 51 IndexBits::encode(index.code()) | LookupModeBits::encode(mode); 111 minor_key_ = ObjectBits::encode(object.code()) | 112 ValueBits::encode(value.code()) | 113 AddressBits::encode(address.code()) | 135 static Mode GetMode(Code* stub) { 154 static void Patch(Code* stub, Mode mode) { 316 void Activate(Code* code) override 317 code->GetHeap()->incremental_marking()->ActivateGeneratedStub(code); variable [all...] |
| /external/v8/src/mips/ |
| code-stubs-mips.h | 2 // Use of this source code is governed by a BSD-style license that can be 79 minor_key_ = ObjectBits::encode(object.code()) | 80 ValueBits::encode(value.code()) | 81 AddressBits::encode(address.code()) | 99 masm->instr_at_put(pos, BNE | (zero_reg.code() << kRsShift) | 100 (zero_reg.code() << kRtShift) | (offset & kImm16Mask)); 106 masm->instr_at_put(pos, BEQ | (zero_reg.code() << kRsShift) | 107 (zero_reg.code() << kRtShift) | (offset & kImm16Mask)); 111 static Mode GetMode(Code* stub) { 131 static void Patch(Code* stub, Mode mode) 232 code->GetHeap()->incremental_marking()->ActivateGeneratedStub(code); variable [all...] |
| /external/v8/src/mips64/ |
| code-stubs-mips64.h | 2 // Use of this source code is governed by a BSD-style license that can be 80 minor_key_ = ObjectBits::encode(object.code()) | 81 ValueBits::encode(value.code()) | 82 AddressBits::encode(address.code()) | 100 masm->instr_at_put(pos, BNE | (zero_reg.code() << kRsShift) | 101 (zero_reg.code() << kRtShift) | (offset & kImm16Mask)); 107 masm->instr_at_put(pos, BEQ | (zero_reg.code() << kRsShift) | 108 (zero_reg.code() << kRtShift) | (offset & kImm16Mask)); 112 static Mode GetMode(Code* stub) { 132 static void Patch(Code* stub, Mode mode) 233 code->GetHeap()->incremental_marking()->ActivateGeneratedStub(code); variable [all...] |
| /external/v8/src/ppc/ |
| code-stubs-ppc.h | 2 // Use of this source code is governed by a BSD-style license that can be 78 minor_key_ = ObjectBits::encode(object.code()) | 79 ValueBits::encode(value.code()) | 80 AddressBits::encode(address.code()) | 102 static Mode GetMode(Code* stub) { 120 static void Patch(Code* stub, Mode mode) { 221 void Activate(Code* code) override { 222 code->GetHeap()->incremental_marking()->ActivateGeneratedStub(code); variable [all...] |
| /external/v8/src/x64/ |
| code-stubs-x64.h | 2 // Use of this source code is governed by a BSD-style license that can be 45 minor_key_ = DictionaryBits::encode(dictionary.code()) | 46 ResultBits::encode(result.code()) | 47 IndexBits::encode(index.code()) | LookupModeBits::encode(mode); 104 minor_key_ = ObjectBits::encode(object.code()) | 105 ValueBits::encode(value.code()) | 106 AddressBits::encode(address.code()) | 128 static Mode GetMode(Code* stub) { 147 static void Patch(Code* stub, Mode mode) { 311 void Activate(Code* code) override [all...] |
| /external/v8/src/x87/ |
| assembler-x87.h | 8 // - Redistributions of source code must retain the above copyright notice, 31 // The original source code covered by the above license above has been 91 // compatible with int, which has caused code-generation bugs. 103 // code generated for some assembly instructions (because they boil down 104 // to a few constants). If this is a problem, we could change the code 107 // and best performance in optimized code. 110 enum Code { 118 static const int kNumRegisters = Code::kAfterLast; 120 static Register from_code(int code) { 121 DCHECK(code >= 0) [all...] |
| code-stubs-x87.h | 2 // Use of this source code is governed by a BSD-style license that can be 49 minor_key_ = DictionaryBits::encode(dictionary.code()) | 50 ResultBits::encode(result.code()) | 51 IndexBits::encode(index.code()) | LookupModeBits::encode(mode); 108 minor_key_ = ObjectBits::encode(object.code()) | 109 ValueBits::encode(value.code()) | 110 AddressBits::encode(address.code()) | 132 static Mode GetMode(Code* stub) { 151 static void Patch(Code* stub, Mode mode) { 313 void Activate(Code* code) override 314 code->GetHeap()->incremental_marking()->ActivateGeneratedStub(code); variable [all...] |
| /art/compiler/dex/ |
| inline_method_analyser.cc | 32 * NOTE: This code is part of the quick compiler. It lives in the runtime 61 template <Instruction::Code opcode> bool Opcode(); 111 template <Instruction::Code opcode> 266 // Limit the maximum number of code units we're willing to match. 279 // of the parameters or 0 and the code must then finish with RETURN_VOID. 377 static_assert(kMaxConstructorIPuts == 3, "Unexpected limit"); // Code below depends on this. 453 Instruction::Code opcode = code_item->begin()->Opcode(); 525 Instruction::Code return_opcode = return_instruction->Opcode(); 548 Instruction::Code return_opcode = return_instruction->Opcode(); 581 Instruction::Code opcode = instruction->Opcode() [all...] |
| /device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Include/Protocol/ |
| Spi.h | 142 // Code The opcode (value to be programmed to the OPMENU register)
153 UINT8 Code;
|
| /external/clang/unittests/ASTMatchers/ |
| ASTMatchersTraversalTest.cpp | 648 static const char Code[] = 655 EXPECT_TRUE(matches(Code, cxxConstructorDecl(hasAnyConstructorInitializer( 657 EXPECT_TRUE(matches(Code, cxxConstructorDecl(hasAnyConstructorInitializer( 659 EXPECT_TRUE(notMatches(Code, cxxConstructorDecl(hasAnyConstructorInitializer( 664 static const char Code[] = 669 EXPECT_TRUE(matches(Code, cxxConstructorDecl(hasAnyConstructorInitializer( 671 EXPECT_TRUE(notMatches(Code, cxxConstructorDecl(hasAnyConstructorInitializer( 676 static const char Code[] = 683 EXPECT_TRUE(matches(Code, cxxConstructorDecl(hasAnyConstructorInitializer( 685 EXPECT_TRUE(notMatches(Code, cxxConstructorDecl(hasAnyConstructorInitializer [all...] |
| /external/llvm/lib/MC/ |
| MCMachOStreamer.cpp | 198 // FIXME: Cleanup this code, these bits should be emitted based on semantic 337 // FIXME: Cleanup this code, these bits should be emitted based on semantic 452 SmallString<256> Code; 453 raw_svector_ostream VecOS(Code); 461 DF->getContents().append(Code.begin(), Code.end());
|
| /external/llvm/lib/TableGen/ |
| TGLexer.h | 46 Bit, Bits, Class, Code, Dag, Def, Foreach, Defm, Field, In, Int, Let, List, 120 /// LexToken - Read the next token and return its code.
|
| /external/llvm/test/DebugInfo/SystemZ/ |
| eh_frame.s | 44 # Code alignment factor: 1
|
| eh_frame_personality.s | 42 # Code alignment factor: 1
|
| /external/lzma/CPP/7zip/Archive/Common/ |
| CoderMixer2.cpp | 640 HRESULT CMixerST::Code(
713 res = mainCoder.Coder->Code(
720 res = mainCoder.Coder2->Code(
796 Code(NULL);
804 void CCoderMT::Code(ICompressProgressInfo *progress)
832 Result = Coder->Code(InStreamPointers[0], OutStreamPointers[0],
837 Result = Coder2->Code(
980 HRESULT CMixerMT::ReturnIfError(HRESULT code)
983 if (_coders[i].Result == code)
984 return code;
[all...] |
| /external/lzma/CPP/7zip/Compress/ |
| Lzma2Encoder.cpp | 82 STDMETHODIMP CEncoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream,
|
| /external/lzma/CS/7zip/ |
| ICoder.cs | 60 void Code(System.IO.Stream inStream, System.IO.Stream outStream,
67 void Code(ISequentialInStream []inStreams,
|
| /external/tensorflow/tensorflow/contrib/ffmpeg/ |
| decode_video_op.cc | 64 if (result.code() == error::Code::NOT_FOUND) { 69 } else if (result.code() == error::UNKNOWN) {
|
| /external/tensorflow/tensorflow/core/kernels/ |
| ops_util_test.cc | 70 error::Code code) { 76 EXPECT_EQ(status.code(), code) << status; 81 EXPECT_EQ(status.code(), code) << status; 85 error::Code code) { 91 EXPECT_EQ(status.code(), code) << status [all...] |
| /external/tensorflow/tensorflow/core/lib/core/ |
| status.cc | 21 Status::Status(tensorflow::error::Code code, StringPiece msg) { 22 assert(code != tensorflow::error::OK); 24 state_->code = code; 53 switch (code()) { 103 snprintf(tmp, sizeof(tmp), "Unknown code(%d)", 104 static_cast<int>(code()));
|
| /external/v8/src/debug/x64/ |
| debug-x64.cc | 2 // Use of this source code is governed by a BSD-style license that can be 43 Handle<Code> code) { 44 DCHECK(code->is_debug_stub()); 49 patcher.masm()->movp(kScratchRegister, reinterpret_cast<void*>(code->entry()), 52 // Check that the size of the code generated is as expected.
|
| /external/v8/src/heap/ |
| incremental-marking.cc | 2 // Use of this source code is governed by a BSD-style license that can be 7 #include "src/code-stubs.h" 76 Code* value = Code::cast( 77 Code::GetObjectFromEntryAddress(reinterpret_cast<Address>(slot))); 81 void IncrementalMarking::RecordCodeTargetPatch(Code* host, Address pc, 92 Code* host = heap_->isolate() 103 Code* value) { 111 void IncrementalMarking::RecordWriteIntoCodeSlow(Code* host, RelocInfo* rinfo, 404 void IncrementalMarking::ActivateGeneratedStub(Code* stub) [all...] |
| /external/v8/src/ |
| objects-debug.cc | 2 // Use of this source code is governed by a BSD-style license that can be 101 Code::cast(this)->CodeVerify(); 613 CHECK(code()->IsCode()); 734 void Code::CodeVerify() { 753 void Code::VerifyEmbeddedObjectsDependency() { 955 // Smi : Not compiled yet (-1) or code prepared for flushing. 957 // Code/ByteArray: Compiled code. [all...] |
| /external/v8/src/profiler/ |
| profiler-listener.h | 2 // Use of this source code is governed by a BSD-style license that can be 10 #include "src/code-events.h" 31 AbstractCode* code, const char* comment) override; 33 AbstractCode* code, Name* name) override; 35 AbstractCode* code, SharedFunctionInfo* shared, 38 AbstractCode* code, SharedFunctionInfo* shared, 41 AbstractCode* code, int args_count) override; 44 void CodeDisableOptEvent(AbstractCode* code, 46 void CodeDeoptEvent(Code* code, Address pc, int fp_to_sp_delta) override [all...] |