HomeSort by relevance Sort by last modified time
    Searched refs:instr (Results 201 - 225 of 504) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/tools/valgrind/
suppressions.py 385 instr: The instruction to match.
389 def __init__(self, name, report_type, instr, stack, defined_at):
391 self.instr = instr
406 if instr:
407 regex += 'instruction=%s\n' % GlobToRegex(instr)
433 if self.instr:
434 text += "instruction=%s\n" % self.instr
488 instr = None
496 instr = line.replace('instruction=', ''
    [all...]
  /external/chromium_org/v8/src/arm64/
simulator-arm64.h 281 void DoRuntimeCall(Instruction* instr);
306 virtual void Decode(Instruction* instr) {
307 decoder_->Decode(instr);
320 #define DECLARE(A) void Visit##A(Instruction* instr);
575 void AddSubHelper(Instruction* instr, T op2);
582 void AddSubWithCarry(Instruction* instr);
584 void LogicalHelper(Instruction* instr, T op2);
586 void ConditionalCompareHelper(Instruction* instr, T op2);
587 void LoadStoreHelper(Instruction* instr,
590 void LoadStorePairHelper(Instruction* instr, AddrMode addrmode)
    [all...]
lithium-arm64.h 187 static L##type* cast(LInstruction* instr) { \
188 ASSERT(instr->Is##type()); \
189 return reinterpret_cast<L##type*>(instr); \
389 static LGap* cast(LInstruction* instr) {
390 ASSERT(instr->IsGap());
391 return reinterpret_cast<LGap*>(instr);
    [all...]
  /external/chromium_org/v8/src/ia32/
lithium-ia32.h 172 static L##type* cast(LInstruction* instr) { \
173 ASSERT(instr->Is##type()); \
174 return reinterpret_cast<L##type*>(instr); \
327 static LGap* cast(LInstruction* instr) {
328 ASSERT(instr->IsGap());
329 return reinterpret_cast<LGap*>(instr);
    [all...]
  /external/chromium_org/v8/src/x87/
lithium-x87.h 173 static L##type* cast(LInstruction* instr) { \
174 ASSERT(instr->Is##type()); \
175 return reinterpret_cast<L##type*>(instr); \
332 static LGap* cast(LInstruction* instr) {
333 ASSERT(instr->IsGap());
334 return reinterpret_cast<LGap*>(instr);
    [all...]
  /external/chromium_org/v8/src/arm/
lithium-arm.h 175 static L##type* cast(LInstruction* instr) { \
176 ASSERT(instr->Is##type()); \
177 return reinterpret_cast<L##type*>(instr); \
331 static LGap* cast(LInstruction* instr) {
332 ASSERT(instr->IsGap());
333 return reinterpret_cast<LGap*>(instr);
    [all...]
  /external/chromium_org/v8/src/mips/
lithium-mips.h 172 static L##type* cast(LInstruction* instr) { \
173 ASSERT(instr->Is##type()); \
174 return reinterpret_cast<L##type*>(instr); \
328 static LGap* cast(LInstruction* instr) {
329 ASSERT(instr->IsGap());
330 return reinterpret_cast<LGap*>(instr);
    [all...]
  /external/chromium_org/v8/src/x64/
lithium-x64.h 172 static L##type* cast(LInstruction* instr) { \
173 ASSERT(instr->Is##type()); \
174 return reinterpret_cast<L##type*>(instr); \
335 static LGap* cast(LInstruction* instr) {
336 ASSERT(instr->IsGap());
337 return reinterpret_cast<LGap*>(instr);
    [all...]
  /art/compiler/optimizing/
graph_test.cc 31 HInstruction* instr = new (allocator) HIntConstant(4); local
32 if_block->AddInstruction(instr);
33 HInstruction* equal = new (allocator) HEqual(instr, instr);
35 instr = new (allocator) HIf(equal);
36 if_block->AddInstruction(instr);
code_generator_arm.h 90 virtual void Visit##name(H##name* instr);
108 virtual void Visit##name(H##name* instr);
code_generator_x86.h 91 virtual void Visit##name(H##name* instr);
109 virtual void Visit##name(H##name* instr);
code_generator_x86_64.h 88 virtual void Visit##name(H##name* instr);
106 virtual void Visit##name(H##name* instr);
  /external/valgrind/main/callgrind/
callstack.c 239 UInt instr = from->bb->jmp[jmp].instr; local
241 from->bb->instr[instr].instr_offset +
242 from->bb->instr[instr].instr_size;
  /external/chromium_org/ppapi/generators/
idl_c_proto.py 717 def CleanString(instr):
718 instr = instr.strip()
719 instr = instr.split()
720 return ' '.join(instr)
729 instr = node.GetOneOf('Comment')
730 if not instr: continue
731 instr.Dump()
732 instr = CleanString(instr.GetName()
    [all...]
  /external/valgrind/main/VEX/priv/
host_arm_defs.c 2781 UInt instr; local
2799 UInt instr; local
2817 UInt instr; local
2903 UInt instr; local
2948 UInt instr, bP; local
2987 UInt instr, subopc; local
3015 UInt instr, subopc; local
3032 UInt instr; local
3059 UInt instr = skeletal_RI84(i->ARMin.CmpOrTst.argR); local
3069 UInt instr = skeletal_RI84(i->ARMin.Mov.src); local
3105 UInt instr, bP; local
3135 UInt bP, imm8hi, imm8lo, instr; local
3182 UInt bP, imm8hi, imm8lo, instr; local
3375 UInt instr = skeletal_RI84(i->ARMin.CMov.src); local
3386 UInt instr; local
    [all...]
  /external/chromium_org/tools/code_coverage/
croc.css 81 span.instr {
  /external/chromium_org/v8/src/
lithium.cc 306 void LChunk::AddInstruction(LInstruction* instr, HBasicBlock* block) {
308 gap->set_hydrogen_value(instr->hydrogen_value());
310 if (instr->IsControl()) {
313 instructions_.Add(instr, zone());
316 instructions_.Add(instr, zone());
319 if (instr->HasPointerMap()) {
320 pointer_maps_.Add(instr->pointer_map(), zone());
321 instr->pointer_map()->set_lithium_position(index);
  /external/vixl/src/a64/
simulator-a64.h 62 const Instr kPrintfOpcode = 0xdeb1;
200 #define DECLARE(A) void Visit##A(Instruction* instr);
477 void AddSubHelper(Instruction* instr, int64_t op2);
483 void LogicalHelper(Instruction* instr, int64_t op2);
484 void ConditionalCompareHelper(Instruction* instr, int64_t op2);
485 void LoadStoreHelper(Instruction* instr,
488 void LoadStorePairHelper(Instruction* instr, AddrMode addrmode);
577 bool FPProcessNaNs(Instruction* instr);
586 void DoPrintf(Instruction* instr);
  /frameworks/testing/support/src/android/support/test/internal/runner/junit4/
AndroidJUnit4ClassRunner.java 51 public AndroidJUnit4ClassRunner(Class<?> klass, Instrumentation instr, Bundle bundle)
54 mInstr = instr;
  /bionic/libc/kernel/uapi/sound/
sfnt_info.h 127 unsigned char instr; member in struct:soundfont_voice_rec_hdr
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
gas-parse-intel.c 37 extern yasm_bytecode *gas_intel_syntax_parse_instr(yasm_parser_nasm *parser_nasm, unsigned char *instr);
  /external/emma/ant/ant14/com/vladium/emma/
emmaTask.java 21 import com.vladium.emma.instr.instrTask;
70 return addTask (new instrTask (this), getNestedTaskName ("instr"));
  /external/emma/core/java12/com/vladium/emma/rt/
InstrClassLoadHook.java 20 import com.vladium.emma.instr.InstrVisitor;
  /external/emma/lib/
emma_ant.jar 
  /external/kernel-headers/original/uapi/sound/
sfnt_info.h 57 #define SNDRV_SFNT_REMOVE_INFO 9 /* optarg=(bank<<8)|instr */
146 unsigned char instr; /* midi preset number */ member in struct:soundfont_voice_rec_hdr

Completed in 1318 milliseconds

1 2 3 4 5 6 7 891011>>