Searched defs:reg (Results 1 - 5 of 5) sorted by relevance

/system/core/libcorkscrew/arch-arm/
H A Dbacktrace-arm.c239 static void set_reg(unwind_state_t* state, uint32_t reg, uint32_t value) { argument
240 ALOGV("set_reg: reg=%d, value=0x%08x", reg, value);
241 state->gregs[reg] = value;
/system/extras/ext4_utils/
H A Dallocate.c76 static void region_list_remove(struct region_list *list, struct region *reg) argument
78 if (reg->prev)
79 reg->prev->next = reg->next;
81 if (reg->next)
82 reg->next->prev = reg->prev;
84 if (list->first == reg)
85 list->first = reg->next;
87 if (list->last == reg)
94 region_list_append(struct region_list *list, struct region *reg) argument
134 struct region *reg; local
257 struct region *reg = alloc->list.last->prev; local
352 struct region *reg; local
388 struct region *reg; local
427 struct region *reg; local
451 struct region *reg = ext4_allocate_contiguous_blocks(len); local
469 struct region *reg = do_allocate(len); local
486 struct region *reg = alloc->list.first; local
497 struct region *reg = alloc->list.first; local
508 struct region *reg = alloc->list.iter; local
521 struct region *reg = alloc->oob_list.iter; local
566 struct region *reg = alloc->list.iter; local
633 struct region *reg = list->iter; local
665 struct region *reg = do_allocate(len); local
750 struct region *reg; local
[all...]
/system/core/libpixelflinger/codeflinger/
H A DGGLAssembler.cpp208 MOV(AL, 0, parts.count.reg,
209 reg_imm(parts.count.reg, ROR, GGL_DITHER_ORDER_SHIFT));
210 ADD(AL, 0, parts.count.reg, parts.count.reg,
212 MOV(AL, 0, parts.count.reg,
213 reg_imm(parts.count.reg, ROR, 32 - GGL_DITHER_ORDER_SHIFT));
265 AND(AL, 0, parts.dither.reg, parts.count.reg, imm(mask));
266 ADD(AL, 0, parts.dither.reg, parts.dither.reg, ctxtRe
1031 reserveReg(int reg) argument
1041 recycleReg(int reg) argument
1090 reserve(int reg) argument
1095 reg); local
1121 int i, r, reg; local
1159 recycle(int reg) argument
[all...]
H A DGGLAssembler.h48 int reserveReg(int reg);
50 void recycleReg(int reg);
67 int reserve(int reg);
70 void recycle(int reg);
74 inline int isUsed(int reg) const;
91 uint32_t mRegisterOffset; // lets reg alloc use 2..17 for mips
105 int reg = mRegFile.obtain(); local
106 mScratch |= 1<<reg;
107 return reg;
109 void recycle(int reg) { argument
113 isUsed(int reg) argument
137 int reg = 31 - __builtin_clz(mRegList); local
149 int reg = 31 - __builtin_clz(mRegList); local
209 int reg; member in struct:android::GGLAssembler::reg_t
[all...]
H A DMIPSAssembler.h182 // reg__tmp set to MIPS AT, reg 1
200 // start above the range of legal mips reg #'s (0-31)
210 int reg; member in struct:android::ArmToMipsAssembler::addr_mode_t
213 bool writeback; // writeback the adr reg after modification

Completed in 1573 milliseconds