Searched defs:loc (Results 1 - 11 of 11) sorted by relevance

/system/core/libpixelflinger/tests/arch-mips64/disassembler/
H A Dmips64_disassembler_test.cpp34 //db_addr_t mips_disassem(db_addr_t loc, char *di_buffer, int alt_format);
172 uint64_t loc = (uint64_t)test + 4 + (test->offset << 2); local
173 //printf("DBG loc: %lx\n", loc);
176 sprintf(address, "0x%lx", loc);
193 uint64_t loc = ((uint64_t)test & 0xfffffffff0000000) | (test->offset << 2); local
194 //printf("DBG loc: %lx\n", loc);
197 sprintf(address, "0x%08lx", loc);
/system/tools/hidl/
H A DNamedType.cpp21 NamedType::NamedType(const char* localName, const FQName& fullName, const Location& loc, argument
23 : Type(parent), mLocalName(localName), mFullName(fullName), mLocation(loc) {}
H A DLocation.cpp93 bool Location::operator<(const Location& loc) const {
94 CHECK(inSameFile(*this, loc)) << "Cannot compare locations in different files";
95 CHECK(!intersect(*this, loc));
96 return mEnd < loc.mBegin;
99 std::ostream& operator<<(std::ostream& ostr, const Location& loc) { argument
100 Position last = Position(loc.end().filename(), loc.end().line(),
101 std::max<size_t>(1u, loc.end().column() - 1));
102 ostr << loc.begin();
103 if (loc
[all...]
/system/core/libpixelflinger/codeflinger/
H A Dmips64_disassem.c144 db_addr_t mips_disassem(db_addr_t loc, char *di_buffer, int alt_dis_format);
148 * Disassemble instruction 'insn' nominally at 'loc'.
149 * 'loc' may in fact contain a breakpoint instruction.
152 db_disasm_insn(int insn, db_addr_t loc, bool altfmt __unused) argument
378 print_addr(loc + 4 + ((short)i.IType.imm << 2));
463 print_addr((loc & 0xFFFFFFFFF0000000) | (i.JType.target << 2));
536 // mips_disassem(loc+4);
537 // return (loc + 8);
539 return (loc + 4);
543 print_addr(db_addr_t loc) argument
571 mips_disassem(db_addr_t loc, char *di_buffer, int alt_dis_format) argument
[all...]
H A Dmips_disassem.c179 db_addr_t mips_disassem(db_addr_t loc, char *di_buffer, int alt_dis_format);
183 * Disassemble instruction 'insn' nominally at 'loc'.
184 * 'loc' may in fact contain a breakpoint instruction.
187 db_disasm_insn(int insn, db_addr_t loc, bool altfmt __unused) argument
377 print_addr(loc + 4 + ((short)i.IType.imm << 2));
462 print_addr((loc & 0xF0000000) | (i.JType.target << 2));
540 // mips_disassem(loc+4);
541 // return (loc + 8);
543 return (loc + 4);
547 print_addr(db_addr_t loc) argument
578 mips_disassem(db_addr_t loc, char *di_buffer, int alt_dis_format) argument
[all...]
H A Ddisassem.c295 u_int loc);
297 u_int loc);
299 u_int loc);
304 disasm(const disasm_interface_t *di, u_int loc, int __unused altfmt) argument
307 u_int insn = di->di_readword(loc);
313 /* di->di_printf("loc=%08x insn=%08x : ", loc, insn);*/
325 return(loc + INSN_SIZE);
384 disasm_insn_ldrstr(di, insn, loc);
388 disasm_insn_ldrhstrh(di, insn, loc);
610 disasm_insn_ldrstr(const disasm_interface_t *di, u_int insn, u_int loc) argument
639 disasm_insn_ldrhstrh(const disasm_interface_t *di, u_int insn, u_int loc) argument
668 disasm_insn_ldcstc(const disasm_interface_t *di, u_int insn, u_int __unused loc) argument
[all...]
/system/core/libunwindstack/tools/
H A Dunwind_reg_info.cpp78 for (auto& loc : regs) {
79 loc_regs.push_back(loc);
91 const DwarfLocation* loc = &entry.second; local
97 switch (loc->type) {
100 PrintSignedValue(loc->values[0]);
106 PrintSignedValue(loc->values[0]);
111 printf("r%" PRId64 " ", loc->values[0]);
112 PrintSignedValue(loc->values[1]);
118 PrintExpression(memory, class_type, loc->values[1], loc
[all...]
/system/extras/tests/framebuffer/
H A Dfb_test.c210 uint16_t *loc = _loc; local
216 loc[i + j*(stride)] = red;
221 loc[i + j*(stride)] = green;
229 loc[i + j*(stride)] = blue;
234 loc[i + j*(stride)] = white;
245 uint16_t *loc = _loc; local
251 loc[i + j*(stride)] = black;
/system/core/libunwindstack/
H A DDwarfSection.cpp84 bool DwarfSectionImpl<AddressType>::EvalExpression(const DwarfLocation& loc, Memory* regular_memory, argument
92 uint64_t end = loc.values[1];
93 uint64_t start = end - loc.values[0];
125 bool DwarfSectionImpl<AddressType>::EvalRegister(const DwarfLocation* loc, uint32_t reg, argument
129 switch (loc->type) {
131 if (!regular_memory->ReadFully(eval_info->cfa + loc->values[0], reg_ptr, sizeof(AddressType))) {
133 last_error_.address = eval_info->cfa + loc->values[0];
138 *reg_ptr = eval_info->cfa + loc->values[0];
141 uint32_t cur_reg = loc->values[0];
146 *reg_ptr = eval_info->regs_info.Get(cur_reg) + loc
205 const DwarfLocation* loc = &cfa_entry->second; local
[all...]
/system/chre/host/msm/daemon/generated/
H A Dchre_slpi_skel.c173 const char* loc; member in struct:_heap
185 static __inline int _heap_alloc(_heap** ppa, const char* loc, int size, void** ppbuf) { argument
190 pn->loc = loc;
202 const char* loc,
217 return _heap_alloc(&me->pheap, loc, size, ppbuf);
226 const char* loc = pn->loc; local
227 (void)loc;
201 _allocator_alloc(_allocator* me, const char* loc, int size, unsigned int al, void** ppbuf) argument
H A Dchre_slpi_stub.c173 const char* loc; member in struct:_heap
185 static __inline int _heap_alloc(_heap** ppa, const char* loc, int size, void** ppbuf) { argument
190 pn->loc = loc;
202 const char* loc,
217 return _heap_alloc(&me->pheap, loc, size, ppbuf);
226 const char* loc = pn->loc; local
227 (void)loc;
201 _allocator_alloc(_allocator* me, const char* loc, int size, unsigned int al, void** ppbuf) argument

Completed in 678 milliseconds