Searched refs:int64_t (Results 1 - 25 of 948) sorted by relevance

1234567891011>>

/macosx-10.9.5/xnu-2422.115.4/bsd/sys/_types/
H A D_int64_t.h30 typedef long long int64_t; typedef
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DIDBDatabaseBackendInterface.h56 virtual void createObjectStore(int64_t transactionId, int64_t objectStoreId, const String& name, const IDBKeyPath&, bool autoIncrement) = 0;
57 virtual void deleteObjectStore(int64_t transactionId, int64_t objectStoreId) = 0;
58 virtual void createTransaction(int64_t transactionId, PassRefPtr<IDBDatabaseCallbacks>, const Vector<int64_t>& objectStoreIds, unsigned short mode) = 0;
62 virtual void commit(int64_t transactionId) = 0;
63 virtual void abort(int64_t transactionId) = 0;
64 virtual void abort(int64_t transactionId, PassRefPtr<IDBDatabaseError>) = 0;
66 virtual void createIndex(int64_t transactionI
[all...]
H A DIDBLevelDBCoding.h56 Vector<char> encodeInt(int64_t);
57 inline Vector<char> encodeIntSafely(int64_t nParam, int64_t max)
62 int64_t decodeInt(const char* begin, const char* end);
63 Vector<char> encodeVarInt(int64_t);
64 const char* decodeVarInt(const char* p, const char* limit, int64_t& foundInt);
85 explicit KeyPrefix(int64_t databaseId);
86 KeyPrefix(int64_t databaseId, int64_t objectStoreId);
87 KeyPrefix(int64_t databaseI
[all...]
H A DIDBDatabaseBackendImpl.h53 static const int64_t InvalidId = 0;
54 int64_t id() const { return m_metadata.id; }
55 void addObjectStore(const IDBObjectStoreMetadata&, int64_t newMaxObjectStoreId);
56 void removeObjectStore(int64_t objectStoreId);
57 void addIndex(int64_t objectStoreId, const IDBIndexMetadata&, int64_t newMaxIndexId);
58 void removeIndex(int64_t objectStoreId, int64_t indexId);
60 void openConnection(PassRefPtr<IDBCallbacks>, PassRefPtr<IDBDatabaseCallbacks>, int64_t transactionId, int64_t versio
[all...]
H A DIDBOpenDBRequest.h39 static PassRefPtr<IDBOpenDBRequest> create(ScriptExecutionContext*, PassRefPtr<IDBDatabaseCallbacksImpl>, int64_t transactionId, int64_t version);
44 virtual void onBlocked(int64_t existingVersion) OVERRIDE;
45 virtual void onUpgradeNeeded(int64_t oldVersion, PassRefPtr<IDBDatabaseBackendInterface>, const IDBDatabaseMetadata&) OVERRIDE;
59 IDBOpenDBRequest(ScriptExecutionContext*, PassRefPtr<IDBDatabaseCallbacksImpl>, int64_t transactionId, int64_t version);
62 const int64_t m_transactionId;
63 int64_t m_version;
H A DIDBDatabaseCallbacks.h42 virtual void onVersionChange(int64_t oldVersion, int64_t newVersion) = 0;
44 virtual void onAbort(int64_t transactionId, PassRefPtr<IDBDatabaseError>) = 0;
45 virtual void onComplete(int64_t transactionId) = 0;
H A DIDBMetadata.h43 IDBIndexMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool unique, bool multiEntry)
50 int64_t id;
55 static const int64_t InvalidId = -1;
60 IDBObjectStoreMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool autoIncrement, int64_t maxIndexId)
69 int64_t id;
72 int64_t maxIndexId;
74 static const int64_t InvalidId = -1;
76 typedef HashMap<int64_t, IDBIndexMetadata> IndexMap;
88 typedef HashMap<int64_t, IDBObjectStoreMetadat
[all...]
H A DIDBBackingStore.h68 virtual bool createIDBDatabaseMetaData(const String& name, const String& version, int64_t intVersion, int64_t& rowId);
69 virtual bool updateIDBDatabaseMetaData(IDBBackingStore::Transaction*, int64_t rowId, const String& version);
70 virtual bool updateIDBDatabaseIntVersion(IDBBackingStore::Transaction*, int64_t rowId, int64_t intVersion);
73 bool getObjectStores(int64_t databaseId, IDBDatabaseMetadata::ObjectStoreMap*) WARN_UNUSED_RETURN;
74 virtual bool createObjectStore(IDBBackingStore::Transaction*, int64_t databaseId, int64_t objectStoreId, const String& name, const IDBKeyPath&, bool autoIncrement);
75 virtual bool deleteObjectStore(IDBBackingStore::Transaction*, int64_t databaseId, int64_t objectStoreI
[all...]
H A DIDBObjectStoreBackendImpl.h58 bool verifyIndexKeys(IDBBackingStore&, IDBBackingStore::Transaction*, int64_t databaseId, int64_t objectStoreId, int64_t indexId, bool& canAddKeys, const IDBKey* primaryKey = 0, String* errorMessage = 0) const WARN_UNUSED_RETURN;
60 void writeIndexKeys(const IDBBackingStore::RecordIdentifier&, IDBBackingStore&, IDBBackingStore::Transaction*, int64_t databaseId, int64_t objectStoreId) const;
63 bool addingKeyAllowed(IDBBackingStore&, IDBBackingStore::Transaction*, int64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKey* indexKey, const IDBKey* primaryKey, bool& allowed) const WARN_UNUSED_RETURN;
69 bool makeIndexWriters(PassRefPtr<IDBTransactionBackendImpl>, IDBBackingStore*, int64_t databaseId, const IDBObjectStoreMetadata&, PassRefPtr<IDBKey> primaryKey, bool keyWasGenerated, const Vector<int64_t>
[all...]
H A DIDBDatabaseCallbacksImpl.h46 virtual void onVersionChange(int64_t oldVersion, int64_t newVersion);
48 virtual void onAbort(int64_t transactionId, PassRefPtr<IDBDatabaseError>);
49 virtual void onComplete(int64_t transactionId);
H A DIDBObjectStoreBackendImpl.cpp46 bool IDBObjectStoreBackendImpl::IndexWriter::verifyIndexKeys(IDBBackingStore& backingStore, IDBBackingStore::Transaction* transaction, int64_t databaseId, int64_t objectStoreId, int64_t indexId, bool& canAddKeys, const IDBKey* primaryKey, String* errorMessage) const
63 void IDBObjectStoreBackendImpl::IndexWriter::writeIndexKeys(const IDBBackingStore::RecordIdentifier& recordIdentifier, IDBBackingStore& backingStore, IDBBackingStore::Transaction* transaction, int64_t databaseId, int64_t objectStoreId) const
65 int64_t indexId = m_indexMetadata.id;
73 bool IDBObjectStoreBackendImpl::IndexWriter::addingKeyAllowed(IDBBackingStore& backingStore, IDBBackingStore::Transaction* transaction, int64_t databaseId, int64_t objectStoreId, int64_t indexId, const IDBKey* indexKey, const IDBKey* primaryKey, bool& allowed) const
91 bool IDBObjectStoreBackendImpl::makeIndexWriters(PassRefPtr<IDBTransactionBackendImpl> transaction, IDBBackingStore* backingStore, int64_t databaseI
[all...]
/macosx-10.9.5/xnu-2422.115.4/bsd/netinet/
H A Dmptcp_seq.h37 #define MPTCP_SEQ_LT(a, b) ((int64_t)((a) - (b)) < 0)
38 #define MPTCP_SEQ_LEQ(a, b) ((int64_t)((a) - (b)) <= 0)
39 #define MPTCP_SEQ_GT(a, b) ((int64_t)((a) - (b)) > 0)
40 #define MPTCP_SEQ_GEQ(a, b) ((int64_t)((a) - (b)) >= 0)
/macosx-10.9.5/ppp-727.90.1/Helpers/snhelper/
H A Dsnhelper.h9 void send_reply(xpc_connection_t connection, xpc_object_t request, int64_t result);
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/stdio/
H A Dftell.c40 int64_t
43 STDIO_INT(f, "ftell64", int64_t, (Sfio_t*), (f))
45 return (int64_t)sfseek(f, (Sfoff_t)0, SEEK_CUR);
H A Dftello.c40 int64_t
43 STDIO_INT(f, "ftello64", int64_t, (Sfio_t*), (f))
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DTextChecker.h67 static int64_t uniqueSpellDocumentTag(WebPageProxy*);
68 static void closeSpellDocumentWithTag(int64_t);
70 static Vector<WebCore::TextCheckingResult> checkTextOfParagraph(int64_t spellDocumentTag, const UChar* text, int length, uint64_t checkingTypes);
72 static void checkSpellingOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, int32_t& misspellingLocation, int32_t& misspellingLength);
73 static void checkGrammarOfString(int64_t spellDocumentTag, const UChar* text, uint32_t length, Vector<WebCore::GrammarDetail>&, int32_t& badGrammarLocation, int32_t& badGrammarLength);
76 static void updateSpellingUIWithMisspelledWord(int64_t spellDocumentTag, const String& misspelledWord);
77 static void updateSpellingUIWithGrammarString(int64_t spellDocumentTag, const String& badGrammarPhrase, const WebCore::GrammarDetail&);
78 static void getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses);
79 static void learnWord(int64_t spellDocumentTag, const String& word);
80 static void ignoreWord(int64_t spellDocumentTa
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/webdatabase/
H A DSQLResultSet.h46 int64_t insertId(ExceptionCode&) const;
50 void setInsertId(int64_t);
57 int64_t m_insertId;
/macosx-10.9.5/network_cmds-433/rtadvd.tproj/
H A Dadvcap.h40 extern int64_t agetnum(const char *);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DTextCheckerQt.cpp72 int64_t TextChecker::uniqueSpellDocumentTag(WebPageProxy*)
78 void TextChecker::closeSpellDocumentWithTag(int64_t)
83 void TextChecker::checkSpellingOfString(int64_t, const UChar*, uint32_t, int32_t&, int32_t&)
88 void TextChecker::checkGrammarOfString(int64_t, const UChar*, uint32_t, Vector<WebCore::GrammarDetail>&, int32_t&, int32_t&)
104 void TextChecker::updateSpellingUIWithMisspelledWord(int64_t, const String&)
109 void TextChecker::updateSpellingUIWithGrammarString(int64_t, const String&, const GrammarDetail&)
114 void TextChecker::getGuessesForWord(int64_t spellDocumentTag, const String& word, const String& context, Vector<String>& guesses)
119 void TextChecker::learnWord(int64_t, const String&)
124 void TextChecker::ignoreWord(int64_t spellDocumentTag, const String& word)
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Duvectr64.h10 // It is similar to UVector32, but holds int64_t values rather than int32_t.
27 * <p>Ultralightweight C++ implementation of an <tt>int64_t</tt> vector
66 int64_t* elements;
97 void addElement(int64_t elem, UErrorCode &status);
99 void setElementAt(int64_t elem, int32_t index);
101 void insertElementAt(int64_t elem, int32_t index, UErrorCode &status);
103 int64_t elementAti(int32_t index) const;
107 int64_t lastElementi(void) const;
109 //int32_t indexOf(int64_t elem, int32_t startIndex = 0) const;
111 //UBool contains(int64_t ele
[all...]
/macosx-10.9.5/libffi-18.1/tests/testsuite/libffi.call/
H A Dextension.c11 int64_t s8_fn(int8_t arg) {
15 int64_t s16_fn(int16_t arg) {
19 int64_t s32_fn(int32_t arg) {
23 int64_t s64_fn(int64_t arg) {
38 int64_t arg64 = -0x1234567890abcdefLL;
43 int64_t ret;
54 CHECK(ret == (int64_t)arg8);
57 CHECK(ret == (int64_t)arg16);
60 CHECK(ret == (int64_t)arg3
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/i18n/unicode/
H A Dutmscale.h43 * <td>int64_t</td>
50 * <td>int32_t or int64_t</td>
63 * <td>int64_t</td>
70 * <td>int64_t</td>
77 * <td>int32_t or int64_t</td>
105 * <td>int64_t</td>
124 * <th align="left">int64_t</th>
204 * Used in the JDK. Data is a Java <code>long</code> (<code>int64_t</code>). Value
212 * Used on Unix systems. Data is <code>int32_t</code> or <code>int64_t</code>. Value
228 * Used in Windows for file times. Data is an <code>int64_t</cod
[all...]
/macosx-10.9.5/libauto-185.5/
H A DStatistics.h47 volatile int64_t _accumulated; // The total accumulated time, in microseconds
72 int64_t microseconds() const { assert(!timer_running()); return _accumulated; }
76 int64_t elapsed_microseconds() {
77 int64_t start = _start;
84 int64_t timeval = microseconds();
105 return (int64_t)myinfo.user_time.seconds*1000000 + (int64_t)myinfo.user_time.microseconds;
174 volatile int64_t _should_collect_interval_start; // records the last time Zone::should_check() ran, to throttle requests
210 inline volatile int64_t *last_should_collect_time() { return &_should_collect_interval_start;}
218 inline void add_count(int64_t
[all...]
/macosx-10.9.5/WebCore-7537.78.1/icu/unicode/
H A Dutext.h225 utext_openUTF8(UText *ut, const char *s, int64_t length, UErrorCode *status);
243 utext_openUChars(UText *ut, const UChar *s, int64_t length, UErrorCode *status);
405 U_STABLE int64_t U_EXPORT2
450 utext_char32At(UText *ut, int64_t nativeIndex);
529 utext_next32From(UText *ut, int64_t nativeIndex);
549 utext_previous32From(UText *ut, int64_t nativeIndex);
563 U_STABLE int64_t U_EXPORT2
590 utext_setNativeIndex(UText *ut, int64_t nativeIndex);
633 U_STABLE int64_t U_EXPORT2
673 int64_t nativeStar
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DGroupSettings.h47 void setIndexedDBQuotaBytes(int64_t);
48 int64_t indexedDBQuotaBytes() const { return m_indexedDBQuotaBytes; }
58 int64_t m_indexedDBQuotaBytes;

Completed in 235 milliseconds

1234567891011>>