Searched defs:long (Results 1 - 25 of 33) sorted by relevance

12

/external/clang/test/SemaCXX/Inputs/
H A Dwarn-new-overaligned-3.h6 void* operator new(unsigned long) { argument
9 void* operator new[](unsigned long) { argument
13 void* operator new(unsigned long, void *) { argument
17 void* operator new[](unsigned long, void *) { argument
/external/clang/test/CodeGenCXX/
H A DDynArrayInit.cpp7 inline void* operator new[](unsigned long, void* __p) { return __p; } argument
/external/chromium_org/v8/test/mjsunit/
H A Dstring-indexof-1.js80 // Test complex string indexOf algorithms. Only trigger for long strings.
83 var long = "A"; variable
85 long = long + String.fromCharCode(i) + long;
88 // pattern of 15 chars, repeated every 16 chars in long
90 for(var i = 0; i < long.length - pattern.length; i+= 7) {
91 var index = long.indexOf(pattern, i);
94 assertEquals(510, long.indexOf("AJABACA"), "Long AJABACA, First J");
95 assertEquals(1534, long
[all...]
H A Dstring-charcodeat.js188 // Medium (>255) and long (>65535) strings.
197 var long = medium; variable
198 long += long + long + long; // 1024.
199 long += long + long + long; // 409
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBCursor.h42 virtual void advance(unsigned long, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); } argument
H A DWebIDBCallbacks.h57 virtual void onSuccess(long long) { BLINK_ASSERT_NOT_REACHED(); } argument
60 virtual void onBlocked(long long oldVersion) { BLINK_ASSERT_NOT_REACHED(); }
61 virtual void onUpgradeNeeded(long long oldVersion, WebIDBDatabase*, const WebIDBMetadata&, unsigned short dataLoss, WebString dataLossMessage) { BLINK_ASSERT_NOT_REACHED(); }
/external/chromium_org/third_party/tlslite/tlslite/utils/
H A Dcompat.py54 def long(n): function
/external/clang/test/CXX/dcl.dcl/
H A Dp4-0x.cpp13 constexpr operator long() const { return 0; } // expected-note {{candidate}}
/external/clang/test/SemaCXX/
H A Dwarn-new-overaligned.cpp40 void* operator new(unsigned long) { argument
61 void* operator new[](unsigned long) { argument
/external/compiler-rt/lib/msan/tests/
H A Dmsandr_test_so.cc27 int dso_callfn1(int (*fn)(long long, long long, long long)) { //NOLINT argument
/external/valgrind/main/none/tests/s390x/
H A Dflogr.c17 flogr1(unsigned long input, unsigned long *bitpos, unsigned long *modval,
21 register unsigned long value asm("4") = input;
41 flogr2(unsigned long input, unsigned long *bitpos, unsigned long *modval,
45 register unsigned long value asm("2") = input;
65 flogr3(unsigned long input, unsigned long *bitpo
88 runtest(void (*func)(unsigned long, unsigned long *, unsigned long *, unsigned int *)) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DFetchContext.cpp43 void FetchContext::dispatchDidChangeResourcePriority(unsigned long, ResourceLoadPriority, int) argument
64 void FetchContext::dispatchWillSendRequest(DocumentLoader*, unsigned long, ResourceRequest&, const ResourceResponse&, const FetchInitiatorInfo&) argument
72 void FetchContext::dispatchDidReceiveResponse(DocumentLoader*, unsigned long, const ResourceResponse&, ResourceLoader*) argument
76 void FetchContext::dispatchDidReceiveData(DocumentLoader*, unsigned long, const char*, int, int) argument
80 void FetchContext::dispatchDidDownloadData(DocumentLoader*, unsigned long, int, int) argument
84 void FetchContext::dispatchDidFinishLoading(DocumentLoader*, unsigned long, double, int64_t) argument
88 void FetchContext::dispatchDidFail(DocumentLoader*, unsigned long, const ResourceError&) argument
92 void FetchContext::sendRemainingDelegateMessages(DocumentLoader*, unsigned long, const ResourceResponse&, int) argument
/external/clang/test/Parser/
H A Dcxx11-user-defined-literals.cpp52 constexpr unsigned long long operator"" _id(unsigned long long n) { return n; }
53 constexpr long double operator"" _id(long double d) { return d; }
99 " _foo(unsigned long long); // ok
101 void operator R"xyzzy()xyzzy" _foo(long double); // ok
116 int operator""_µs(unsigned long lon argument
118 u00b5s(unsigned long long) argument
134 _(unsigned long long) argument
135 u212f(unsigned long long) argument
136 _(unsigned long long) argument
137 u212f(unsigned long long) argument
139 _(unsigned long long) argument
140 u212e(unsigned long long) argument
[all...]
/external/bison/lib/
H A Dobstack.c58 long double d;
75 /* When we copy a long block of data, this is the unit to do it with.
77 in such a case, redefine COPYING_UNIT to 'long' (if that works)
121 : (*(struct _obstack_chunk *(*) (long)) (h)->chunkfun) ((size)))
144 void *(*chunkfun) (long),
168 h->chunkfun = (struct _obstack_chunk * (*)(void *, long)) chunkfun;
190 void *(*chunkfun) (void *, long),
215 h->chunkfun = (struct _obstack_chunk * (*)(void *,long)) chunkfun;
247 register long new_size;
248 register long obj_siz
141 _obstack_begin(struct obstack *h, int size, int alignment, void *(*chunkfun) (long), void (*freefun) (void *)) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileReaderLoader.cpp174 void FileReaderLoader::didReceiveResponse(unsigned long, const ResourceResponse& response) argument
184 long long initialBufferLength = -1;
261 void FileReaderLoader::didFinishLoading(unsigned long, double) argument
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventSource.cpp60 const unsigned long long EventSource::defaultReconnectDelay = 3000;
223 void EventSource::didReceiveResponse(unsigned long, const ResourceResponse& response) argument
274 void EventSource::didFinishLoading(unsigned long, double) argument
414 unsigned long long retry = value.toUInt64(&ok);
/external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
H A DFetchManager.cpp31 virtual void didReceiveResponse(unsigned long, const ResourceResponse&);
32 virtual void didFinishLoading(unsigned long, double);
54 long long m_downloadedBlobLength;
78 void FetchManager::Loader::didReceiveResponse(unsigned long, const ResourceResponse& response) argument
83 void FetchManager::Loader::didFinishLoading(unsigned long, double) argument
/external/clang/test/CXX/expr/expr.const/
H A Dp5-0x.cpp11 constexpr operator long() const { return 43; }
34 constexpr operator long() const { return 1; } // expected-note 4{{here}}
/external/fio/lib/
H A Daxmap.c43 unsigned long map_size;
44 unsigned long *map;
54 static unsigned long ulog64(unsigned long val, unsigned int log)
69 memset(al->map, 0, al->map_size * sizeof(unsigned long));
89 struct axmap *axmap_new(unsigned long nr_bits)
114 al->map = smalloc(al->map_size * sizeof(unsigned long));
133 int (*func)(struct axmap_level *, unsigned long, unsigned int,
140 unsigned long index = ulog64(bit_nr, i);
141 unsigned long offse
132 axmap_handler(struct axmap *axmap, uint64_t bit_nr, int (*func)(struct axmap_level *, unsigned long, unsigned int, void *), void *data) argument
153 axmap_handler_topdown(struct axmap *axmap, uint64_t bit_nr, int (*func)(struct axmap_level *, unsigned long, unsigned int, void *), void *data) argument
[all...]
/external/chromium_org/content/child/
H A Dmultipart_response_delegate_unittest.cc57 WebURLLoader*, unsigned long long, unsigned long long) {}
56 didSendData( WebURLLoader*, unsigned long long, unsigned long long) argument
/external/chromium_org/third_party/WebKit/Source/web/
H A DAssociatedURLLoader.cpp125 virtual void didSendData(unsigned long long /*bytesSent*/, unsigned long long /*totalBytesToBeSent*/) OVERRIDE;
128 virtual void didReceiveResponse(unsigned long, const ResourceResponse&) OVERRIDE;
132 virtual void didFinishLoading(unsigned long /*identifier*/, double /*finishTime*/) OVERRIDE;
188 void AssociatedURLLoader::ClientAdapter::didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSen
196 didReceiveResponse(unsigned long, const ResourceResponse& response) argument
[all...]
/external/compiler-rt/lib/BlocksRuntime/
H A Druntime.c51 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) {
53 long original = InterlockedCompareExchange(dst, newl, oldl);
72 static __inline bool OSAtomicCompareAndSwapLong(long oldl, long newl, long volatile *dst) {
103 static unsigned long int latching_incr_long(unsigned long int *where) {
105 unsigned long in
231 _Block_use_GC( void *(*alloc)(const unsigned long, const bool isOne, const bool isObject), void (*setHasRefcount)(const void *, const bool), void (*gc_assign)(void *, void **), void (*gc_assign_weak)(const void *, void *), void (*gc_memmove)(void *, void *, unsigned long)) argument
254 _Block_use_GC5( void *(*alloc)(const unsigned long, const bool isOne, const bool isObject), void (*setHasRefcount)(const void *, const bool), void (*gc_assign)(void *, void **), void (*gc_assign_weak)(const void *, void *)) argument
[all...]
/external/libvorbis/doc/
H A D01-introduction.tex97 bitstream so long as the codec has been initialized/setup with the
296 \item decode window shape (long windows only)
341 \paragraph{Window shape decode (long windows only)} \label{vorbis:spec:window}
366 \captionof{figure}{overlap of a long and a short window}
369 In the unequal-sized window case, the window shape of the long window
373 legal for a decoder to use this method. However, in the case of a long
514 overlapped portions. When overlapping a short and long window, much of
/external/chromium_org/third_party/icu/source/i18n/
H A DdecNumberLocal.h67 /* not use int or long directly. */
82 typedef long int LI; /* for printf arguments only */
88 #define long ?? /* .. or 'long' types are not used */ macro
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp59 #define long macro
144 long

Completed in 9411 milliseconds

12