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

/system/core/libpixelflinger/codeflinger/
H A DArm64Disassembler.cpp126 static void decode_rx_zr_token(uint32_t reg, const char *prefix, char *instr_part) argument
128 if(reg == 31)
131 sprintf(instr_part, "%s%d", prefix, reg);
195 uint32_t reg = bits_unsigned(code, 20,16); local
196 if(reg == 31)
199 sprintf(instr_part, "%d", reg);
229 uint32_t reg = bits_unsigned(code, 9, 5); local
230 if(reg == 31)
233 sprintf(instr_part, "x%d", reg);
237 uint32_t reg local
[all...]
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 ADDR_ADD(AL, 0, parts.dither.reg, ctxtReg, parts.dither.reg);
1035 reserveReg(int reg) argument
1045 recycleReg(int reg) argument
1094 reserve(int reg) argument
1099 reg); local
1125 int i, r, reg; local
1163 recycle(int reg) argument
[all...]
H A DGGLAssembler.h54 int reserveReg(int reg);
56 void recycleReg(int reg);
73 int reserve(int reg);
76 void recycle(int reg);
80 inline int isUsed(int reg) const;
97 uint32_t mRegisterOffset; // lets reg alloc use 2..17 for mips
111 int reg = mRegFile.obtain(); local
112 mScratch |= 1<<reg;
113 return reg;
115 void recycle(int reg) { argument
119 isUsed(int reg) argument
143 int reg = 31 - __builtin_clz(mRegList); local
155 int reg = 31 - __builtin_clz(mRegList); local
215 int reg; member in struct:android::GGLAssembler::reg_t
[all...]
H A DArm64Assembler.cpp695 int reg = i; local
697 *mPC++ = A64_LDR_IMM_PostIndex(reg, XSP, size);
717 int reg = i; local
718 *mPC++ = A64_STR_IMM_PreIndex(reg, XSP, size);
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
/system/extras/ext4_utils/
H A Dallocate.c91 static void region_list_remove(struct region_list *list, struct region *reg) argument
93 if (reg->prev)
94 reg->prev->next = reg->next;
96 if (reg->next)
97 reg->next->prev = reg->prev;
99 if (list->first == reg)
100 list->first = reg->next;
102 if (list->last == reg)
109 region_list_append(struct region_list *list, struct region *reg) argument
146 struct region *reg; local
160 struct region *reg; local
267 struct region *reg = alloc->list.last->prev; local
393 struct region *reg; local
417 struct region *reg; local
448 struct region *reg = ext4_allocate_best_fit(len); local
465 struct region *reg = alloc->list.first; local
476 struct region *reg = alloc->list.first; local
487 struct region *reg = alloc->list.iter; local
500 struct region *reg = alloc->oob_list.iter; local
545 struct region *reg = alloc->list.iter; local
612 struct region *reg = list->iter; local
644 struct region *reg = ext4_allocate_best_fit(len); local
764 struct region *reg; local
[all...]

Completed in 211 milliseconds