HomeSort by relevance Sort by last modified time
    Searched full:piter (Results 1 - 15 of 15) sorted by null

  /bootable/recovery/minzip/
Hash.h 152 INLINE void mzHashIterNext(HashIter* pIter) {
153 int i = pIter->idx +1;
154 int lim = pIter->pHashTable->tableSize;
156 void* data = pIter->pHashTable->pEntries[i].data;
160 pIter->idx = i;
162 INLINE void mzHashIterBegin(HashTable* pHashTable, HashIter* pIter) {
163 pIter->pHashTable = pHashTable;
164 pIter->idx = -1;
165 mzHashIterNext(pIter);
167 INLINE bool mzHashIterDone(HashIter* pIter) {
    [all...]
  /dalvik/vm/
Hash.h 187 INLINE void dvmHashIterNext(HashIter* pIter) {
188 int i = pIter->idx +1;
189 int lim = pIter->pHashTable->tableSize;
191 void* data = pIter->pHashTable->pEntries[i].data;
195 pIter->idx = i;
197 INLINE void dvmHashIterBegin(HashTable* pHashTable, HashIter* pIter) {
198 pIter->pHashTable = pHashTable;
199 pIter->idx = -1;
200 dvmHashIterNext(pIter);
202 INLINE bool dvmHashIterDone(HashIter* pIter) {
    [all...]
  /frameworks/compile/mclinker/lib/Support/Unix/
PathV3.inc 226 mcld::sys::fs::PathCache::entry_type* bring_one_into_cache(DirIterator& pIter)
229 std::string path(pIter.m_pParent->m_Path.native());
230 switch (read_dir(pIter.m_pParent->m_Handler, path)) {
234 entry = pIter.m_pParent->m_Cache.insert(path, exist);
240 pIter.m_pParent->m_CacheFull = true;
245 pIter.m_pParent->path().native());
  /external/openfst/src/include/fst/
dfs-visit.h 139 ArcIterator< Fst<Arc> > &piter = parent_state->arc_iter; local
140 visitor->FinishState(s, p, &piter.Value());
141 piter.Next();
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
dfs-visit.h 115 ArcIterator< Fst<Arc> > &piter = parent_state->arc_iter; local
116 visitor->FinishState(s, p, &piter.Value());
117 piter.Next();
  /frameworks/compile/mclinker/include/mcld/Support/
Directory.h 36 friend mcld::sys::fs::PathCache::entry_type* detail::bring_one_into_cache(DirIterator& pIter);
110 friend mcld::sys::fs::PathCache::entry_type* detail::bring_one_into_cache(DirIterator& pIter);
125 const DirCache::iterator& pIter);
FileSystem.h 105 mcld::sys::fs::PathCache::entry_type* bring_one_into_cache(DirIterator& pIter);
  /external/openssl/crypto/pkcs12/
p12_npas.c 72 static int alg_get(X509_ALGOR *alg, int *pnid, int *piter, int *psaltlen);
211 static int alg_get(X509_ALGOR *alg, int *pnid, int *piter, int *psaltlen)
221 *piter = ASN1_INTEGER_get(pbe->iter);
  /frameworks/compile/mclinker/lib/LD/
Archive.cpp 82 /// @param pIter - the iterator in the input tree built from this archive
83 bool Archive::addObjectMember(uint32_t pFileOffset, InputTree::iterator pIter)
88 entry->setValue(pIter);
  /frameworks/compile/mclinker/lib/Support/
Directory.cpp 150 const DirIterator::DirCache::iterator& pIter)
152 m_Iter(pIter) {
  /frameworks/compile/mclinker/include/mcld/LD/
Archive.h 156 /// @param pIter - the iterator in the input tree built from this archive
157 bool addObjectMember(uint32_t pFileOffset, InputTree::iterator pIter);
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
relayserver.cc 207 ConnectionMap::iterator piter = connections_.find(ap); local
208 if (piter == connections_.end()) {
213 RelayServerConnection* int_conn = piter->second;
253 ConnectionMap::iterator piter = connections_.find(ap); local
254 if (piter != connections_.end()) {
256 RelayServerConnection* ext_conn = piter->second;
  /external/openfst/src/test/
algo_test.h 797 ArcIterator< Fst<Arc> > piter(paths, pstart);
798 for (; !piter.Done(); piter.Next()) {
799 StateId s = piter.Value().nextstate;
801 Times(piter.Value().weight, distance[s]) : Weight::Zero();
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_database.cc 137 std::vector<SBPrefix>::const_iterator piter = prefix_hits.begin(); local
140 while (piter != prefix_hits.end() && hiter != full_hashes.end()) {
141 if (*piter < hiter->full_hash.prefix) {
142 ++piter;
143 } else if (hiter->full_hash.prefix < *piter) {
159 // Only increment |hiter|, |piter| might have multiple hits.
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp     [all...]

Completed in 427 milliseconds