HomeSort by relevance Sort by last modified time
    Searched refs:pKey (Results 1 - 25 of 58) sorted by null

1 2 3

  /frameworks/compile/mclinker/include/mcld/ADT/
StringHash.h 46 uint32_t operator()(const llvm::StringRef& pKey) const
58 uint32_t operator()(const llvm::StringRef& pKey) const
64 for(unsigned int i = 0; i < pKey.size(); ++i) {
65 hash_val = hash_val * a + pKey[i];
78 uint32_t operator()(const llvm::StringRef& pKey) const
82 for(unsigned int i = 0; i < pKey.size(); ++i) {
83 hash_val ^= ((hash_val << 5) + pKey[i] + (hash_val >> 2));
95 uint32_t operator()(const llvm::StringRef& pKey) const
104 for(unsigned int i = 0; i < pKey.size(); ++i) {
105 hash_val = (hash_val << OneEighth) + pKey[i]
    [all...]
HashEntryFactory.h 26 entry_type* produce(const key_type& pKey)
27 { return HashEntryTy::Create(pKey); }
HashTable.h 76 entry_type* insert(const key_type& pKey, bool& pExist);
79 size_type erase(const key_type& pKey);
82 /// find - finds an element with key pKey
84 iterator find(const key_type& pKey);
86 /// find - finds an element with key pKey, constant version
88 const_iterator find(const key_type& pKey) const;
90 size_type count(const key_type& pKey) const;
110 chain_iterator begin(const key_type& pKey);
111 chain_iterator end(const key_type& pKey);
112 const_chain_iterator begin(const key_type& pKey) const
    [all...]
HashEntry.h 48 HashEntry(const KeyType& pKey);
67 bool compare(const key_type& pKey);
86 HashEntryTy* produce(const key_type& pKey);
HashBase.h 110 unsigned int lookUpBucketFor(const key_type& pKey);
112 /// findKey - finds an element with key pKey
114 int findKey(const key_type& pKey) const;
StringEntry.h 65 StringEntry(const key_type& pKey);
119 StringEntry(const key_type& pKey);
143 StringEntry<DataType>* produce(const key_type& pKey);
HashIterator.h 36 ChainIteratorBase(HashTableImplTy* pTable, const key_type& pKey)
39 m_HashValue = pTable->hash()(pKey);
48 if (bucket.Entry->compare(pKey)) {
292 const typename IteratorBase::key_type& pKey,
294 : IteratorBase(pTable, pKey)
  /frameworks/compile/mclinker/include/mcld/Support/
UniqueGCFactory.h 46 DataType* find(const KeyType& pKey) {
47 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
53 const DataType* find(const KeyType& pKey) const {
54 typename KeyMap::const_iterator dataIter = f_KeyMap.find(pKey);
60 DataType* produce(const KeyType& pKey, bool& pExist) {
61 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
68 f_KeyMap.insert(std::make_pair(pKey, data));
73 DataType* produce(const KeyType& pKey, const DataType& pValue, bool& pExist) {
74 typename KeyMap::iterator dataIter = f_KeyMap.find(pKey);
81 f_KeyMap.insert(std::make_pair(pKey, data))
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
SectionSymbolSet.h 62 size_t operator()(const LDSection* pKey) const
64 return (unsigned((uintptr_t)pKey) >> 4) ^
65 (unsigned((uintptr_t)pKey) >> 9);
Archive.h 68 size_t operator()(uint32_t pKey) const
70 pKey ^= pKey >> 16;
71 pKey *= 0x85ebca6b;
72 pKey ^= pKey >> 13;
73 pKey *= 0xc2b2ae35;
74 pKey ^= pKey >> 16;
75 return pKey;
    [all...]
ResolveInfo.h 97 static ResolveInfo* Create(const key_type& pKey);
212 bool compare(const key_type& pKey);
  /frameworks/wilhelm/src/itf/
IMetadataExtraction.c 72 SLuint32 index, SLuint32 keySize, SLMetadataInfo *pKey)
76 if (NULL == pKey) {
83 index, keySize, pKey);
147 SLuint32 keySize, const void *pKey, SLuint32 keyEncoding,
152 if (NULL == pKey || NULL == pValueLangCountry || (filterMask & ~(SL_METADATA_FILTER_KEY |
159 thiz->mKey = pKey;
  /frameworks/compile/mclinker/lib/LD/
ResolveInfo.cpp 231 bool ResolveInfo::compare(const ResolveInfo::key_type& pKey)
234 if (length != pKey.size())
236 return (0 == std::memcmp(m_Name, pKey.data(), length));
242 ResolveInfo* ResolveInfo::Create(const ResolveInfo::key_type& pKey)
245 malloc(sizeof(ResolveInfo)+pKey.size()+1));
250 std::memcpy(result->m_Name, pKey.data(), pKey.size());
251 result->m_Name[pKey.size()] = '\0';
253 result->m_BitField |= (pKey.size() << ResolveInfo::NAME_LENGTH_OFFSET);
  /frameworks/compile/mclinker/include/mcld/Fragment/
FragmentGraph.h 90 size_t operator()(const void* pKey) const
92 return (unsigned((uintptr_t)pKey) >> 4) ^
93 (unsigned((uintptr_t)pKey) >> 9);
  /frameworks/compile/mclinker/lib/ADT/
StringEntry.cpp 19 StringEntry<llvm::StringRef>::StringEntry(const StringEntry::key_type& pKey)
  /frameworks/compile/mclinker/unittests/
HashTableTest.cpp 57 size_t operator()(const int* pKey) const
59 return (unsigned((uintptr_t)pKey) >> 4) ^
60 (unsigned((uintptr_t)pKey) >> 9);
66 size_t operator()(int pKey) const
67 { return pKey; }
72 size_t operator()(int pKey) const
73 { return pKey % 3; }
297 size_t operator()(int pKey) const {
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KeyStore_Impl1Test.java 468 KeyStore.PrivateKeyEntry pKey = new KeyStore.PrivateKeyEntry(privKey,
480 kss[i].setEntry(aliases[j], pKey, pPath);
493 Key key = pKey.getPrivateKey();
538 kss[i].setEntry("ZZZ", pKey, pPath);
    [all...]
KeyStore_Impl3Test.java 113 KeyStore.PrivateKeyEntry pKey = new KeyStore.PrivateKeyEntry(pk, certs);
126 kss[i].setEntry(aliases[1], pKey, pPath);
127 kss[i].setEntry(aliases[2], pKey, pPath);
KSBuilder_ImplTest.java 146 KeyStore.PrivateKeyEntry pKey = new KeyStore.PrivateKeyEntry(privKey,
160 ks.setEntry("aaa", pKey, pp[0]);
  /frameworks/wilhelm/src/android/
AudioPlayer_to_android.h 92 * input pointers != NULL (pItemCount, pKeySize, pKey, pValueSize, pValue)
104 SLuint32 index, SLuint32 size, SLMetadataInfo *pKey);
  /frameworks/compile/mclinker/include/mcld/Target/
GNULDBackend.h 438 size_t operator()(const LDSymbol* pKey) const
440 return (unsigned((uintptr_t)pKey) >> 4) ^
441 (unsigned((uintptr_t)pKey) >> 9);
  /external/valgrind/main/include/
pub_tool_wordfm.h 147 /*OUT*/UWord* pKey, /*OUT*/UWord* pVal );
  /external/icu4c/tools/toolutil/
ucmstate.c 206 char *line, char **pKey, char **pValue) {
240 *pKey=++s;
263 if(uprv_strcmp(*pKey, "uconv_class")==0) {
277 } else if(uprv_strcmp(*pKey, "mb_cur_max")==0) {
287 } else if(uprv_strcmp(*pKey, "mb_cur_min")==0) {
296 } else if(uprv_strcmp(*pKey, "icu:state")==0) {
317 } else if(uprv_strcmp(*pKey, "icu:base")==0) {
    [all...]
ucm.h 126 char *line, char **pKey, char **pValue);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.el_1.0.0.v201004212143.jar 

Completed in 309 milliseconds

1 2 3