HomeSort by relevance Sort by last modified time
    Searched refs:Code (Results 651 - 675 of 1922) sorted by null

<<21222324252627282930>>

  /external/swiftshader/third_party/LLVM/lib/MC/
MCAsmStreamer.cpp 232 virtual void EmitWin64EHPushFrame(bool Code);
628 assert(Directive && "Invalid size for machine code value!");
688 default: llvm_unreachable("Invalid size for machine code value!");
715 default: llvm_unreachable("Invalid size for machine code value!");
1011 /// this duplicate code in MCWin64EH.cpp.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeIpIoLib/
DxeIpIoLib.c 281 UINT8 Code;
298 Code = IcmpHdr->Head.Code;
305 switch (Code) {
311 IcmpErr = (UINT8) (ICMP_ERR_UNREACH_NET + Code);
342 if (Code > 1) {
346 IcmpErr = (UINT8) (Code + ICMP_ERR_TIMXCEED_INTRANS);
351 if (Code > 1) {
360 if (Code != 0) {
410 UINT8 Code;
    [all...]
  /external/clang/unittests/AST/
SourceLocationTest.cpp 427 const std::string Code = "struct B {\n"
437 Code, friendDecl(has(cxxConstructorDecl(ofClass(hasName("B")))))));
441 Code, friendDecl(has(cxxDestructorDecl(ofClass(hasName("B")))))));
445 const std::string Code = "struct B {\n"
455 Code, friendDecl(has(cxxConstructorDecl(ofClass(hasName("B")))))));
459 Code, friendDecl(has(cxxDestructorDecl(ofClass(hasName("B")))))));
  /external/llvm/lib/Target/AArch64/Utils/
