Home
last modified time | relevance | path

Searched refs:ADD (Results 1 – 9 of 9) sorted by relevance

/system/core/libpixelflinger/codeflinger/
Dtexturing.cpp206 ADD(AL, 0, dx, fragment.reg, dx); in build_iterated_color()
353 ADD(AL, 0, Rx, Rx, reg_imm(txPtr.reg, ASR, 16)); // x += (s>>16) in init_textures()
355 ADD(AL, 0, Ry, Ry, reg_imm(txPtr.reg, ASR, 16)); // y += (t>>16) in init_textures()
611 ADD(AL, 0, s.reg, s.reg, dsdx); in build_textures()
612 ADD(AL, 0, t.reg, t.reg, dtdx); in build_textures()
671 ADD(AL, 0, txPtr.reg, txPtr.reg, imm(txPtr.size>>3)); in build_iterate_texture_coordinates()
686 ADD(AL, 0, s, s, dsdx); in build_iterate_texture_coordinates()
687 ADD(AL, 0, t, t, dtdx); in build_iterate_texture_coordinates()
729 ADD(AL, 0, offset, lb, rt); in filter8()
830 ADD(AL, 0, offset, offset, u); in filter16()
[all …]
DGGLAssembler.cpp210 ADD(AL, 0, parts.count.reg, parts.count.reg, in scanline_core()
266 ADD(AL, 0, parts.dither.reg, parts.dither.reg, ctxtReg); in scanline_core()
339 ADD(AL, 0, parts.cbPtr.reg, parts.cbPtr.reg, imm(parts.cbPtr.size>>3)); in scanline_core()
380 ADD(AL, 0, tx, tx, reg_imm(ty, LSL, GGL_DITHER_ORDER_SHIFT)); in build_scanline_prolog()
433 ADD(AL, 0, Rs, Rs, reg_imm(parts.count.reg, LSR, 16)); in build_scanline_prolog()
434 ADD(AL, 0, zbase, zbase, reg_imm(Rs, LSL, 1)); in build_scanline_prolog()
449 ADD(AL, 0, parts.covPtr.reg, parts.covPtr.reg, reg_imm(Rx, LSL, 1)); in build_scanline_prolog()
654 ADD(AL, 0, c, c, dx); in build_smooth_shade()
795 ADD(AL, 0, parts.z.reg, parts.z.reg, dzdx); in build_iterate_z()
808 ADD(AL, 0, f, f, dfdx); in build_iterate_f()
[all …]
Dblending.cpp331 ADD(AL, 0, factor.reg, fb.reg, reg_imm(fb.reg, LSR, fb.s-1)); in build_blend_factor()
336 ADD(AL, 0, factor.reg, fragment.reg, in build_blend_factor()
342 ADD(AL, 0, factor.reg, src_alpha.reg, in build_blend_factor()
349 ADD(AL, 0, factor.reg, factor.reg, in build_blend_factor()
619 ADD(AL, 0, d.reg, temp, reg_imm(add.reg, LSL, ms-as)); in mul_factor_add()
622 ADD(AL, 0, d.reg, temp, reg_imm(add.reg, LSR, as-ms)); in mul_factor_add()
641 ADD(AL, 0, d.reg, src.reg, dst.reg); in component_add()
643 ADD(AL, 0, d.reg, src.reg, reg_imm(dst.reg, LSL, shift)); in component_add()
Dload_store.cpp52 ADD(AL, 0, addr.reg, addr.reg, imm(3)); in store()
96 ADD(AL, 0, addr.reg, addr.reg, imm(3)); in load()
352 if (shift>0) ADD(AL, 0, ireg, ireg, reg_imm(dither.reg, LSR, shift)); in downshift()
353 else if (shift<0) ADD(AL, 0, ireg, ireg, reg_imm(dither.reg, LSL,-shift)); in downshift()
354 else ADD(AL, 0, ireg, ireg, dither.reg); in downshift()
DARMAssemblerInterface.h228 ADD(int cc, int s, int Rd, int Rn, uint32_t Op2) { in ADD() function
/system/netd/
DSecondaryTableController.cpp78 return modifyRoute(cli, ADD, iface, dest, prefix, gateway, tableIndex); in addRoute()
127 if (strcmp(action, ADD) == 0) { in modifyRoute()
141 if (strcmp(action, ADD) == 0) { in modifyRuleCount()
DNetdConstants.h29 extern const char * const ADD;
DNatController.cpp104 ret |= secondaryTableCtrl->modifyFromRule(tableNumber, ADD, argv[5+i]); in routesOp()
105 ret |= secondaryTableCtrl->modifyLocalRoute(tableNumber, ADD, intIface, argv[5+i]); in routesOp()
DNetdConstants.cpp33 const char * const ADD = "add"; variable