Searched defs:opcodes (Results 1 - 25 of 26) sorted by relevance

12

/external/emma/core/java12/com/vladium/jcd/opcodes/
H A DIOpcodeVisitor.java9 package com.vladium.jcd.opcodes;
H A DIOpcodes.java9 package com.vladium.jcd.opcodes;
223 // reserved opcodes:
/external/llvm/test/tools/llvm-readobj/ARM/
H A Dunwind.s52 .section .opcodes
54 .type opcodes,%function
55 opcodes: label
215 @ CHECK: SectionName: .ARM.exidx.opcodes
219 @ CHECK: FunctionName: opcodes
/external/smack/src/org/xbill/DNS/
H A DOpcode.java6 * Constants and functions relating to DNS opcodes
30 private static Mnemonic opcodes = new Mnemonic("DNS Opcode", field in class:Opcode
34 opcodes.setMaximum(0xF);
35 opcodes.setPrefix("RESERVED");
36 opcodes.setNumericAllowed(true);
38 opcodes.add(QUERY, "QUERY");
39 opcodes.add(IQUERY, "IQUERY");
40 opcodes.add(STATUS, "STATUS");
41 opcodes.add(NOTIFY, "NOTIFY");
42 opcodes
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DDexFileFactory.java58 public static DexBackedDexFile loadDexFile(File dexFile, @Nonnull Opcodes opcodes) throws IOException { argument
79 return new DexBackedDexFile(opcodes, dexBytes);
98 return DexBackedDexFile.fromInputStream(opcodes, inputStream);
106 return DexBackedOdexFile.fromInputStream(opcodes, inputStream);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
H A DDexBackedOdexFile.java54 public DexBackedOdexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] odexBuf, byte[] dexBuf) { argument
55 super(opcodes, dexBuf);
85 public static DexBackedOdexFile fromInputStream(@Nonnull Opcodes opcodes, @Nonnull InputStream is) argument
112 return new DexBackedOdexFile(opcodes, odexBuf, dexBuf);
H A DDexBackedDexFile.java49 private final Opcodes opcodes; field in class:DexBackedDexFile
64 private DexBackedDexFile(Opcodes opcodes, @Nonnull byte[] buf, int offset, boolean verifyMagic) { argument
67 this.opcodes = opcodes;
87 public DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull BaseDexBuffer buf) { argument
88 this(opcodes, buf.buf);
91 public DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf, int offset) { argument
92 this(opcodes, buf, offset, false);
95 public DexBackedDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf) { argument
96 this(opcodes, bu
99 fromInputStream(@onnull Opcodes opcodes, @Nonnull InputStream is) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
H A DRawDexFile.java50 public RawDexFile(@Nonnull Opcodes opcodes, @Nonnull BaseDexBuffer buf) { argument
51 super(opcodes, buf);
55 public RawDexFile(@Nonnull Opcodes opcodes, @Nonnull byte[] buf) { argument
56 super(opcodes, buf);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
H A Di915_debug_fp.c34 static const char *opcodes[0x20] = { variable
252 printf("%s ", opcodes[opcode]);
280 printf("%s ", opcodes[opcode]);
293 printf("%s ", opcodes[opcode]);
/external/javassist/src/main/javassist/bytecode/
H A DInstructionPrinter.java28 private final static String opcodes[] = Mnemonic.OPCODE; field in class:InstructionPrinter
62 if (opcode > opcodes.length || opcode < 0)
65 String opstring = opcodes[opcode];
164 return opcodes[opcode] + " " + index;
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Di915_debug_fp.c34 static const char *opcodes[0x20] = { variable
252 printf("%s ", opcodes[opcode]);
280 printf("%s ", opcodes[opcode]);
293 printf("%s ", opcodes[opcode]);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/
H A Di915_debug_fp.c49 static const char *opcodes[0x20] = { variable
268 PRINTF(stream, "%s ", opcodes[opcode]);
297 PRINTF(stream, "%s ", opcodes[opcode]);
325 PRINTF(stream, "%s ", opcodes[opcode]);
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_debug_fp.c49 static const char *opcodes[0x20] = { variable
268 PRINTF(stream, "%s ", opcodes[opcode]);
297 PRINTF(stream, "%s ", opcodes[opcode]);
325 PRINTF(stream, "%s ", opcodes[opcode]);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DOutputFinisher.java358 Dop[] opcodes = makeOpcodesArray();
359 reserveRegisters(opcodes);
360 massageInstructions(opcodes);
372 * @return {@code non-null;} the array of opcodes
388 * them. It also updates the given {@code opcodes} array so
392 * @param opcodes {@code non-null;} array of per-instruction
395 private void reserveRegisters(Dop[] opcodes) { argument
403 int newReservedCount = calculateReservedCount(opcodes);
439 * {@code opcodes} list to help avoid extra work in future
442 * @param opcodes {
446 calculateReservedCount(Dop[] opcodes) argument
553 massageInstructions(Dop[] opcodes) argument
593 performExpansion(Dop[] opcodes) argument
[all...]
/external/lldb/source/Symbol/
H A DUnwindPlan.cpp42 return !memcmp (m_location.expr.opcodes, rhs.m_location.expr.opcodes, m_location.expr.length);
52 UnwindPlan::Row::RegisterLocation::SetAtDWARFExpression (const uint8_t *opcodes, uint32_t len) argument
55 m_location.expr.opcodes = opcodes;
62 UnwindPlan::Row::RegisterLocation::SetIsDWARFExpression (const uint8_t *opcodes, uint32_t len) argument
65 m_location.expr.opcodes = opcodes;
/external/chromium_org/sandbox/win/src/
H A Dpolicy_engine_opcodes.h11 // The low-level policy is implemented using the concept of policy 'opcodes'.
34 // opcodes which are evaluated in sequence. The evaluation is done in
35 // groups of opcodes that have N comparison opcodes plus 1 action opcode:
72 // The following are the implemented opcodes.
96 // Use OR when evaluating this set of opcodes. The policy evaluator by default
242 // A PolicyBuffer is a variable size structure that contains all the opcodes
246 PolicyOpcode opcodes[1]; member in struct:sandbox::PolicyBuffer
252 // The factory works by creating the opcodes using a chunk of memory given
253 // in the constructor. The opcodes themselve
[all...]
/external/lldb/include/lldb/Symbol/
H A DUnwindPlan.h181 GetDWARFExpr (const uint8_t **opcodes, uint16_t& len) const argument
185 *opcodes = m_location.expr.opcodes;
190 *opcodes = NULL;
196 SetAtDWARFExpression (const uint8_t *opcodes, uint32_t len);
199 SetIsDWARFExpression (const uint8_t *opcodes, uint32_t len);
205 return m_location.expr.opcodes;
234 const uint8_t *opcodes; member in struct:lldb_private::UnwindPlan::Row::RegisterLocation::__anon25250::__anon25251
/external/lldb/source/Expression/
H A DDWARFExpression.cpp710 // We have a normal location that contains DW_OP location opcodes
951 // All opcodes that have a single ULEB (signed or unsigned) argument
993 // All opcodes that have a 2 ULEB (signed or unsigned) arguments
1295 const DataExtractor& opcodes,
1332 // Make sure all of the data is available in opcodes.
1333 if (!opcodes.ValidOffsetForDataOfSize(opcodes_offset, opcodes_length))
1336 error_ptr->SetErrorString ("invalid offset and/or length for opcodes buffer.");
1342 while (opcodes.ValidOffset(offset) && offset < end_offset)
1345 const uint8_t op = opcodes.GetU8(&offset);
1367 stack.push_back(Scalar(opcodes
1289 Evaluate( ExecutionContext *exe_ctx, ClangExpressionVariableList *expr_locals, ClangExpressionDeclMap *decl_map, RegisterContext *reg_ctx, const DataExtractor& opcodes, const lldb::offset_t opcodes_offset, const lldb::offset_t opcodes_length, const uint32_t reg_kind, const Value* initial_value_ptr, Value& result, Error *error_ptr ) argument
[all...]
/external/fonttools/Lib/fontTools/
H A DcffLib.py1347 op, argType = self.opcodes[name]
1395 opcodes = buildOpcodeDict(topDictOperators) variable in class:TopDictCompiler
1440 opcodes = buildOpcodeDict(topDictOperators) variable in class:FontDictCompiler
1453 opcodes = buildOpcodeDict(privateDictOperators) variable in class:PrivateDictCompiler
/external/fonttools/Tools/fontTools/
H A DcffLib.py1347 op, argType = self.opcodes[name]
1395 opcodes = buildOpcodeDict(topDictOperators) variable in class:TopDictCompiler
1440 opcodes = buildOpcodeDict(topDictOperators) variable in class:FontDictCompiler
1453 opcodes = buildOpcodeDict(privateDictOperators) variable in class:PrivateDictCompiler
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliParser.java326 private Opcodes opcodes = new Opcodes(apiLevel); field in class:smaliParser
337 this.opcodes = new Opcodes(apiLevel);
13236 if (!allowOdex || opcodes.getOpcodeByName((INSTRUCTION_FORMAT20bc291!=null?INSTRUCTION_FORMAT20bc291.getText():null)) == null || apiLevel >= 14) {
13513 if (!allowOdex || opcodes.getOpcodeByName((INSTRUCTION_FORMAT21c_FIELD_ODEX301!=null?INSTRUCTION_FORMAT21c_FIELD_ODEX301.getText():null)) == null || apiLevel >= 14) {
14404 if (!allowOdex || opcodes.getOpcodeByName((INSTRUCTION_FORMAT22c_FIELD_ODEX341!=null?INSTRUCTION_FORMAT22c_FIELD_ODEX341.getText():null)) == null || apiLevel >= 14) {
H A DsmaliTreeWalker.java346 private Opcodes opcodes = new Opcodes(apiLevel); field in class:smaliTreeWalker
354 this.opcodes = new Opcodes(apiLevel);
4463 Opcode opcode = opcodes.getOpcodeByName((INSTRUCTION_FORMAT10t104!=null?INSTRUCTION_FORMAT10t104.getText():null));
4496 Opcode opcode = opcodes.getOpcodeByName((INSTRUCTION_FORMAT10x106!=null?INSTRUCTION_FORMAT10x106.getText():null));
4536 Opcode opcode = opcodes.getOpcodeByName((INSTRUCTION_FORMAT11n107!=null?INSTRUCTION_FORMAT11n107.getText():null));
4576 Opcode opcode = opcodes.getOpcodeByName((INSTRUCTION_FORMAT11x110!=null?INSTRUCTION_FORMAT11x110.getText():null));
4615 Opcode opcode = opcodes.getOpcodeByName((INSTRUCTION_FORMAT12x112!=null?INSTRUCTION_FORMAT12x112.getText():null));
4661 Opcode opcode = opcodes.getOpcodeByName((INSTRUCTION_FORMAT20bc113!=null?INSTRUCTION_FORMAT20bc113.getText():null));
4704 Opcode opcode = opcodes.getOpcodeByName((INSTRUCTION_FORMAT20t116!=null?INSTRUCTION_FORMAT20t116.getText():null));
4752 Opcode opcode = opcodes
[all...]
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 2324 milliseconds

12