AArch64BaseInfo.h 13 // code gen types, passes, etc..
214 inline static const char *getCondCodeName(CondCode Code) {
215 switch (Code) {
216 default: llvm_unreachable("Unknown condition code");
236 inline static CondCode getInvertedCondCode(CondCode Code) {
239 return static_cast<CondCode>(static_cast<unsigned>(Code) ^ 0x1);
242 /// Given a condition code, return NZCV flags that would satisfy that condition.
244 /// Note that many different flag settings can satisfy a given condition code,
246 inline static unsigned getNZCVToSatisfyCondCode(CondCode Code) {
249 switch (Code) {
    [all...]
  /external/tensorflow/tensorflow/core/platform/cloud/
gcs_file_system_test.cc 71 errors::Code::OUT_OF_RANGE,
72 file->Read(sizeof(scratch), sizeof(scratch), &result, scratch).code());
113 EXPECT_EQ(errors::Code::OUT_OF_RANGE,
116 .code());
180 EXPECT_EQ(errors::Code::OUT_OF_RANGE,
181 file->Read(6, 10, &result, scratch).code());
188 EXPECT_EQ(errors::Code::OUT_OF_RANGE,
189 file->Read(20, 10, &result, scratch).code());
310 EXPECT_EQ(errors::Code::INVALID_ARGUMENT,
311 fs.NewRandomAccessFile("gs://bucket/", &file).code());
    [all...]
  /external/v8/src/heap/
remembered-set.h 2 // Use of this source code is governed by a BSD-style license that can be
282 // Updates a code entry slot using an untyped slot callback.
287 Object* code = Code::GetObjectFromEntryAddress(entry_address); local
288 Object* old_code = code;
289 SlotCallbackResult result = callback(&code);
290 if (code != old_code) {
292 reinterpret_cast<Code*>(code)->entry();
297 // Updates a code target slot using an untyped slot callback
    [all...]
  /external/v8/src/mips/
assembler-mips-inl.h 9 // - Redistributions of source code must retain the above copyright notice,
32 // The original source code covered by the above license above has been
93 // Absolute code pointer inside code object moves with the code object.
140 Address Assembler::target_address_at(Address pc, Code* code) {
141 Address constant_pool = code ? code->constant_pool() : NULL;
145 void Assembler::set_target_address_at(Isolate* isolate, Address pc, Code* code
    [all...]
  /external/v8/src/mips64/
assembler-mips64-inl.h 9 // - Redistributions of source code must retain the above copyright notice,
32 // The original source code covered by the above license above has been
93 // Absolute code pointer inside code object moves with the code object.
142 Address Assembler::target_address_at(Address pc, Code* code) {
143 Address constant_pool = code ? code->constant_pool() : NULL;
147 void Assembler::set_target_address_at(Isolate* isolate, Address pc, Code* code
    [all...]
  /external/v8/src/
perf-jit.cc 6 // * Redistributions of source code must retain the above copyright
211 Code* code = abstract_code->GetCode();
212 DCHECK(code->instruction_start() == code->address() + Code::kHeaderSize);
216 LogWriteDebugInfo(code, shared);
220 uint8_t* code_pointer = reinterpret_cast<uint8_t*>(code->instruction_start());
221 uint32_t code_size = code->is_crankshafted() ? code->safepoint_table_offset(
    [all...]
objects-inl.h 2 // Use of this source code is governed by a BSD-style license that can be
9 // code. gcc is not happy when attempting to inline too deep.
142 TYPE_CHECKER(Code, CODE_TYPE)
618 CAST_ACCESSOR(Code)
    [all...]
factory.h 2 // Use of this source code is governed by a BSD-style license that can be
238 // characters of the string are uninitialized. Currently used in regexp code
247 // Creates a single character string where the character has given code.
249 Handle<String> LookupSingleCharacterStringFromCode(uint32_t code);
533 Handle<Module> NewModule(Handle<SharedFunctionInfo> code);
593 Handle<JSFunction> NewFunction(Handle<String> name, Handle<Code> code,
598 Handle<Code> code,
618 Handle<JSFunction> NewFunction(Handle<String> name, Handle<Code> code
    [all...]
  /external/v8/src/snapshot/
serializer.cc 2 // Use of this source code is governed by a BSD-style license that can be
323 Code* Serializer::CopyCode(Code* code) {
325 int size = code->CodeSize();
326 code_buffer_.AddAll(Vector<byte>(code->address(), size));
327 return Code::cast(HeapObject::FromAddress(&code_buffer_.first()));
502 // The exception are native source code strings, since we can recreate
628 DCHECK_NOT_NULL(target); // Code does not reference null.
634 // We can only reference to internal references of code that has been output
737 Code* code = Code::cast(object_); local
    [all...]
  /external/v8/tools/
ll_prof.py 8 # * Redistributions of source code must retain the above copyright
84 class Code(object):
85 """Code object."""
94 self.id = Code._id
95 Code._id += 1
106 self.codetype = Code.OPTIMIZED
108 self.codetype = Code.FULL_CODEGEN
110 self.codetype = Code.V8INTERNAL
112 self.codetype = Code.UNKNOWN
216 """Group of adjacent code objects.""
    [all...]
  /external/llvm/lib/TableGen/
TGParser.cpp 23 // Support Code for the Semantic Actions.
356 // Parser Code
651 /// Type ::= CODE // code type
663 case tgtok::Code: Lex.Lex(); return CodeRecTy::get();
773 UnOpInit::UnaryOp Code;
777 default: llvm_unreachable("Unhandled code!");
780 Code = UnOpInit::CAST;
792 Code = UnOpInit::HEAD;
796 Code = UnOpInit::TAIL
    [all...]
  /art/runtime/
dex_to_dex_decompiler.cc 45 void DecompileInstanceFieldAccess(Instruction* inst, Instruction::Code new_opcode) {
51 void DecompileInvokeVirtual(Instruction* inst, Instruction::Code new_opcode, bool is_range) {
90 // We need to iterate over the code item, and not over the quickening data,
107 // any index happens when we unquicken a code item that only has
  /build/make/tools/droiddoc/templates-pdk/
sampleindex.cs 14 <a href="<?cs var:toroot ?>resources/browser.html?tag=sample">Sample Code</a> >
  /device/linaro/bootloader/edk2/IntelFspPkg/Library/SecFspSecPlatformLibNull/Ia32/
SecCarInit.asm 28 .code
34 ; Description: This function initializes the Cache for Data, Stack, and Code
  /external/clang/lib/Format/
TokenAnalyzer.cpp 38 // Code.
40 Environment::CreateVirtualEnvironment(StringRef Code, StringRef FileName,
61 Code, FileName, /*RequiresNullTerminator=*/false));
  /external/clang/lib/Tooling/
Tooling.cpp 46 // code that sets up a compiler to run tools on it, and we should refactor
104 bool runToolOnCode(clang::FrontendAction *ToolAction, const Twine &Code,
107 return runToolOnCodeWithArgs(ToolAction, Code, std::vector<std::string>(),
125 clang::FrontendAction *ToolAction, const Twine &Code,
147 Code.toNullTerminatedStringRef(CodeStorage)));
264 // Inject the code as the given file name into the preprocessor options.
493 buildASTFromCode(const Twine &Code, const Twine &FileName,
495 return buildASTFromCodeWithArgs(Code, std::vector<std::string>(), FileName,
500 const Twine &Code, const std::vector<std::string> &Args,
521 Code.toNullTerminatedStringRef(CodeStorage)))
    [all...]
  /external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/examples/
FibonacciMaker.java 19 import com.android.dx.Code;
41 Code code = dexMaker.declare(fib, Modifier.PUBLIC | Modifier.STATIC); local
43 Local<Integer> i = code.getParameter(0, TypeId.INT);
44 Local<Integer> constant1 = code.newLocal(TypeId.INT);
45 Local<Integer> constant2 = code.newLocal(TypeId.INT);
46 Local<Integer> a = code.newLocal(TypeId.INT);
47 Local<Integer> b = code.newLocal(TypeId.INT);
48 Local<Integer> c = code.newLocal(TypeId.INT);
49 Local<Integer> d = code.newLocal(TypeId.INT)
    [all...]
  /external/lzma/C/
Ppmd7.h 3 This code is based on PPMd var.H (2001): Dmitry Shkarin : Public domain */
5 /* This code supports virtual RangeDecoder and includes the implementation
111 UInt32 Code;
117 #define Ppmd7z_RangeDec_IsFinishedOK(p) ((p)->Code == 0)
  /external/pdfium/xfa/fwl/
cfwl_scrollbar.h 2 // Use of this source code is governed by a BSD-style license that can be
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
90 bool OnScroll(CFWL_EventScroll::Code dwCode, float fPos);
96 bool DoScroll(CFWL_EventScroll::Code dwCode, float fPos);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/immutable/
ShapeImmutableTest.java 33 Code loaded = (Code) yaml.load("!!org.yaml.snakeyaml.immutable.Code 123");
  /external/tensorflow/tensorflow/compiler/xla/
status_macros.h 84 // Make an error with the given code.
86 MakeErrorStream(const char* file, int line, ERROR_CODE_TYPE code)
87 : impl_(new Impl(file, line, code, this, true)) {}
111 Impl(const char* file, int line, tensorflow::error::Code code,
126 tensorflow::error::Code code_;
  /external/tensorflow/tensorflow/core/distributed_runtime/
message_wrappers.h 461 virtual errors::Code status_code() const = 0;
494 errors::Code status_code() const override;
508 // Store the code and message separately so that they can be updated
527 errors::Code status_code() const override;
554 errors::Code status_code() const override;
607 virtual errors::Code status_code() const = 0;
638 errors::Code status_code() const override;
650 // Store the code and message separately so that they can be updated
667 errors::Code status_code() const override;
692 errors::Code status_code() const override
    [all...]

Completed in 1674 milliseconds

<<21222324252627282930>>