Searched refs:add (Results 1 - 22 of 22) sorted by last modified time

/system/core/libcutils/arch-arm/
H A Dmemset32.S81 add r2, r2, #32
/system/core/libcutils/arch-x86/
H A Dsse2-memset16-atom.S102 add $(TABLE - .), %ebx; \
105 add (%ebx,%ecx,4), %ebx; \
310 add $1, %edx
326 add $16, %edx
328 add %eax, %ecx
337 add %ecx, %edx
349 add $_GLOBAL_OFFSET_TABLE_, %ebx
368 add $_GLOBAL_OFFSET_TABLE_, %ebx
407 add %ecx, %edx
424 add
[all...]
H A Dsse2-memset32-atom.S102 add $(TABLE - .), %ebx; \
105 add (%ebx,%ecx,4), %ebx; \
217 add $1, %edx
221 add $1, %edx
225 add $1, %edx
242 add $16, %edx
244 add %eax, %ecx
252 add %ecx, %edx
264 add $_GLOBAL_OFFSET_TABLE_, %ebx
282 add
[all...]
/system/core/libpixelflinger/codeflinger/
H A DARMAssembler.cpp110 mComments.add(mPC, string);
115 mLabels.add(theLabel, mPC);
116 mLabelsInverseMapping.add(mPC, theLabel);
121 mBranchTargets.add(branch_target_t(label, mPC));
127 mBranchTargets.add(branch_target_t(label, mPC));
H A DCodeCache.cpp199 ssize_t err = mCacheData.add(key_t(keyBase), cache_entry_t(assembly, mWhen));
H A DGGLAssembler.h370 void add( component_t& dest,
H A DMIPSAssembler.cpp1245 ** We start with mips32r1, and may add r2 and dsp extensions if cpu
1368 mComments.add(pc(), string);
1373 mLabels.add(theLabel, pc());
1374 mLabelsInverseMapping.add(pc(), theLabel);
1803 mBranchTargets.add(branch_target_t(label, mPC));
1814 mBranchTargets.add(branch_target_t(label, mPC));
1821 mBranchTargets.add(branch_target_t(label, mPC));
1828 mBranchTargets.add(branch_target_t(label, mPC));
1835 mBranchTargets.add(branch_target_t(label, mPC));
1842 mBranchTargets.add(branch_target_
[all...]
H A Dblending.cpp579 integer_t add(a.reg, a.h, a.flags);
594 add.reg = d.reg;
596 add.reg = scratches.obtain();
599 expand(add, a, ms); // extracts and expands
604 if (vs<16 && fs<16) SMLABB(AL, d.reg, v.reg, f.reg, add.reg);
605 else MLA(AL, 0, d.reg, v.reg, f.reg, add.reg);
608 if (temp == add.reg) {
609 // the mul will modify add.reg, we need an intermediary reg
619 ADD(AL, 0, d.reg, temp, reg_imm(add.reg, LSL, ms-as));
622 ADD(AL, 0, d.reg, temp, reg_imm(add
[all...]
H A Dtexturing.cpp1126 add(fragment, incoming, texel, component);
1330 void GGLAssembler::add( function in class:android::GGLAssembler
/system/core/libpixelflinger/
H A Dcol32cb16blend.S44 add r5, r5, r5, lsr #7 // add in top bit
H A Dcol32cb16blend_neon.S63 vaddl.u8 q3, d6, d7 // add top bit into alpha
90 vadd.u16 q8, q8, q0 // add src red to dst red0
92 vadd.u16 q9, q9, q1 // add src green to dst green0
94 vadd.u16 q10, q10, q2 // add src blue to dst blue0
97 vadd.u16 q13, q13, q0 // add src red to dst red1
99 vadd.u16 q12, q12, q1 // add src green to dst green1
101 vadd.u16 q11, q11, q2 // add src blue to dst blue1
120 add r5, r5, r5, lsr #7 // add in top bit
H A Drotate90CW_4x4_16v6.S37 add r14, r3, r3
38 add r12, r2, r2
H A Dt32cb16blend.S48 add r7, r7, r7, lsr #7 // sA + (sA >> 7)
60 add lr, r6, lr, lsr #8
70 add r6, lr, r6, lsr #(5+8)
80 add lr, r6, lr, lsr #8
93 add lr, r6, lr, lsr #8
104 add r6, lr, r6, lsr #(5+8)
114 add lr, r6, lr, lsr #8
166 add r0, r0, #4
186 add r0, r0, #4
/system/core/libpixelflinger/tinyutils/
H A DKeyedVector.h68 * add/insert/replace items
71 ssize_t add(const KEY& key, const VALUE& item);
145 ssize_t KeyedVector<KEY,VALUE>::add(const KEY& key, const VALUE& value) { function in class:android::KeyedVector
146 return mVector.add( key_value_pair_t<KEY,VALUE>(key, value) );
153 return mVector.add(pair);
H A DSortedVector.h104 //! add an item in the right place (and replace the one that is there)
105 ssize_t add(const TYPE& item);
206 ssize_t SortedVector<TYPE>::add(const TYPE& item) {
207 return SortedVectorImpl::add(&item);
H A DVector.h112 * add/insert/replace items
126 inline ssize_t add();
128 ssize_t add(const TYPE& item);
267 ssize_t Vector<TYPE>::add(const TYPE& item) { function in class:android::Vector
268 return VectorImpl::add(&item);
292 ssize_t Vector<TYPE>::add() { function in class:android::Vector
293 return VectorImpl::add();
H A DVectorImpl.cpp162 ssize_t VectorImpl::add() function in class:android::VectorImpl
164 return add(0);
167 ssize_t VectorImpl::add(const void* item) function in class:android::VectorImpl
483 ssize_t SortedVectorImpl::add(const void* item)
503 ssize_t err = add( reinterpret_cast<const char*>(buffer) + i*is );
H A DVectorImpl.h64 /*! add/insert/replace items */
70 ssize_t add();
71 ssize_t add(const void* item);
140 //! add an item in the right place (or replaces it if there is one)
141 ssize_t add(const void* item);
168 ssize_t add();
/system/core/rootdir/etc/
H A Dinit.goldfish.sh5 route add default gw 10.0.2.2 dev eth0
/system/core/sh/
H A Dexec.c806 * Locate a command in the command hash table. If "add" is nonzero,
807 * add the command to the table if it is not already present. The
817 cmdlookup(const char *name, int add) argument
835 if (add && cmdp == NULL) {
/system/extras/bugmailer/src/com/android/commands/sendbug/
H A DSendBug.java127 attachments.add(bugreportUri);
128 attachments.add(screenshotUri);
/system/netd/
H A DNatController.cpp79 runCmd(IP_PATH, "rule add from all lookup default prio 32767");
80 runCmd(IP_PATH, "rule add from all lookup main prio 32766");
81 runCmd(IP_PATH, "-6 rule add from all lookup default prio 32767");
82 runCmd(IP_PATH, "-6 rule add from all lookup main prio 32766");
150 // add this if we are the first added nat
169 int NatController::setForwardRules(bool add, const char *intIface, const char * extIface) { argument
174 (add ? "A" : "D"),
176 if (runCmd(IPTABLES_PATH, cmd) && add) {
182 (add ? "A" : "D"),
184 if (runCmd(IPTABLES_PATH, cmd) && add) {
[all...]

Completed in 1374 milliseconds