HomeSort by relevance Sort by last modified time
    Searched refs:code (Results 1101 - 1125 of 19832) sorted by null

<<41424344454647484950>>

  /prebuilts/python/linux-x86/2.7.5/bin/
python-config 11 def exit_with_usage(code=1):
14 sys.exit(code)
30 exit_with_usage(code=0)
python2-config 11 def exit_with_usage(code=1):
14 sys.exit(code)
30 exit_with_usage(code=0)
python2.7-config 11 def exit_with_usage(code=1):
14 sys.exit(code)
30 exit_with_usage(code=0)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/
stats.py 56 # our code objects are cached since we don't need to create
59 code = self._code[args]
61 code = FakeCode(*args)
62 self._code[args] = code
69 frame = FakeFrame(code, back)
87 def __init__(self, code, back):
89 self.f_code = code
  /toolchain/binutils/binutils-2.27/binutils/
unwind-ia64.c 176 #define UNW_DEC_BAD_CODE(code) \
177 printf ("Unknown code 0x%02x\n", code)
508 * UNW_DEC_BAD_CODE(code)
568 unw_decode_x1 (const unsigned char *dp, unsigned int code ATTRIBUTE_UNUSED,
586 unw_decode_x2 (const unsigned char *dp, unsigned int code ATTRIBUTE_UNUSED,
606 unw_decode_x3 (const unsigned char *dp, unsigned int code ATTRIBUTE_UNUSED,
628 unw_decode_x4 (const unsigned char *dp, unsigned int code ATTRIBUTE_UNUSED,
652 unw_decode_r1 (const unsigned char *dp, unsigned int code, void *arg,
655 int body = (code & 0x20) != 0
1068 unsigned char code; local
    [all...]
  /art/compiler/linker/arm/
relative_patcher_thumb2.cc 55 void Thumb2RelativePatcher::PatchCall(std::vector<uint8_t>* code,
59 DCHECK_LE(literal_offset + 4u, code->size());
78 DCHECK_EQ(GetInsn32(code, literal_offset) & 0xf800d000, 0xf000d000);
80 SetInsn32(code, literal_offset, value);
83 void Thumb2RelativePatcher::PatchPcRelativeReference(std::vector<uint8_t>* code,
92 uint32_t insn = GetInsn32(code, literal_offset);
100 SetInsn32(code, literal_offset, insn);
103 void Thumb2RelativePatcher::PatchBakerReadBarrierBranch(std::vector<uint8_t>* code,
109 DCHECK_LT(literal_offset, code->size());
110 uint32_t insn = GetInsn32(code, literal_offset)
    [all...]
relative_patcher_thumb2.h 73 void PatchCall(std::vector<uint8_t>* code,
77 void PatchPcRelativeReference(std::vector<uint8_t>* code,
81 void PatchBakerReadBarrierBranch(std::vector<uint8_t>* code,
128 void SetInsn32(std::vector<uint8_t>* code, uint32_t offset, uint32_t value);
129 static uint32_t GetInsn32(ArrayRef<const uint8_t> code, uint32_t offset);
132 static uint32_t GetInsn32(Vector* code, uint32_t offset);
134 static uint32_t GetInsn16(ArrayRef<const uint8_t> code, uint32_t offset);
137 static uint32_t GetInsn16(Vector* code, uint32_t offset);
  /external/dng_sdk/source/
dng_image_writer.h 72 tiff_tag (uint16 code,
76 : fCode (code)
89 uint16 Code () const
137 tag_data_ptr (uint16 code,
142 : tiff_tag (code, type, count)
177 tag_string (uint16 code,
198 tag_encoded_text (uint16 code,
216 tag_uint8 (uint16 code,
219 : tag_data_ptr (code, ttByte, 1, &fValue)
240 tag_uint8_ptr (uint16 code,
    [all...]
  /external/v8/src/wasm/
wasm-module-builder.cc 2 // Use of this source code is governed by a BSD-style license that can be
35 // Emit a section code and the size as a padded varint that can be patched
37 size_t EmitSection(WasmSectionCode code, ZoneBuffer& buffer) {
38 // Emit the section code.
39 buffer.write_u8(code);
105 void WasmFunctionBuilder::EmitCode(const byte* code, uint32_t code_size) {
107 body_.push_back(code[i]);
147 byte code[] = {U32V_5(0)}; local
148 EmitCode(code, sizeof(code));
408 const byte code[] = {WASM_I32V_5(global.init.val.i32_const)}; local
414 const byte code[] = {WASM_I64V_10(global.init.val.i64_const)}; local
420 const byte code[] = {WASM_F32(global.init.val.f32_const)}; local
426 const byte code[] = {WASM_F64(global.init.val.f64_const)}; local
431 const byte code[] = {kExprGetGlobal, local
440 const byte code[] = {WASM_I32V_1(0)}; local
445 const byte code[] = {WASM_I64V_1(0)}; local
450 const byte code[] = {WASM_F32(0.0)}; local
455 const byte code[] = {WASM_F64(0.0)}; local
    [all...]
wasm-interpreter.cc 2 // Use of this source code is governed by a BSD-style license that can be
826 // Code and metadata needed to execute a function.
830 const byte* orig_start; // start of original code
831 const byte* orig_end; // end of original code
832 byte* start; // start of (maybe altered) code
833 byte* end; // end of (maybe altered) code
839 // The main storage for interpreter code. It maps {WasmFunction} to the
860 InterpreterCode* code = &interpreter_code_[function->func_index]; local
861 DCHECK_EQ(function, code->function);
862 return Preprocess(code);
894 InterpreterCode code = { local
906 InterpreterCode* code = FindCode(function); local
936 InterpreterCode* code = codemap()->FindCode(function); local
1022 InterpreterCode* code; member in struct:v8::internal::wasm::__anon41231::ThreadImpl::Frame
1856 InterpreterCode* code = internals_->codemap_.FindCode(function); local
1877 InterpreterCode* code = internals_->codemap_.FindCode(function); local
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/
MethodWriter.java 9 * 1. Redistributions of source code must retain the above copyright
75 * If not zero, indicates that the code of this method must be copied from
76 * the ClassReader associated to this writer in <code>cw.cr</code>. More
78 * <code>cw.cr.b</code>.
83 * If not zero, indicates that the code of this method must be copied from
84 * the ClassReader associated to this writer in <code>cw.cr</code>. More
86 * <code>cw.cr.b</code>
168 private ByteVector code = new ByteVector(); field in class:MethodWriter
    [all...]
  /external/freetype/src/gzip/
infcodes.c 41 } code; /* if LEN or DIST, where in tree */ member in union:inflate_codes_state::__anon20675
117 c->sub.code.need = c->lbits;
118 c->sub.code.tree = c->ltree;
121 j = c->sub.code.need;
123 t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
144 c->sub.code.need = e;
145 c->sub.code.tree = t + t->base;
154 c->mode = BADCODE; /* invalid code */
155 z->msg = (char*)"invalid literal/length code";
163 c->sub.code.need = c->dbits
    [all...]
  /toolchain/binutils/binutils-2.27/gold/
arm-reloc-property.cc 93 unsigned int code,
102 : code_(code), name_(name), reloc_type_(rtype), reloc_class_(rclass),
118 if (code == elfcpp::R_ARM_ABS8)
120 else if (code == elfcpp::R_ARM_ABS16)
129 if (code != elfcpp::R_ARM_V4BX)
152 if (code != elfcpp::R_ARM_COPY)
275 unsigned int code = elfcpp::R_ARM_##name; \
276 gold_assert(code < Property_table_size); \
277 this->table_[code] = \
290 // Return a string describing a relocation code that fails to get
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r500_fragprog.c 372 struct r500_fragment_program_code *code = &compiler->code->code.r500; local
379 for (n = 0; n < code->inst_end+1; n++) {
380 inst0 = inst = code->inst[n].inst0;
399 fprintf(stderr,"\t1:RGB_ADDR 0x%08x:", code->inst[n].inst1);
400 inst = code->inst[n].inst1;
408 fprintf(stderr,"\t2:ALPHA_ADDR 0x%08x:", code->inst[n].inst2);
409 inst = code->inst[n].inst2;
415 fprintf(stderr,"\t3 RGB_INST: 0x%08x:", code->inst[n].inst3)
    [all...]
  /art/dexlayout/
dexlayout.h 136 void DumpBytecodes(uint32_t idx, const dex_ir::CodeItem* code, uint32_t code_offset);
137 void DumpCatches(const dex_ir::CodeItem* code);
142 const dex_ir::CodeItem* code,
152 void DumpInstruction(const dex_ir::CodeItem* code,
158 void DumpLocalInfo(const dex_ir::CodeItem* code);
159 void DumpMethod(uint32_t idx, uint32_t flags, const dex_ir::CodeItem* code, int i);
160 void DumpPositionInfo(const dex_ir::CodeItem* code);
177 void DumpCFG(const DexFile* dex_file, uint32_t dex_method_idx, const DexFile::CodeItem* code);
  /bionic/libc/kernel/uapi/linux/
fsmap.h 48 #define FMR_OWNER(type,code) (((__u64) type << 32) | ((__u64) code & 0xFFFFFFFFULL))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/
demo.py 19 self.visit(node.code, node.name)
24 self.visit(node.code, None)
  /external/chromium-trace/catapult/systrace/atrace_helper/jni/
Application.mk 2 # Use of this source code is governed by a BSD-style license that can be
  /external/clang/test/CodeGen/
builtins-ppc-htm.c 4 void test1(long int *r, int code, long int *a, long int *b) {
16 r[4] = __builtin_tabort (code);
  /external/deqp/executor/
xeTestCaseResult.cpp 32 const char* getTestStatusCodeName (TestStatusCode code)
34 switch (code)
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
Comparison.java 19 import com.android.dx.rop.code.Rop;
20 import com.android.dx.rop.code.Rops;
28 /** {@code a < b}. Supports int only. */
36 /** {@code a <= b}. Supports int only. */
44 /** {@code a == b}. Supports int and reference types. */
52 /** {@code a >= b}. Supports int only. */
60 /** {@code a > b}. Supports int only. */
68 /** {@code a != b}. Supports int and reference types. */
  /external/e2fsprogs/lib/ss/
listen.c 56 int code; local
89 code = SS_ET_EOF;
104 code = ss_execute_line (sci_idx, line);
105 if (code == SS_ET_COMMAND_NOT_FOUND) {
122 code = 0;
127 return code;
130 void ss_abort_subsystem(int sci_idx, int code)
133 ss_info(sci_idx)->exit_status = code;
  /external/icu/icu4c/source/extra/scrptrun/
srtest.cpp 37 UScriptCode code = scriptRun.getScriptCode(); local
39 printf("Script '%s' from %d to %d.\n", uscript_getName(code), start, end);
  /external/iptables/utils/
nfbpf_compile.c 48 printf("%u %u %u %u,", ins->code, ins->jt, ins->jf, ins->k);
50 printf("%u %u %u %u\n", ins->code, ins->jt, ins->jf, ins->k);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
ArrayExprTest.java 19 String code = "class A { String[] arrSQL; String toExamine = arrSQL[1]; }"; local
20 FieldDeclaration field = JavaParser.parse(code).getClassByName("A").get().getFieldByName("toExamine").get();

Completed in 976 milliseconds

<<41424344454647484950>>