/external/smack/src/org/xbill/DNS/ |
D | Opcode.java | 30 private static Mnemonic opcodes = new Mnemonic("DNS Opcode", field in Opcode 34 opcodes.setMaximum(0xF); 35 opcodes.setPrefix("RESERVED"); 36 opcodes.setNumericAllowed(true); 38 opcodes.add(QUERY, "QUERY"); in opcodes.add() 39 opcodes.add(IQUERY, "IQUERY"); in opcodes.add() 40 opcodes.add(STATUS, "STATUS"); in opcodes.add() 41 opcodes.add(NOTIFY, "NOTIFY"); in opcodes.add() 42 opcodes.add(UPDATE, "UPDATE"); in opcodes.add() 51 return opcodes.getText(i); in string() [all …]
|
/external/llvm/test/CodeGen/ARM/ |
D | tail-dup.ll | 12 define i32 @fn(i32* nocapture %opcodes) nounwind readonly ssp { 14 %0 = load i32* %opcodes, align 4 20 %1 = load i32* %opcodes.addr.0, align 4 26 %2 = load i32* %opcodes.addr.0, align 4 32 …%opcodes.pn = phi i32* [ %opcodes, %entry ], [ %opcodes.addr.0, %DECREMENT ], [ %opcodes.addr.0, %… 34 %opcodes.addr.0 = getelementptr inbounds i32* %opcodes.pn, i32 1
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
D | DexBackedDexFile.java | 49 private final Opcodes opcodes; field in DexBackedDexFile 64 … private DexBackedDexFile(Opcodes opcodes, @Nonnull byte[] buf, int offset, boolean verifyMagic) { in DexBackedDexFile() argument 67 this.opcodes = opcodes; in DexBackedDexFile() 87 public DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull BaseDexBuffer buf) { in DexBackedDexFile() argument 88 this(opcodes, buf.buf); in DexBackedDexFile() 91 public DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf, int offset) { in DexBackedDexFile() argument 92 this(opcodes, buf, offset, false); in DexBackedDexFile() 95 public DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf) { in DexBackedDexFile() argument 96 this(opcodes, buf, 0, true); in DexBackedDexFile() 99 … public static DexBackedDexFile fromInputStream(@Nonnull Opcodes opcodes, @Nonnull InputStream is) in fromInputStream() argument [all …]
|
D | DexBackedOdexFile.java | 54 public DexBackedOdexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] odexBuf, byte[] dexBuf) { in DexBackedOdexFile() argument 55 super(opcodes, dexBuf); in DexBackedOdexFile() 85 … public static DexBackedOdexFile fromInputStream(@Nonnull Opcodes opcodes, @Nonnull InputStream is) 112 return new DexBackedOdexFile(opcodes, odexBuf, dexBuf);
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
D | OutputFinisher.java | 358 Dop[] opcodes = makeOpcodesArray(); in finishProcessingAndGetList() local 359 reserveRegisters(opcodes); in finishProcessingAndGetList() 360 massageInstructions(opcodes); in finishProcessingAndGetList() 395 private void reserveRegisters(Dop[] opcodes) { in reserveRegisters() argument 403 int newReservedCount = calculateReservedCount(opcodes); in reserveRegisters() 446 private int calculateReservedCount(Dop[] opcodes) { in calculateReservedCount() argument 459 Dop originalOpcode = opcodes[i]; in calculateReservedCount() 477 opcodes[i] = newOpcode; in calculateReservedCount() 553 private void massageInstructions(Dop[] opcodes) { in massageInstructions() argument 567 Dop currentOpcode = opcodes[i]; in massageInstructions() [all …]
|
/external/lldb/include/lldb/Symbol/ |
D | UnwindPlan.h | 181 GetDWARFExpr (const uint8_t **opcodes, uint16_t& len) const in GetDWARFExpr() argument 185 *opcodes = m_location.expr.opcodes; in GetDWARFExpr() 190 *opcodes = NULL; in GetDWARFExpr() 196 SetAtDWARFExpression (const uint8_t *opcodes, uint32_t len); 199 SetIsDWARFExpression (const uint8_t *opcodes, uint32_t len); 205 return m_location.expr.opcodes; in GetDWARFExpressionBytes() 234 const uint8_t *opcodes; member
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
D | RawDexFile.java | 50 public RawDexFile(@Nonnull Opcodes opcodes, @Nonnull BaseDexBuffer buf) { in RawDexFile() argument 51 super(opcodes, buf); in RawDexFile() 55 public RawDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf) { in RawDexFile() argument 56 super(opcodes, buf); in RawDexFile()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/ |
D | DexFileFactory.java | 58 …public static DexBackedDexFile loadDexFile(File dexFile, @Nonnull Opcodes opcodes) throws IOExcept… in loadDexFile() argument 79 return new DexBackedDexFile(opcodes, dexBytes); in loadDexFile() 98 return DexBackedDexFile.fromInputStream(opcodes, inputStream); in loadDexFile() 106 return DexBackedOdexFile.fromInputStream(opcodes, inputStream); in loadDexFile()
|
/external/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/ |
D | handlebars-1.0.0.beta.6.js | 743 var opcodes = this.opcodes, opcode, nextCode; 746 for(var i=0, l=opcodes.length; i<l; i++) { 747 opcode = opcodes[i]; 750 name = opcodes[++i]; 751 value = opcodes[++i]; 760 nextCode = opcodes[++i]; 811 this.opcodes = []; 965 this.opcodes.push(Compiler.OPCODE_MAP[name]); 966 if(val1 !== undefined) { this.opcodes.push(val1); } 967 if(val2 !== undefined) { this.opcodes.push(val2); } [all …]
|
/external/lldb/source/Symbol/ |
D | UnwindPlan.cpp | 42 … return !memcmp (m_location.expr.opcodes, rhs.m_location.expr.opcodes, m_location.expr.length); in operator ==() 52 UnwindPlan::Row::RegisterLocation::SetAtDWARFExpression (const uint8_t *opcodes, uint32_t len) in SetAtDWARFExpression() argument 55 m_location.expr.opcodes = opcodes; in SetAtDWARFExpression() 62 UnwindPlan::Row::RegisterLocation::SetIsDWARFExpression (const uint8_t *opcodes, uint32_t len) in SetIsDWARFExpression() argument 65 m_location.expr.opcodes = opcodes; in SetIsDWARFExpression()
|
/external/lldb/source/Expression/ |
D | DWARFExpression.cpp | 1295 const DataExtractor& opcodes, in Evaluate() argument 1333 if (!opcodes.ValidOffsetForDataOfSize(opcodes_offset, opcodes_length)) in Evaluate() 1342 while (opcodes.ValidOffset(offset) && offset < end_offset) in Evaluate() 1345 const uint8_t op = opcodes.GetU8(&offset); in Evaluate() 1367 stack.push_back(Scalar(opcodes.GetAddress(&offset))); in Evaluate() 1491 uint8_t size = opcodes.GetU8(&offset); in Evaluate() 1628 …case DW_OP_const1u : stack.push_back(Scalar(( uint8_t)opcodes.GetU8 (&offset))); br… in Evaluate() 1629 …case DW_OP_const1s : stack.push_back(Scalar(( int8_t)opcodes.GetU8 (&offset))); br… in Evaluate() 1630 …case DW_OP_const2u : stack.push_back(Scalar((uint16_t)opcodes.GetU16 (&offset))); b… in Evaluate() 1631 …case DW_OP_const2s : stack.push_back(Scalar(( int16_t)opcodes.GetU16 (&offset))); b… in Evaluate() [all …]
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | i915_debug_fp.c | 34 static const char *opcodes[0x20] = { variable 252 printf("%s ", opcodes[opcode]); in print_arith_op() 280 printf("%s ", opcodes[opcode]); in print_tex_op() 293 printf("%s ", opcodes[opcode]); in print_dcl_op()
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
D | i915_debug_fp.c | 34 static const char *opcodes[0x20] = { variable 252 printf("%s ", opcodes[opcode]); in print_arith_op() 280 printf("%s ", opcodes[opcode]); in print_tex_op() 293 printf("%s ", opcodes[opcode]); in print_dcl_op()
|
/external/smali/smali/src/main/antlr3/ |
D | smaliTreeWalker.g | 80 private Opcodes opcodes = new Opcodes(apiLevel); 88 this.opcodes = new Opcodes(apiLevel); 750 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT10t.text); 758 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT10x.text); 766 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT11n.text); 779 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT11x.text); 789 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT12x.text); 800 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT20bc.text); 813 Opcode opcode = opcodes.getOpcodeByName($INSTRUCTION_FORMAT20t.text); 821 Opcode opcode = opcodes.getOpcodeByName($inst.text); [all …]
|
/external/mesa3d/src/gallium/drivers/i915/ |
D | i915_debug_fp.c | 49 static const char *opcodes[0x20] = { variable 268 PRINTF(stream, "%s ", opcodes[opcode]); in print_arith_op() 297 PRINTF(stream, "%s ", opcodes[opcode]); in print_tex_op() 325 PRINTF(stream, "%s ", opcodes[opcode]); in print_dcl_op()
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
D | i915_debug_fp.c | 49 static const char *opcodes[0x20] = { variable 268 PRINTF(stream, "%s ", opcodes[opcode]); in print_arith_op() 297 PRINTF(stream, "%s ", opcodes[opcode]); in print_tex_op() 325 PRINTF(stream, "%s ", opcodes[opcode]); in print_dcl_op()
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
D | gen-fma-test.py | 34 def gen(opcodes, combos, optypes, orders): argument 35 for opcode in opcodes:
|
/external/llvm/test/tools/llvm-readobj/ARM/ |
D | unwind.s | 52 .section .opcodes 54 .type opcodes,%function 55 opcodes: label 215 @ CHECK: SectionName: .ARM.exidx.opcodes 219 @ CHECK: FunctionName: opcodes
|
/external/javassist/src/main/javassist/bytecode/ |
D | InstructionPrinter.java | 28 private final static String opcodes[] = Mnemonic.OPCODE; field in InstructionPrinter 62 if (opcode > opcodes.length || opcode < 0) in instructionString() 65 String opstring = opcodes[opcode]; in instructionString() 164 return opcodes[opcode] + " " + index; in wide()
|
/external/chromium_org/sandbox/win/src/ |
D | policy_low_level.cc | 99 PolicyOpcode* opcodes_start = ¤t_buffer->opcodes[svc_opcode_count]; in Done() 138 char* opcode_buffer = reinterpret_cast<char*>(&buffer_->opcodes[0]); in PolicyRule() 181 op = &buffer_->opcodes[buffer_->opcode_count - 1]; in GenStringOpcode() 317 PolicyOpcode& opcode = buffer_->opcodes[ix]; in RebindCopy()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/ |
D | jsdifflib.js | 110 this.matching_blocks = this.opcodes = null; 116 this.matching_blocks = this.opcodes = this.fullbcount = null; 281 if (this.opcodes != null) return this.opcodes; 285 this.opcodes = answer;
|
/external/llvm/test/CodeGen/Thumb/ |
D | 2009-12-17-pre-regalloc-taildup.ll | 13 define i32 @interpret_threaded(i8* nocapture %opcodes) nounwind readonly optsize { 15 %0 = load i8* %opcodes, align 1 ; <i8> [#uses=1] 24 %opcodes_addr.0 = getelementptr i8* %opcodes, i32 %indvar ; <i8*> [#uses=4]
|
/external/chromium_org/third_party/sqlite/src/ |
D | Makefile.vxworks | 208 notify.o opcodes.o os.o os_os2.o os_unix.o os_win.o \ 351 opcodes.c \ 352 opcodes.h \ 418 opcodes.h \ 519 opcodes.c: opcodes.h $(TOP)/mkopcodec.awk 520 sort -n -b -k 3 opcodes.h | $(NAWK) -f $(TOP)/mkopcodec.awk >opcodes.c 522 opcodes.h: parse.h $(TOP)/src/vdbe.c $(TOP)/mkopcodeh.awk 524 $(NAWK) -f $(TOP)/mkopcodeh.awk >opcodes.h 656 rm -f *.o sqlite3$(EXE) libsqlite3.a sqlite3.h opcodes.*
|
D | main.mk | 63 notify.o opcodes.o os.o os_os2.o os_unix.o os_win.o \ 219 opcodes.c \ 220 opcodes.h \ 332 opcodes.h \ 434 opcodes.c: opcodes.h $(TOP)/mkopcodec.awk 435 sort -n -b -k 3 opcodes.h | $(NAWK) -f $(TOP)/mkopcodec.awk >opcodes.c 437 opcodes.h: parse.h $(TOP)/src/vdbe.c $(TOP)/mkopcodeh.awk 439 $(NAWK) -f $(TOP)/mkopcodeh.awk >opcodes.h 600 rm -f *.o sqlite3 libsqlite3.a sqlite3.h opcodes.*
|
/external/emma/core/java12/com/vladium/jcd/opcodes/ |
D | IOpcodeVisitor.java | 9 package com.vladium.jcd.opcodes;
|