Searched defs:foundInt (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/storage/
H A DIDBLevelDBBackingStore.cpp221 static const char* decodeVarInt(const char *p, const char* limit, int64_t& foundInt) argument
224 foundInt = 0;
230 foundInt = (foundInt << 7) | (*p & 0x7f);
467 static bool getInt(LevelDBDatabase* db, const Vector<char>& key, int64_t& foundInt) argument
473 foundInt = decodeInt(result.begin(), result.end());

Completed in 94 milliseconds