OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:piter
(Results
1 - 4
of
4
) 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
...]
/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();
/external/openssl/crypto/pkcs12/
p12_npas.c
72
static int alg_get(X509_ALGOR *alg, int *pnid, int *
piter
, int *psaltlen);
204
static int alg_get(X509_ALGOR *alg, int *pnid, int *
piter
, int *psaltlen)
212
*
piter
= ASN1_INTEGER_get(pbe->iter);
Completed in 15 milliseconds