Searched refs:c_op (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/courgette/
H A Ddisassembler_elf_32_arm.h31 uint16 c_op() const { function in class:courgette::DisassemblerElf32ARM::TypedRVAARM
56 uint16* c_op /* out */, uint32* addr /* out */);
58 static CheckBool Decompress(ARM_RVA type, uint16 c_op, uint32 addr,
H A Ddisassembler_elf_32_arm.cc21 uint16* c_op, uint32* addr) {
24 // Courgette opcode (c_op).
41 (*c_op) = (arm_op >> 8) | 0x1000;
53 (*c_op) = (arm_op >> 11) | 0x2000;
65 (*c_op) = (arm_op >> 24) | 0x3000;
104 (*c_op) = temp2;
125 (*c_op) = temp2;
134 CheckBool DisassemblerElf32ARM::Decompress(ARM_RVA type, uint16 c_op, argument
141 (*arm_op) = ((c_op & 0x0FFF) << 8) | (((addr - 4) >> 1) & 0x000000FF);
144 (*arm_op) = ((c_op
20 Compress(ARM_RVA type, uint32 arm_op, RVA rva, uint16* c_op, uint32* addr) argument
[all...]
H A Dtypedrva_unittest.cc59 uint16 c_op; local
62 &c_op, &addr));
66 EXPECT_TRUE(courgette::DisassemblerElf32ARM::Decompress(arm_rva, c_op, addr,
/external/sepolicy/tools/
H A Dsepolicy-check.c65 int c_op, uint32_t target_class,
88 match &= check(c_op, target_class, cur->key.target_class);
123 int c_op = parse_ops(&c); local
144 if (c_op != ANY) {
170 if (c_op != ANY)
176 c_op, key.target_class,
184 c_op, key.target_class,
63 expand_and_check(int s_op, uint32_t source_type, int t_op, uint32_t target_type, int c_op, uint32_t target_class, perm_datum_t *perm, policydb_t *policy, avtab_t *avtab) argument
/external/kernel-headers/original/uapi/asm-mips/asm/
H A Dinst.h519 BITFIELD_FIELD(unsigned int c_op : 3,
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DNodes.py4808 c_op = self.operator
4809 if c_op == "//":
4810 c_op = "/"
4811 elif c_op == "**":
4816 if (c_op in ('/', '%') and self.lhs.type.is_int
4819 self.lhs.generate_buffer_setitem_code(self.rhs, code, c_op)
4823 code.putln("%s %s= %s;" % (self.lhs.result(), c_op, self.rhs.result()))

Completed in 218 milliseconds