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

<<41424344454647484950>>

  /external/mesa3d/docs/specs/
MESA_shader_debug.spec 254 Sample Code
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
codegen.ml 2 * Code Generation
94 (* Validate the generated code, checking for consistency. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
codegen.ml 2 * Code Generation
94 (* Validate the generated code, checking for consistency. *)
  /external/syslinux/efi32/include/efi/
efiip.h 61 UINT8 Code;
251 UINT8 Code;
278 // ICMPv6 code definitions for ICMP_V6_DEST_UNREACHABLE
289 // ICMPv6 code definitions for ICMP_V6_TIME_EXCEEDED
295 // ICMPv6 code definitions for ICMP_V6_PARAMETER_PROBLEM
  /external/syslinux/efi64/include/efi/
efiip.h 61 UINT8 Code;
251 UINT8 Code;
278 // ICMPv6 code definitions for ICMP_V6_DEST_UNREACHABLE
289 // ICMPv6 code definitions for ICMP_V6_TIME_EXCEEDED
295 // ICMPv6 code definitions for ICMP_V6_PARAMETER_PROBLEM
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efiip.h 61 UINT8 Code;
251 UINT8 Code;
278 // ICMPv6 code definitions for ICMP_V6_DEST_UNREACHABLE
289 // ICMPv6 code definitions for ICMP_V6_TIME_EXCEEDED
295 // ICMPv6 code definitions for ICMP_V6_PARAMETER_PROBLEM
  /external/tensorflow/tensorflow/core/profiler/g3doc/
profile_time.md 4 * [Profile by Python Code](#profile-by-python-code)
17 by TensorFlow on CPU. Normally, it's the code in OpKernel::Compute.
40 ### Profile by Python Code
42 # In code view, the time of each line of Python code is the aggregated
45 # --op_log_path provides the code traces information.
48 tfprof> code -show_name_regexes seq2seq_attention.* -max_depth 10 -select micros -order_by micros
75 tfprof> code -start_name_regexes .*_add_seq2seq.* -show_name_regexes seq2seq_attention.* -max_depth 10 -select micros -order_by micros
84 tfprof> code -max_depth 5 -select micros -order_by micros -start_name_regexes .*_add_seq2seq.* -min_micros 100 (…)
    [all...]
  /external/v8/src/arm/
deoptimizer-arm.cc 2 // Use of this source code is governed by a BSD-style license that can be
23 void Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code) {
24 // Empty because there is no need for relocation information for the code
29 void Deoptimizer::PatchCodeForDeoptimization(Isolate* isolate, Code* code) {
30 Address code_start_address = code->instruction_start();
32 // code patching below, and is not needed any more.
33 code->InvalidateRelocation();
36 // Fail hard and early if we enter this code object again
197 int code = config->GetAllocatableDoubleCode(i); local
270 int code = config->GetAllocatableDoubleCode(i); local
    [all...]
  /external/v8/src/arm64/
deoptimizer-arm64.cc 2 // Use of this source code is governed by a BSD-style license that can be
18 // Size of the code used to patch lazy bailout points.
24 void Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code) {
25 // Empty because there is no need for relocation information for the code
30 void Deoptimizer::PatchCodeForDeoptimization(Isolate* isolate, Code* code) {
32 // code patching below, and is not needed any more.
33 code->InvalidateRelocation();
35 // TODO(jkummerow): if (FLAG_zap_code_space), make the code object'
    [all...]
  /external/v8/src/debug/
liveedit.cc 2 // Use of this source code is governed by a BSD-style license that can be
9 #include "src/code-stubs.h"
673 // force code save location. We do not use this the object directly.
726 static void ReplaceCodeObject(Handle<Code> original,
727 Handle<Code> substitution) {
729 // incremental marking phase when we are replacing the code object.
731 // to code objects (that are never in new space) without worrying about
740 if (fun->code() == *original) fun->ReplaceCode(*substitution);
743 if (info->code() == *original) info->set_code(*substitution);
832 // Marks code that shares the same shared function info or has inline
    [all...]
  /external/v8/src/ia32/
deoptimizer-ia32.cc 2 // Use of this source code is governed by a BSD-style license that can be
25 void Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code) {
26 Isolate* isolate = code->GetIsolate();
29 // Compute the size of relocation information needed for the code
34 DeoptimizationInputData::cast(code->deoptimization_data());
55 int reloc_length = code->relocation_info()->length();
72 code->relocation_info()->GetDataStartAddress(), reloc_length);
88 // Replace relocation information on the code object.
89 code->set_relocation_info(*new_reloc)
201 int code = config->GetAllocatableDoubleCode(i); local
259 int code = config->GetAllocatableDoubleCode(i); local
333 int code = config->GetAllocatableDoubleCode(i); local
    [all...]
  /external/v8/src/mips/
deoptimizer-mips.cc 2 // Use of this source code is governed by a BSD-style license that can be
21 void Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code) {
22 // Empty because there is no need for relocation information for the code
27 void Deoptimizer::PatchCodeForDeoptimization(Isolate* isolate, Code* code) {
28 Address code_start_address = code->instruction_start();
30 // code patching below, and is not needed any more.
31 code->InvalidateRelocation();
34 // Fail hard and early if we enter this code object again
122 int code = config->GetAllocatableDoubleCode(i); local
199 int code = config->GetAllocatableDoubleCode(i); local
270 int code = config->GetAllocatableDoubleCode(i); local
    [all...]
  /external/v8/src/mips64/
deoptimizer-mips64.cc 2 // Use of this source code is governed by a BSD-style license that can be
21 void Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code) {
22 // Empty because there is no need for relocation information for the code
27 void Deoptimizer::PatchCodeForDeoptimization(Isolate* isolate, Code* code) {
28 Address code_start_address = code->instruction_start();
30 // code patching below, and is not needed any more.
31 code->InvalidateRelocation();
34 // Fail hard and early if we enter this code object again
122 int code = config->GetAllocatableDoubleCode(i); local
199 int code = config->GetAllocatableDoubleCode(i); local
269 int code = config->GetAllocatableDoubleCode(i); local
    [all...]
  /external/v8/src/ppc/
deoptimizer-ppc.cc 2 // Use of this source code is governed by a BSD-style license that can be
27 void Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code) {
28 // Empty because there is no need for relocation information for the code
33 void Deoptimizer::PatchCodeForDeoptimization(Isolate* isolate, Code* code) {
34 Address code_start_address = code->instruction_start();
37 // code patching below, and is not needed any more.
38 code->InvalidateRelocation();
41 // Fail hard and early if we enter this code object again
129 int code = config->GetAllocatableDoubleCode(i); local
197 int code = config->GetAllocatableDoubleCode(i); local
274 int code = config->GetAllocatableDoubleCode(i); local
    [all...]
  /external/v8/src/profiler/
heap-snapshot-generator.cc 2 // Use of this source code is governed by a BSD-style license that can be
10 #include "src/code-stubs.h"
153 case kCode: return "/code/";
976 Code* code = Code::cast(Code::GetObjectFromEntryAddress(entry_address)); variable
    [all...]
  /external/v8/src/s390/
deoptimizer-s390.cc 2 // Use of this source code is governed by a BSD-style license that can be
26 void Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code) {
27 // Empty because there is no need for relocation information for the code
31 void Deoptimizer::PatchCodeForDeoptimization(Isolate* isolate, Code* code) {
32 Address code_start_address = code->instruction_start();
35 // code patching below, and is not needed any more.
36 code->InvalidateRelocation();
39 // Fail hard and early if we enter this code object again
121 int code = config->GetAllocatableDoubleCode(i); local
194 int code = config->GetAllocatableDoubleCode(i); local
272 int code = config->GetAllocatableDoubleCode(i); local
    [all...]
  /external/v8/src/x64/
deoptimizer-x64.cc 2 // Use of this source code is governed by a BSD-style license that can be
26 void Deoptimizer::EnsureRelocSpaceForLazyDeoptimization(Handle<Code> code) {
27 // Empty because there is no need for relocation information for the code
32 void Deoptimizer::PatchCodeForDeoptimization(Isolate* isolate, Code* code) {
34 // code patching below, and is not needed any more.
35 code->InvalidateRelocation();
38 // Fail hard and early if we enter this code object again.
39 byte* pointer = code->FindCodeAgeSequence()
122 int code = config->GetAllocatableDoubleCode(i); local
262 int code = config->GetAllocatableDoubleCode(i); local
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
readertest.cpp 183 ASSERT_EQ(kParseErrorNone, reader.Parse<fullPrecision ? kParseFullPrecisionFlag : 0>(s, h).Code()); \
324 ASSERT_EQ(kParseErrorNone, reader.Parse<fullPrecision ? kParseFullPrecisionFlag : 0>(s, h).Code());
351 ASSERT_EQ(kParseErrorNone, reader.Parse<fullPrecision ? kParseFullPrecisionFlag : 0>(s, h).Code());
400 ASSERT_EQ(kParseErrorNone, reader.Parse(s, h).Code());
493 // String constant L"\xXX" can only specify character code in bytes, which is not endianness-neutral.
495 // In addition, GCC 4.8 generates -Wnarrowing warnings when character code >= 128 are assigned to signed integer types.
676 // 5 Illegal code positions
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/gen/
copyGen.go 2 // Use of this source code is governed by a BSD-style
28 fmt.Fprintf(w, "// Code generated by gen/copyGen.go. DO NOT EDIT.\n\n")
zeroGen.go 2 // Use of this source code is governed by a BSD-style
27 fmt.Fprintf(w, "// Code generated by gen/zeroGen.go. DO NOT EDIT.\n\n")
  /prebuilts/go/darwin-x86/src/crypto/hmac/
hmac.go 2 // Use of this source code is governed by a BSD-style
6 Package hmac implements the Keyed-Hash Message Authentication Code (HMAC) as
  /prebuilts/go/darwin-x86/src/runtime/
utf8.go 2 // Use of this source code is governed by a BSD-style
11 maxRune = '\U0010FFFF' // Maximum valid Unicode code point.
14 // Code points in the surrogate range are not valid for UTF-8.
  /prebuilts/go/darwin-x86/src/time/
genzabbrs.go 2 // Use of this source code is governed by a BSD-style
138 // Use of this source code is governed by a BSD-style
141 // Code generated by genzabbrs.go; DO NOT EDIT.
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/net/idna/
punycode.go 0 // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
4 // Use of this source code is governed by a BSD-style
100 // remaining != 0" in the Go code, because len(s) in Go is in bytes, not runes.
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
readwriter.go 0 // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
4 // Use of this source code is governed by a BSD-style

Completed in 1196 milliseconds

<<41424344454647484950>>