Searched refs:add (Results 26 - 43 of 43) sorted by relevance

12

/system/core/include/utils/
H A DBasicHashtable.h70 size_t add(hash_t hash, const void* __restrict__ entry);
131 // Returns the increment to add to a bucket index to seek to the next bucket
168 * We do this because it means that operations like add() can't fail.
291 * entry: The entry to add.
293 inline size_t add(hash_t hash, const TEntry& entry) { function in class:android::BasicHashtable
294 return BasicHashtableImpl::add(hash, &entry);
332 /* Determines whether there is room to add another entry without rehashing.
333 * When this returns true, a subsequent add() operation is guaranteed to
H A DSortedVector.h106 //! add an item in the right place (and replace the one that is there)
107 ssize_t add(const TYPE& item);
206 ssize_t SortedVector<TYPE>::add(const TYPE& item) { function in class:android::SortedVector
207 return SortedVectorImpl::add(&item);
H A DLruCache.h151 index = mTable->add(hash, initEntry);
/system/core/libpixelflinger/codeflinger/tinyutils/
H A DVectorImpl.cpp164 ssize_t VectorImpl::add() function in class:android::tinyutils::VectorImpl
166 return add(0);
169 ssize_t VectorImpl::add(const void* item) function in class:android::tinyutils::VectorImpl
485 ssize_t SortedVectorImpl::add(const void* item) function in class:SortedVectorImpl
505 ssize_t err = add( reinterpret_cast<const char*>(buffer) + i*is );
H A DSortedVector.h105 //! add an item in the right place (and replace the one that is there)
106 ssize_t add(const TYPE& item);
207 ssize_t SortedVector<TYPE>::add(const TYPE& item) {
208 return SortedVectorImpl::add(&item);
/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 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 DGGLAssembler.h370 void add( component_t& dest,
H A Dtexturing.cpp1126 add(fragment, incoming, texel, component);
1330 void GGLAssembler::add( function in class:android::GGLAssembler
/system/core/libutils/
H A DVectorImpl.cpp234 ssize_t VectorImpl::add() function in class:android::VectorImpl
236 return add(0);
239 ssize_t VectorImpl::add(const void* item) function in class:android::VectorImpl
566 ssize_t SortedVectorImpl::add(const void* item)
586 ssize_t err = add( reinterpret_cast<const char*>(buffer) + i*is );
H A DBasicHashtable.cpp152 size_t BasicHashtableImpl::add(hash_t hash, const void* entry) { function in class:android::BasicHashtableImpl
H A DBlobCache.cpp103 mCacheEntries.add(CacheEntry(keyBlob, valueBlob));
H A DLooper.cpp98 LOG_ALWAYS_FATAL_IF(result != 0, "Could not add wake read pipe to epoll instance. errno=%d",
453 mRequests.add(fd, request);
/system/core/libpixelflinger/
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
/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/core/healthd/
H A DBatteryMonitor.cpp302 mChargerNames.add(String8(name));
/system/security/keystore/
H A Dkeystore.cpp928 char encoded[encode_key_length(keyName) + 1]; // add 1 for null char
934 char encoded[encode_key_length(keyName) + 1]; // add 1 for null char
940 char encoded[encode_key_length(keyName) + 1]; // add 1 for null char
1055 mGrants.add(grant);
1184 mMasterKeys.add(userState);

Completed in 187 milliseconds

12