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

<<31323334353637383940>>

  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp 339 /// bulk instead of resolving each reference at a time. See the code in
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
trees.c 13 * Each code tree is stored in a compressed form which is itself
14 * a Huffman encoding of the lengths of all the code strings (in
15 * ascending order by source values). The actual code strings are
51 /* end of block literal code */
62 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
65 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
68 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
105 /* length code for each normalized match length (0 == MIN_MATCH) */
108 /* First normalized length for each code (0 = MIN_MATCH) */
111 /* First normalized distance for each code (0 = distance of 1) */
241 int code; \/* code value *\/ local
581 ush code = 0; \/* running code value *\/ local
1068 unsigned code; \/* the code to send *\/ local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
trees.c 12 * Each code tree is stored in a compressed form which is itself
13 * a Huffman encoding of the lengths of all the code strings (in
14 * ascending order by source values). The actual code strings are
50 /* end of block literal code */
61 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
64 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
67 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
109 /* length code for each normalized match length (0 == MIN_MATCH) */
112 /* First normalized length for each code (0 = MIN_MATCH) */
115 /* First normalized distance for each code (0 = distance of 1) */
245 int code; \/* code value *\/ local
583 ush code = 0; \/* running code value *\/ local
1080 unsigned code; \/* the code to send *\/ local
    [all...]
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/stock/
ProxyBuilder.java 19 import com.android.dx.Code;
55 * This is similar to the {@code java.lang.reflect.Proxy} class, but works for classes instead of
58 * The following example demonstrates the creation of a dynamic proxy for {@code java.util.Random}
103 * The {@link #finalize()} method on {@code Object} will not be proxied.
106 * care not to make this a world-writable directory, so that third parties cannot inject code into
109 * <pre>{@code
113 * If the base class to be proxied leaks the {@code this} pointer in the constructor (bad practice),
159 * <p>If null, {@code ProxyBuilder.class.getClassLoader()} will be used.
172 * Sets the directory where executable code is stored. See {@link
217 * @throws IOException if an exception occurred writing to the {@code dexCache} directory
494 Code code = dexMaker.declare(methodId, PUBLIC); local
    [all...]
  /external/python/cpython2/Modules/zlib/
trees.c 13 * Each code tree is stored in a compressed form which is itself
14 * a Huffman encoding of the lengths of all the code strings (in
15 * ascending order by source values). The actual code strings are
51 /* end of block literal code */
62 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
65 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
68 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
105 /* length code for each normalized match length (0 == MIN_MATCH) */
108 /* First normalized length for each code (0 = MIN_MATCH) */
111 /* First normalized distance for each code (0 = distance of 1) *
241 int code; \/* code value *\/ local
581 ush code = 0; \/* running code value *\/ local
1068 unsigned code; \/* the code to send *\/ local
    [all...]
  /external/python/cpython3/Modules/zlib/
trees.c 13 * Each code tree is stored in a compressed form which is itself
14 * a Huffman encoding of the lengths of all the code strings (in
15 * ascending order by source values). The actual code strings are
51 /* end of block literal code */
62 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
65 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
68 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
105 /* length code for each normalized match length (0 == MIN_MATCH) */
108 /* First normalized length for each code (0 = MIN_MATCH) */
111 /* First normalized distance for each code (0 = distance of 1) *
239 int code; \/* code value *\/ local
578 unsigned code = 0; \/* running code value *\/ local
1072 unsigned code; \/* the code to send *\/ local
    [all...]
  /external/tensorflow/tensorflow/core/framework/
function_test.cc 1003 EXPECT_EQ(s.code(), error::Code::INVALID_ARGUMENT);
1029 EXPECT_EQ(s.code(), error::Code::INVALID_ARGUMENT);
    [all...]
  /external/v8/src/arm/
codegen-arm.cc 2 // Use of this source code is governed by a BSD-style license that can be
316 // Code generators
433 patcher->masm()->nop(ip.code());
444 bool Code::IsYoungSequence(Isolate* isolate, byte* sequence) {
450 Code::Age Code::GetCodeAge(Isolate* isolate, byte* sequence) {
455 Code* stub = GetCodeFromTargetAddress(target_address);
459 void Code::PatchPlatformCodeAge(Isolate* isolate, byte* sequence,
460 Code::Age age) {
466 Code* stub = GetCodeAgeStub(isolate, age)
    [all...]
  /external/v8/src/
assembler.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
111 // This function is called when code generation is aborted, so that
123 // The buffer into which code and relocation info are generated. It could
150 // if the pp register points to the current code object's constant pool.
159 // Avoids emitting debug code during the lifetime of this scope object.
220 // // Generate code containing SSE3 instructions.
222 // // Generate alternative code.
318 CODE_TARGET, // Code target which is not any of the above.
321 // To relocate pointers into the wasm memory embedded in wasm code
    [all...]
  /external/v8/src/compiler/
code-assembler.cc 2 // Use of this source code is governed by a BSD-style license that can be
5 #include "src/compiler/code-assembler.h"
9 #include "src/code-factory.h"
41 Code::Flags flags, const char* name, size_t result_size)
51 int parameter_count, Code::Flags flags,
56 Code::ExtractKindFromFlags(flags) == Code::BUILTIN
63 Code::Flags flags, const char* name)
132 Handle<Code> CodeAssembler::GenerateCode(CodeAssemblerState* state) {
137 Handle<Code> code = Pipeline::GenerateCodeForCodeStub local
    [all...]
  /external/v8/src/ia32/
codegen-ia32.cc 2 // Use of this source code is governed by a BSD-style license that can be
163 // Generated code is put into a fixed, unmovable buffer, and not into
475 // TODO(jkummerow): It would be nice to register this code creation event
484 // Code generators
581 // Load the two-byte character code into the result register.
620 bool Code::IsYoungSequence(Isolate* isolate, byte* sequence) {
626 Code::Age Code::GetCodeAge(Isolate* isolate, byte* sequence) {
632 Code* stub = GetCodeFromTargetAddress(target_address);
636 void Code::PatchPlatformCodeAge(Isolate* isolate, byte* sequence
    [all...]
  /external/v8/src/snapshot/
deserializer.cc 2 // Use of this source code is governed by a BSD-style license that can be
37 // The entire isolate is newly deserialized. Simply flush all code pages.
46 for (Code* code : new_code_objects_) {
47 // Record all references to embedded objects in the new code object.
48 isolate_->heap()->RecordWritesIntoCode(code);
50 if (FLAG_serialize_age_code) code->PreAge(isolate_);
51 Assembler::FlushICache(isolate_, code->instruction_start(),
52 code->instruction_size());
112 // Issue code events for newly deserialized code objects
712 Code* code = local
    [all...]
  /external/zlib/src/
trees.c 13 * Each code tree is stored in a compressed form which is itself
14 * a Huffman encoding of the lengths of all the code strings (in
15 * ascending order by source values). The actual code strings are
51 /* end of block literal code */
62 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
65 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
68 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
105 /* length code for each normalized match length (0 == MIN_MATCH) */
108 /* First normalized length for each code (0 = MIN_MATCH) */
111 /* First normalized distance for each code (0 = distance of 1) *
239 int code; \/* code value *\/ local
578 unsigned code = 0; \/* running code value *\/ local
1072 unsigned code; \/* the code to send *\/ local
    [all...]
  /toolchain/binutils/binutils-2.27/zlib/
trees.c 13 * Each code tree is stored in a compressed form which is itself
14 * a Huffman encoding of the lengths of all the code strings (in
15 * ascending order by source values). The actual code strings are
51 /* end of block literal code */
62 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
65 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
68 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
105 /* length code for each normalized match length (0 == MIN_MATCH) */
108 /* First normalized length for each code (0 = MIN_MATCH) */
111 /* First normalized distance for each code (0 = distance of 1) *
241 int code; \/* code value *\/ local
581 ush code = 0; \/* running code value *\/ local
1068 unsigned code; \/* the code to send *\/ local
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/Ipf/
Thunk.c 2 Call into 16-bit BIOS code
4 BugBug: Thunker does A20 gate. Can we get rid of this code or
5 put it into Legacy16 code.
25 Private->IntThunk. These values are used by the Thunk code.
120 Template of real mode code.
122 @param CodeStart Start address of code.
123 @param CodeEnd End address of code
148 Allocate memory < 1 MB and copy the thunker code into low memory. Se up
180 // Setup a descriptor for real-mode code
189 // code/read
    [all...]
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
DexMaker.java 21 import com.android.dx.dex.code.DalvCode;
22 import com.android.dx.dex.code.PositionList;
23 import com.android.dx.dex.code.RopTranslator;
28 import com.android.dx.rop.code.AccessFlags;
29 import com.android.dx.rop.code.LocalVariableInfo;
30 import com.android.dx.rop.code.RopMethod;
48 import static com.android.dx.rop.code.AccessFlags.ACC_CONSTRUCTOR;
57 * including their member methods and fields, executable code, and debugging
63 * <li><strong>For runtime code generation.</strong> By embedding this library
65 * executable code. This approach takes advantage of the fact that th
591 private final Code code; field in class:DexMaker.MethodDeclaration
    [all...]
  /external/dexmaker/lib/
libcore-dex-2.jar 
  /external/llvm/lib/Target/PowerPC/InstPrinter/
PPCInstPrinter.cpp 148 unsigned Code = MI->getOperand(OpNo).getImm();
151 switch ((PPC::Predicate)Code) {
194 llvm_unreachable("Invalid use of bit predicate code");
196 llvm_unreachable("Invalid predicate code");
200 switch ((PPC::Predicate)Code) {
232 llvm_unreachable("Invalid use of bit predicate code");
234 llvm_unreachable("Invalid predicate code");
  /external/lzma/CPP/7zip/Archive/
LzmaHandler.cpp 88 HRESULT Code(const CHeader &header, ISequentialOutStream *outStream, ICompressProgressInfo *progress);
126 HRESULT CDecoder::Code(const CHeader &header, ISequentialOutStream *outStream,
488 result = decoder.Code(st, outStream, progress);
  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
BitstreamWriter.h 33 /// CurCodeSize - This is the declared size of code values used for the
162 /// EmitCode - Emit the specified code.
248 // Restore the inner block's code size and abbrev table.
294 /// emission code. If BlobData is non-null, then it specifies an array of
393 void EmitRecord(unsigned Code, SmallVectorImpl<uintty> &Vals,
399 EmitVBR(Code, 6);
406 // Insert the code into Vals to treat it uniformly.
407 Vals.insert(Vals.begin(), Code);
413 /// Unlike EmitRecord, the code for the record should be included in Vals as
423 /// EmitRecord, this routine expects that the first entry in Vals is the code
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/MCParser/
COFFAsmParser.cpp 392 bool Code = false;
398 if (CodeID != "code")
399 return Error(startLoc, "expected @code");
400 Code = true;
408 getStreamer().EmitWin64EHPushFrame(Code);
446 // violation so this validation code is disabled.
  /external/tensorflow/tensorflow/core/kernels/data/
parallel_map_dataset_op.cc 342 CodeKey(index), static_cast<int64>(status.code())));
354 error::Code code = static_cast<error::Code>(code_int); local
356 if (code != error::Code::OK) {
360 *status = Status(code, error_message);
369 strings::StrCat("invocation_results[", index, "].code"));
  /external/v8/src/crankshaft/arm64/
lithium-codegen-arm64.h 2 // Use of this source code is governed by a BSD-style license that can be
63 // Try to generate code for the entire chunk, but it may fail if the
65 // code generation attempt succeeded.
68 // Finish the code by setting stack height, safepoint, and bailout
70 void FinishCode(Handle<Code> code);
107 // when generating code for a lithium instruction.
110 // Deferred code support.
139 // Generic version of EmitBranch. It contains some code to avoid emitting a
176 // Emits optimized code to deep-copy the contents of statically known objec
    [all...]
  /external/v8/src/crankshaft/mips/
lithium-codegen-mips.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);
160 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); }
165 // Code generation passes. Returns true if code generation shoul
    [all...]
  /external/v8/src/crankshaft/mips64/
lithium-codegen-mips64.h 2 // Use of this source code is governed by a BSD-style license that can be
86 // Try to generate code for the entire chunk, but it may fail if the
88 // code generation attempt succeeded.
91 // Finish the code by setting stack height, safepoint, and bailout
93 void FinishCode(Handle<Code> code);
162 void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); }
167 // Code generation passes. Returns true if code generation shoul
    [all...]

Completed in 1232 milliseconds

<<31323334353637383940>>