/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_wm_debug.c | 85 GLuint nr_args = brw_wm_nr_args(inst->opcode); 108 switch (inst->opcode) { 137 printf(" = %s", _mesa_opcode_string(inst->opcode));
|
brw_wm_pass1.c | 126 if (inst->opcode == OPCODE_KIL) { 131 if (inst->opcode == WM_FB_WRITE) { 158 switch (inst->opcode) {
|
/external/chromium_org/third_party/mesa/src/src/mesa/program/ |
nvvertparse.c | 799 enum prog_opcode opcode) 801 if (opcode == OPCODE_ABS && !parseState->isVersion1_1) 804 inst->Opcode = opcode; 829 enum prog_opcode opcode) 831 if (opcode == OPCODE_DPH && !parseState->isVersion1_1) 833 if (opcode == OPCODE_SUB && !parseState->isVersion1_1) 836 inst->Opcode = opcode; 881 enum prog_opcode opcode) [all...] |
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
NormalSsaInsn.java | 125 * @return the Rop opcode for this insn 218 Rop opcode = getOpcode(); local 220 if (opcode.getBranchingness() != Rop.BRANCH_NONE) { 227 switch (opcode.getOpcode()) {
|
/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/mesa3d/src/gallium/drivers/radeon/MCTargetDesc/ |
R600MCCodeEmitter.cpp | 85 bool isFCOp(unsigned opcode) const; 86 bool isTexOp(unsigned opcode) const; 397 unsigned opcode = MI.getOpcode(); local 398 bool hasOffsets = (opcode == AMDGPU::TEX_LD); 445 if (opcode == AMDGPU::TEX_SAMPLE_C_L || opcode == AMDGPU::TEX_SAMPLE_C_LB) { 475 && opcode != AMDGPU::TEX_SAMPLE_C_L 476 && opcode != AMDGPU::TEX_SAMPLE_C_LB) { 634 bool R600MCCodeEmitter::isFCOp(unsigned opcode) const { 635 switch(opcode) { [all...] |
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_cse.cpp | 48 switch (inst->opcode) { 106 if (inst->opcode == entry->generator->opcode &&
|
brw_wm_debug.c | 85 GLuint nr_args = brw_wm_nr_args(inst->opcode); 108 switch (inst->opcode) { 137 printf(" = %s", _mesa_opcode_string(inst->opcode));
|
brw_wm_pass1.c | 126 if (inst->opcode == OPCODE_KIL) { 131 if (inst->opcode == WM_FB_WRITE) { 158 switch (inst->opcode) {
|
/external/mesa3d/src/mesa/program/ |
nvvertparse.c | 799 enum prog_opcode opcode) 801 if (opcode == OPCODE_ABS && !parseState->isVersion1_1) 804 inst->Opcode = opcode; 829 enum prog_opcode opcode) 831 if (opcode == OPCODE_DPH && !parseState->isVersion1_1) 833 if (opcode == OPCODE_SUB && !parseState->isVersion1_1) 836 inst->Opcode = opcode; 881 enum prog_opcode opcode) [all...] |
/hardware/libhardware/include/hardware/ |
bluetooth.h | 318 typedef void (*dut_mode_recv_callback)(uint16_t opcode, uint8_t *buf, uint8_t len); 449 int (*dut_mode_send)(uint16_t opcode, uint8_t *buf, uint8_t len); 451 /* opcode MUST be one of: LE_Receiver_Test, LE_Transmitter_Test, LE_Test_End */ 452 int (*le_test_mode)(uint16_t opcode, uint8_t *buf, uint8_t len);
|
/dalvik/dx/src/com/android/dx/cf/code/ |
ByteOps.java | 23 * opcode level. 26 // one constant per opcode 314 /** mask for the bits representing the opcode format */ 625 * Gets the name of the given opcode. 627 * @param opcode {@code >= 0, <= 255;} the opcode 630 public static String opName(int opcode) { 631 String result = OPCODE_NAMES[opcode]; 634 result = "unused_" + Hex.u1(opcode); 635 OPCODE_NAMES[opcode] = result [all...] |
/dalvik/vm/compiler/codegen/arm/FP/ |
Thumb2VFP.cpp | 28 switch (mir->dalvikInsn.opcode) { 70 switch (mir->dalvikInsn.opcode) { 113 Opcode opcode = mir->dalvikInsn.opcode; local 122 switch (opcode) { 218 switch(mir->dalvikInsn.opcode) {
|
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
AbstractClassAdapter.java | 249 public void visitTypeInsn(int opcode, String type) { 256 super.visitTypeInsn(opcode, type); 260 public void visitFieldInsn(int opcode, String owner, String name, String desc) { 264 super.visitFieldInsn(opcode, owner, name, desc); 268 public void visitMethodInsn(int opcode, String owner, String name, String desc) { 277 super.visitMethodInsn(opcode, owner, name, desc);
|
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
AsmGeneratorTest.java | 281 public void visitFieldInsn(int opcode, String owner, String name, 285 super.visitFieldInsn(opcode, owner, name, desc); 297 public void visitTypeInsn(int opcode, String type) { 299 super.visitTypeInsn(opcode, type); 303 public void visitMethodInsn(int opcode, String owner, String name, 307 super.visitMethodInsn(opcode, owner, name, desc);
|
/dalvik/vm/mterp/armv5te/ |
OP_AGET.S | 25 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
OP_APUT.S | 25 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
OP_APUT_OBJECT.S | 18 bcc .L${opcode}_finish @ we're okay, continue on 28 .L${opcode}_finish: 30 beq .L${opcode}_skip_check @ yes, skip type checks 35 beq .L${opcode}_throw @ no 40 GET_INST_OPCODE(ip) @ extract opcode from rINST 44 .L${opcode}_skip_check: 47 GET_INST_OPCODE(ip) @ extract opcode from rINST 49 .L${opcode}_throw:
|
OP_IPUT_OBJECT_QUICK.S | 18 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
OP_IPUT_WIDE_QUICK.S | 15 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
OP_MUL_LONG_2ADDR.S | 24 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
OP_NEW_ARRAY.S | 22 bne .L${opcode}_finish @ resolved, continue 23 b .L${opcode}_resolve @ do resolve now 33 .L${opcode}_resolve: 43 @ fall through to ${opcode}_finish 51 .L${opcode}_finish: 59 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
OP_PACKED_SWITCH.S | 34 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
bincmp.S | 29 GET_INST_OPCODE(ip) @ extract opcode from rINST
|
binopWide.S | 35 GET_INST_OPCODE(ip) @ extract opcode from rINST
|