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

<<21222324252627282930>>

  /external/lzma/CPP/7zip/Archive/Common/
CoderMixer2.h 260 Code();
277 virtual HRESULT Code(
343 virtual HRESULT Code(
398 void Code(ICompressProgressInfo *progress);
410 HRESULT ReturnIfError(HRESULT code);
424 virtual HRESULT Code(
  /external/lzma/CPP/7zip/Compress/
LzmaDecoder.h 59 STDMETHOD(Code)(ISequentialInStream *inStream, ISequentialOutStream *outStream,
  /external/swiftshader/third_party/LLVM/lib/MC/
MCELFStreamer.cpp 336 SmallString<256> Code;
337 raw_svector_ostream VecOS(Code);
349 DF->getContents().append(Code.begin(), Code.end());
MCMachOStreamer.cpp 136 // FIXME: Cleanup this code, these bits should be emitted based on semantic
227 // FIXME: Cleanup this code, these bits should be emitted based on semantic
367 SmallString<256> Code;
368 raw_svector_ostream VecOS(Code);
377 DF->getContents().append(Code.begin(), Code.end());
  /external/swiftshader/third_party/LLVM/lib/TableGen/
TGLexer.h 44 Bit, Bits, Class, Code, Dag, Def, Defm, Field, In, Int, Let, List,
106 /// LexToken - Read the next token and return its code.
  /external/swiftshader/third_party/subzero/src/
IceDefs.h 3 // The Subzero Code Generator
426 void assign(ErrorCodes Code) {
429 std::error_code::assign(Code, std::generic_category());
432 void assign(int Code) { assign(static_cast<ErrorCodes>(Code)); }
  /external/tensorflow/tensorflow/c/
tf_status_helper.cc 22 tensorflow::error::Code code = status.code(); local
25 switch (code) {
  /external/tensorflow/tensorflow/core/distributed_runtime/rpc/
grpc_util.h 38 // can return an UNKNOWN error code with a "Stream removed" error message.
56 return Status(static_cast<tensorflow::error::Code>(s.error_code()),
70 return ::grpc::Status(static_cast<::grpc::StatusCode>(s.code()), scratch);
72 return ::grpc::Status(static_cast<::grpc::StatusCode>(s.code()),
  /external/v8/src/
code-factory.h 2 // Use of this source code is governed by a BSD-style license that can be
17 // Associates a body of code with an interface descriptor.
20 Callable(Handle<Code> code, CallInterfaceDescriptor descriptor)
21 : code_(code), descriptor_(descriptor) {}
23 Handle<Code> code() const { return code_; } function in class:v8::internal::BASE_EMBEDDED
27 const Handle<Code> code_;
35 // can't be expressed in CallInterfaceDescriptor. Therefore only the code
37 static Handle<Code> RuntimeCEntry(Isolate* isolate, int result_size = 1)
    [all...]
fast-accessor-assembler.cc 2 // Use of this source code is governed by a BSD-style license that can be
8 #include "src/code-stub-assembler.h"
9 #include "src/code-stubs.h" // For CallApiCallbackStub.
25 isolate, zone(), 1, Code::ComputeFlags(Code::STUB),
227 MaybeHandle<Code> FastAccessorAssembler::Build() {
229 Handle<Code> code = local
231 state_ = !code.is_null() ? kBuilt : kError;
233 return code;
    [all...]
list.h 2 // Use of this source code is governed by a BSD-style license that can be
21 // the code. This implementation is based on code by Robert Griesemer
212 class Code;
215 typedef List<Code*> CodeList;
218 typedef List<Handle<Code> > CodeHandleList;
  /external/v8/src/crankshaft/arm/
lithium-codegen-arm.h 2 // Use of this source code is governed by a BSD-style license that can be
85 // Try to generate code for the entire chunk, but it may fail if the
87 // code generation attempt succeeded.
90 // Finish the code by setting stack height, safepoint, and bailout
92 void FinishCode(Handle<Code> code);
94 // Deferred code support.
160 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); }
165 // Code generation passes. Returns true if code generation shoul
    [all...]
  /external/v8/src/crankshaft/
lithium-codegen.h 2 // Use of this source code is governed by a BSD-style license that can be
61 void PopulateDeoptimizationData(Handle<Code> code);
66 // consequently lead to worse code, so it's important to minimize this.
101 // Methods for code dependencies.
  /prebuilts/go/darwin-x86/src/runtime/internal/sys/
gengoos.go 2 // Use of this source code is governed by a BSD-style
48 fmt.Fprintf(&buf, "// Code generated by gengoos.go using 'go generate'. DO NOT EDIT.\n\n")
70 fmt.Fprintf(&buf, "// Code generated by gengoos.go using 'go generate'. DO NOT EDIT.\n\n")
  /prebuilts/go/linux-x86/src/runtime/internal/sys/
gengoos.go 2 // Use of this source code is governed by a BSD-style
48 fmt.Fprintf(&buf, "// Code generated by gengoos.go using 'go generate'. DO NOT EDIT.\n\n")
70 fmt.Fprintf(&buf, "// Code generated by gengoos.go using 'go generate'. DO NOT EDIT.\n\n")
  /external/clang/lib/Frontend/
SerializedDiagnosticReader.cpp 81 unsigned Code = Stream.ReadCode();
83 switch ((llvm::bitc::FixedAbbrevIDs)Code) {
102 BlockOrRecordID = Code;
  /external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DexMakerTest.java 102 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
103 Local<Long> localA = code.getParameter(0, TypeId.LONG);
104 Local<Boolean> localB = code.getParameter(1, TypeId.BOOLEAN);
107 Local<Constructable> localResult = code.newLocal(constructable);
108 code.newInstance(localResult, constructor, localA, localB);
109 code.returnValue(localResult);
132 Code code = dexMaker.declare(methodId, PUBLIC); local
133 code.returnVoid()
152 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
172 Code code = dexMaker.declare(methodId, PUBLIC); local
199 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
238 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
295 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
320 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
339 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
360 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
379 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
458 Code code = dexMaker.declare(constructor, PUBLIC); local
495 Code code = dexMaker.declare(GENERATED.getMethod(returnType, "call"), PUBLIC | STATIC); local
555 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
619 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
757 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
788 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
830 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
990 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1075 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1159 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1186 Code code = dexMaker.declare(clinit, Modifier.STATIC); local
1244 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1270 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1297 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1343 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1389 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1433 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1479 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1556 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1603 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1625 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1684 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1702 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1753 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1796 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1844 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
1864 Code code = dexMaker.declare(methodId, PUBLIC | SYNCHRONIZED); local
1896 Code code = dexMaker.declare(methodId, PUBLIC); local
1924 Code code = dexMaker.declare(methodId, PUBLIC | STATIC); local
2000 Code code = dexMaker.declare(GENERATED.getConstructor(), PUBLIC); local
    [all...]
  /external/elfutils/libelf/
gelf_xlate.c 144 #define TYPE_EXTRA(Code)
145 #define TYPE_XLATE(Code) Code
  /external/llvm/test/tools/dsymutil/Inputs/scattered-reloc/
1.s 1 # This assembly file was generated from the following trivial C code:
33 .byte 1 @ Abbreviation Code
48 .byte 2 @ Abbreviation Code
65 .byte 3 @ Abbreviation Code
  /external/v8/src/regexp/
regexp-macro-assembler.h 2 // Use of this source code is governed by a BSD-style license that can be
57 // This function is called when code generation is aborted, so that
158 // Called from generated RegExp code.
166 // Controls the generation of large inlined constants in the code.
196 #ifndef V8_INTERPRETED_REGEXP // Avoid compiling unused code.
200 // Type of input string to generate code for.
203 // Result of calling generated native RegExp code.
218 static Result Match(Handle<Code> regexp,
237 Code* re_code, String** subject,
243 // Used by generated RegExp code
    [all...]
  /external/v8/src/regexp/x64/
regexp-macro-assembler-x64.h 2 // Use of this source code is governed by a BSD-style license that can be
90 static Result Match(Handle<Code> regexp,
97 static Result Execute(Code* code,
106 // If the code object is relocated, the return address is fixed before
109 Code* re_code,
181 // Initial size of code buffer.
207 // The registers containing a self pointer to this code's Code object.
223 // Call and return internally in the generated code in a way tha
    [all...]
  /external/v8/src/runtime/
runtime-wasm.cc 2 // Use of this source code is governed by a BSD-style license that can be
29 Code* code = isolate->inner_pointer_to_code_cache()->GetCacheEntry(pc)->code; local
30 DCHECK_EQ(Code::WASM_FUNCTION, code->kind());
31 WasmInstanceObject* owning_instance = wasm::GetOwningWasmInstance(code);
89 // Patch the stack trace (array of <receiver, function, code, position>).
93 DCHECK(stack_elements->Code(0)->kind() == AbstractCode::WASM_FUNCTION);
  /external/v8/tools/
codemap.js 6 // * Redistributions of source code must retain the above copyright
30 * Constructs a mapper that maps addresses into code entries.
36 * Dynamic code entries. Used for JIT compiled code.
46 * Static code entries. Used for statically compiled code.
51 * Libraries entries. Used for the whole static code libraries.
56 * Map of memory pages occupied with static code.
76 * Adds a dynamic (i.e. moveable and discardable) code entry.
79 * @param {CodeMap.CodeEntry} codeEntry Code entry object
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/httptest/
recorder.go 2 // Use of this source code is governed by a BSD-style
19 // Code is the HTTP response code set by WriteHeader.
25 Code int
50 Code: 200,
115 // WriteHeader sets rw.Code. After it is called, changing rw.Header
117 func (rw *ResponseRecorder) WriteHeader(code int) {
121 rw.Code = code
173 StatusCode: rw.Code,
    [all...]
  /prebuilts/go/linux-x86/src/net/http/httptest/
recorder.go 2 // Use of this source code is governed by a BSD-style
19 // Code is the HTTP response code set by WriteHeader.
25 Code int
50 Code: 200,
115 // WriteHeader sets rw.Code. After it is called, changing rw.Header
117 func (rw *ResponseRecorder) WriteHeader(code int) {
121 rw.Code = code
173 StatusCode: rw.Code,
    [all...]

Completed in 1232 milliseconds

<<21222324252627282930>>