/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_arp.h | 21 __be16 opcode; member in struct:ebt_arp_info
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_arp.h | 21 __be16 opcode; member in struct:ebt_arp_info
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_arp.h | 21 __be16 opcode; member in struct:ebt_arp_info
|
/sdk/emulator/qtools/ |
Android.mk | 21 thumbdis.cpp opcode.cpp read_elf.cpp parse_options.cpp 29 opcode.cpp read_elf.cpp parse_options.cpp 53 opcode.cpp read_elf.cpp parse_options.cpp 61 thumbdis.cpp opcode.cpp 69 opcode.cpp read_elf.cpp parse_options.cpp gtrace.cpp 77 thumbdis.cpp opcode.cpp read_elf.cpp parse_options.cpp dmtrace.cpp 85 thumbdis.cpp opcode.cpp read_elf.cpp parse_options.cpp 93 thumbdis.cpp opcode.cpp read_elf.cpp parse_options.cpp 101 thumbdis.cpp opcode.cpp read_elf.cpp parse_options.cpp
|
/dalvik/opcode-gen/ |
opcode-gen.awk | 16 # Awk helper script for opcode-gen. 106 emission == "opcode-info-defs" { 122 emission == "dops-init" || emission == "opcode-info-init" { 154 emission == "libdex-opcode-enum" { 171 emission == "libdex-opcode-names" { 285 # Define an opcode. 354 # each opcode, which one should be tried next when doing instruction 375 # Given an opcode by index, find the next opcode in the same family 378 # match. This returns the index of the matching opcode or -1 if ther [all...] |
/external/dexmaker/src/dx/java/com/android/dx/io/ |
Opcodes.java | 20 * All the Dalvik opcode value constants. See the related spec 21 * document for the meaning and instruction format of each opcode. 25 * pseudo-opcode used for nonstandard format payload "instructions". TODO: 32 * pseudo-opcode used to indicate there is no next opcode; used 33 * in opcode chaining lists 37 /** minimum valid opcode value */ 40 /** maximum valid opcode value */ 43 // BEGIN(opcodes); GENERATED AUTOMATICALLY BY opcode-gen 303 // TODO: Generate these payload opcodes with opcode-gen [all...] |
/external/elfutils/libdw/ |
dwarf_getsrclines.c | 211 /* The opcode base. */ 214 /* Remember array with the standard opcode length (-1 to account for 215 the opcode with value zero not being mentioned). */ 361 unsigned int opcode; local 365 /* Read the opcode. */ 366 opcode = *linep++; 368 /* Is this a special opcode? */ 369 if (likely (opcode >= opcode_base)) 371 /* Yes. Handling this is quite easy since the opcode value 374 opcode = (desired line increment - line_base [all...] |
/external/llvm/lib/Analysis/ |
TargetTransformInfo.cpp | 52 unsigned TargetTransformInfo::getOperationCost(unsigned Opcode, Type *Ty, 54 return PrevTTI->getOperationCost(Opcode, Ty, OpTy); 164 unsigned TargetTransformInfo::getArithmeticInstrCost(unsigned Opcode, 168 return PrevTTI->getArithmeticInstrCost(Opcode, Ty, Op1Info, Op2Info); 176 unsigned TargetTransformInfo::getCastInstrCost(unsigned Opcode, Type *Dst, 178 return PrevTTI->getCastInstrCost(Opcode, Dst, Src); 181 unsigned TargetTransformInfo::getCFInstrCost(unsigned Opcode) const { 182 return PrevTTI->getCFInstrCost(Opcode); 185 unsigned TargetTransformInfo::getCmpSelInstrCost(unsigned Opcode, Type *ValTy, 187 return PrevTTI->getCmpSelInstrCost(Opcode, ValTy, CondTy) [all...] |
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
mux.py | 154 def _create_control_block_length_value(channel_id, opcode, flags, value): 155 """Creates a control block that consists of objective channel id, opcode, 156 flags, encoded length of opcode specific value, and the value. 161 opcode: opcode of the control block. 162 flags: 3bit opcode specific flags. 163 value: opcode specific data. 168 if (opcode != _MUX_OPCODE_ADD_CHANNEL_REQUEST and 169 opcode != _MUX_OPCODE_ADD_CHANNEL_RESPONSE and 170 opcode != _MUX_OPCODE_DROP_CHANNEL) [all...] |
/dalvik/vm/compiler/ |
Loop.cpp | 89 ALOGE(" opcode %d", loopAnalysis->loopBranchOpcode); 122 static Opcode negateOpcode(Opcode opcode) 124 switch (opcode) { 152 ALOGE("opcode %d cannot be negated", opcode); 156 return (Opcode)-1; // unreached 207 Opcode opcode = branch->dalvikInsn.opcode local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/ |
sm4_parse.cpp | 195 sm4_opcode opcode = (sm4_opcode)insntok.opcode; 196 check(opcode < SM4_OPCODE_COUNT); 198 if(opcode == SM4_OPCODE_CUSTOMDATA) 206 dcl.opcode = SM4_OPCODE_CUSTOMDATA; 216 if(opcode == SM4_OPCODE_HS_FORK_PHASE || opcode == SM4_OPCODE_HS_JOIN_PHASE) 222 dcl.opcode = opcode; 225 if((opcode >= SM4_OPCODE_DCL_RESOURCE && opcode <= SM4_OPCODE_DCL_GLOBAL_FLAGS [all...] |
/external/javassist/src/test/test/javassist/bytecode/analysis/ |
AnalyzerTest.java | 15 import javassist.bytecode.Opcode; 74 int pos = findOpcode(info, Opcode.RETURN); 79 private static int findOpcode(MethodInfo info, int opcode) throws BadBytecode { 86 if (iter.byteAt(pos) == opcode) 101 if (iter.byteAt(pos) == Opcode.ARETURN) 121 if (iter.byteAt(pos) == Opcode.AALOAD) 142 private static void addJump(Bytecode code, int opcode, int pos) { 144 code.addOpcode(opcode); 204 /* 1 */ addJump(code, Opcode.GOTO, 5); 208 /* 9 */ code.addOpcode(Opcode.ARETURN) [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/ |
sm4_parse.cpp | 195 sm4_opcode opcode = (sm4_opcode)insntok.opcode; 196 check(opcode < SM4_OPCODE_COUNT); 198 if(opcode == SM4_OPCODE_CUSTOMDATA) 206 dcl.opcode = SM4_OPCODE_CUSTOMDATA; 216 if(opcode == SM4_OPCODE_HS_FORK_PHASE || opcode == SM4_OPCODE_HS_JOIN_PHASE) 222 dcl.opcode = opcode; 225 if((opcode >= SM4_OPCODE_DCL_RESOURCE && opcode <= SM4_OPCODE_DCL_GLOBAL_FLAGS [all...] |
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
StubMethodAdapter.java | 250 public void visitInsn(int opcode) { 252 switch (opcode) { 265 mParentVisitor.visitInsn(opcode); 285 public void visitMethodInsn(int opcode, String owner, String name, String desc) { 287 mParentVisitor.visitMethodInsn(opcode, owner, name, desc); 292 public void visitFieldInsn(int opcode, String owner, String name, String desc) { 294 mParentVisitor.visitFieldInsn(opcode, owner, name, desc); 313 public void visitIntInsn(int opcode, int operand) { 315 mParentVisitor.visitIntInsn(opcode, operand); 320 public void visitJumpInsn(int opcode, Label label) [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/ |
mini_disassembler_types.h | 44 // This opcode is not used 46 // This disassembler does not recognize this opcode (error) 156 // Everything that's in an Opcode (see below) except the three 157 // alternative opcode structs for different prefixes. 160 // byte in the opcode. 163 // The opcode type 179 struct Opcode { 181 // byte in the opcode. 184 // The opcode type 197 // Alternative opcode info if certain prefixes are specified [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/ |
mini_disassembler_types.h | 44 // This opcode is not used 46 // This disassembler does not recognize this opcode (error) 156 // Everything that's in an Opcode (see below) except the three 157 // alternative opcode structs for different prefixes. 160 // byte in the opcode. 163 // The opcode type 179 struct Opcode { 181 // byte in the opcode. 184 // The opcode type 197 // Alternative opcode info if certain prefixes are specified [all...] |
/external/javassist/src/main/javassist/convert/ |
TransformAccessArrayField.java | 126 int opcode, String signature) throws BadBytecode { 128 String methodName = getMethodName(opcode); 131 if (opcode == AALOAD) { 165 private String getMethodName(int opcode) { 167 switch (opcode) { 224 private String getLoadReplacementSignature(int opcode) throws BadBytecode { 225 switch (opcode) { 244 throw new BadBytecode(opcode); 247 private String getStoreReplacementSignature(int opcode) throws BadBytecode { 248 switch (opcode) { [all...] |
/external/llvm/lib/Target/SystemZ/ |
SystemZInstrInfo.cpp | 37 // each having the opcode given by NewOpcode. 296 // If Opcode is a move that has a conditional variant, return that variant, 298 static unsigned getConditionalMove(unsigned Opcode) { 299 switch (Opcode) { 307 unsigned Opcode = MI->getOpcode(); 309 getConditionalMove(Opcode)) 339 unsigned Opcode = MI->getOpcode(); 341 if (unsigned CondOpcode = getConditionalMove(Opcode)) { 367 unsigned Opcode; 369 Opcode = SystemZ::LR [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rbug/ |
rbug_texture.c | 417 if (header->opcode != (int32_t)RBUG_OP_TEXTURE_LIST) 425 ret->header.opcode = header->opcode; 439 if (header->opcode != (int32_t)RBUG_OP_TEXTURE_INFO) 450 ret->header.opcode = header->opcode; 466 if (header->opcode != (int32_t)RBUG_OP_TEXTURE_WRITE) 477 ret->header.opcode = header->opcode; 502 if (header->opcode != (int32_t)RBUG_OP_TEXTURE_READ [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/ |
r300_fragprog_emit.c | 105 static unsigned int translate_rgb_opcode(struct r300_fragment_program_compiler * c, rc_opcode opcode) 107 switch(opcode) { 114 error("translate_rgb_opcode: Unknown opcode %s", rc_get_opcode_info(opcode)->Name); 125 static unsigned int translate_alpha_opcode(struct r300_fragment_program_compiler * c, rc_opcode opcode) 127 switch(opcode) { 136 error("translate_rgb_opcode: Unknown opcode %s", rc_get_opcode_info(opcode)->Name); 164 code->alu.inst[ip].rgb_inst = translate_rgb_opcode(c, inst->RGB.Opcode); 165 code->alu.inst[ip].alpha_inst = translate_alpha_opcode(c, inst->Alpha.Opcode); 427 unsigned int opcode; local [all...] |
/external/mesa3d/src/gallium/auxiliary/rbug/ |
rbug_texture.c | 417 if (header->opcode != (int32_t)RBUG_OP_TEXTURE_LIST) 425 ret->header.opcode = header->opcode; 439 if (header->opcode != (int32_t)RBUG_OP_TEXTURE_INFO) 450 ret->header.opcode = header->opcode; 466 if (header->opcode != (int32_t)RBUG_OP_TEXTURE_WRITE) 477 ret->header.opcode = header->opcode; 502 if (header->opcode != (int32_t)RBUG_OP_TEXTURE_READ [all...] |
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
r300_fragprog_emit.c | 105 static unsigned int translate_rgb_opcode(struct r300_fragment_program_compiler * c, rc_opcode opcode) 107 switch(opcode) { 114 error("translate_rgb_opcode: Unknown opcode %s", rc_get_opcode_info(opcode)->Name); 125 static unsigned int translate_alpha_opcode(struct r300_fragment_program_compiler * c, rc_opcode opcode) 127 switch(opcode) { 136 error("translate_rgb_opcode: Unknown opcode %s", rc_get_opcode_info(opcode)->Name); 164 code->alu.inst[ip].rgb_inst = translate_rgb_opcode(c, inst->RGB.Opcode); 165 code->alu.inst[ip].alpha_inst = translate_alpha_opcode(c, inst->Alpha.Opcode); 427 unsigned int opcode; local [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
_stream_hybi.py | 61 opcode=None, payload=''): 66 self.opcode = opcode 102 def create_header(opcode, payload_length, fin, rsv1, rsv2, rsv3, mask): 109 if opcode < 0 or 0xf < opcode: 110 raise ValueError('Opcode out of range') 122 | opcode) 144 frame.opcode, len(frame.payload), frame.fin, 150 message, opcode=common.OPCODE_BINARY, fin=1, mask=False, frame_filters=[]) [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
ConservativeTranslationAdvice.java | 37 public boolean hasConstantOperation(Rop opcode, 43 public boolean requiresSourcesInOrder(Rop opcode,
|
/dalvik/dx/src/com/android/dx/io/instructions/ |
OneRegisterDecodedInstruction.java | 31 public OneRegisterDecodedInstruction(InstructionCodec format, int opcode, 34 super(format, opcode, index, indexType, target, literal);
|