Searched refs:ull (Results 1 - 25 of 38) sorted by relevance

12

/external/compiler-rt/lib/ubsan/lit_tests/Integer/
H A Dno-recover.cpp19 (void)(uint64_t(10000000000000000000ull) + uint64_t(9000000000000000000ull));
H A Duadd-overflow.cpp20 (void)(uint64_t(10000000000000000000ull) + uint64_t(9000000000000000000ull));
/external/clang/test/CodeGen/
H A DAtomics.c12 unsigned long long ull; variable
23 (void) __sync_fetch_and_add (&ull, 1); // CHECK: atomicrmw add i64
32 (void) __sync_fetch_and_sub (&ull, 1); // CHECK: atomicrmw sub i64
41 (void) __sync_fetch_and_or (&ull, 1); // CHECK: atomicrmw or i64
50 (void) __sync_fetch_and_xor (&ull, 1); // CHECK: atomicrmw xor i64
59 (void) __sync_fetch_and_and (&ull, 1); // CHECK: atomicrmw and i64
72 ull = __sync_fetch_and_add (&ull, 11); // CHECK: atomicrmw add
81 ull = __sync_fetch_and_sub (&ull, 1
[all...]
H A Dcomplex-convert.c12 unsigned long long ull, _Complex signed char csc,
139 csc1 = ull;
169 cuc1 = ull;
200 csll1 = ull;
230 cull1 = ull;
421 csll1 = ull + csc;
436 cull1 = ull + cuc;
451 csll1 = ull + csll;
464 cull1 = ull + cull;
528 csll1 = csc + ull;
11 foo(signed char sc, unsigned char uc, signed long long sll, unsigned long long ull, _Complex signed char csc, _Complex unsigned char cuc, _Complex signed long long csll, _Complex unsigned long long cull) argument
[all...]
/external/libpcap/
H A Dpcap-int.h58 #define SWAPLL(ull) ((ull & 0xff00000000000000LL) >> 56) | \
59 ((ull & 0x00ff000000000000LL) >> 40) | \
60 ((ull & 0x0000ff0000000000LL) >> 24) | \
61 ((ull & 0x000000ff00000000LL) >> 8) | \
62 ((ull & 0x00000000ff000000LL) << 8) | \
63 ((ull & 0x0000000000ff0000LL) << 24) | \
64 ((ull & 0x000000000000ff00LL) << 40) | \
65 ((ull & 0x00000000000000ffLL) << 56)
/external/valgrind/main/none/tests/s390x/
H A Dflogr.c104 value = 1ull << i;
113 value = 1ull << i;
/external/qemu/distrib/libpng-1.2.19/
H A Dpnggccrd.c506 typedef unsigned long long ull; typedef
510 //ull _mask_array[26];
513 ull _mask8_0;
514 ull _mask16_0, _mask16_1;
515 ull _mask24_0, _mask24_1, _mask24_2;
516 ull _mask32_0, _mask32_1, _mask32_2, _mask32_3;
517 ull _mask48_0, _mask48_1, _mask48_2, _mask48_3, _mask48_4, _mask48_5;
520 ull _amask5_3_0, _amask7_1_0; // was _const4 and _const6, respectively
523 ull _LBCarryMask, _HBClearMask;
524 ull _amask0_8_
[all...]
/external/libppp/src/
H A Dbundle.h59 #define Enabled(b, o) ((b)->cfg.optmask & (1ull << (o)))
60 #define opt_enable(b, o) ((b)->cfg.optmask |= (1ull << (o)))
61 #define opt_disable(b, o) ((b)->cfg.optmask &= ~(1ull << (o)))
H A Dbundle.c832 bundle.cfg.optmask = (1ull << OPT_IDCHECK) | (1ull << OPT_LOOPBACK) |
833 (1ull << OPT_SROUTES) | (1ull << OPT_TCPMSSFIXUP) |
834 (1ull << OPT_THROUGHPUT) | (1ull << OPT_UTMP) |
835 (1ull << OPT_NAS_IP_ADDRESS) |
836 (1ull << OPT_NAS_IDENTIFIER);
/external/stressapptest/src/
H A Dsattypes.h96 #define CPU_ISSET(index, cpu_set_ptr) (*(cpu_set_ptr) & 1ull << (index))
97 #define CPU_SET(index, cpu_set_ptr) (*(cpu_set_ptr) |= 1ull << (index))
99 #define CPU_CLR(index, cpu_set_ptr) (*(cpu_set_ptr) &= ~(1ull << (index)))
/external/webkit/Source/JavaScriptCore/jit/
H A DExecutableAllocatorFixedVMPool.cpp49 #define TwoPow(n) (1ull << n)
114 BitField mask = ((1ull << count) - 1) << (alignment - count);
133 BitField mask = ((1ull << count) - 1) << entry;
291 BitField mask = ((1ull << count) - 1) << (alignment - count);
311 BitField bit = 1ull << entry;
320 BitField mask = ((1ull << count) - 1) << entry;
359 BitField bit = 1ull << i;
368 BitField bit = 1ull << i;
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.align/
H A Dp5.cpp16 enum alignas(4) E4 { e4 = 1ull << 33 }; // expected-error {{requested alignment is less than minimum alignment of 8 for type 'E4'}}
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.cc801 if (value < (1ull << 35)) {
802 if (value < (1ull << 7)) {
804 } else if (value < (1ull << 14)) {
806 } else if (value < (1ull << 21)) {
808 } else if (value < (1ull << 28)) {
814 if (value < (1ull << 42)) {
816 } else if (value < (1ull << 49)) {
818 } else if (value < (1ull << 56)) {
820 } else if (value < (1ull << 63)) {
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h207 const u64 mask = (1ull << (kTracePartSizeBits + hs + 1)) - 1;
215 static const u64 kIgnoreBit = 1ull << 63;
216 static const u64 kFreedBit = 1ull << 63;
314 u64 size() const { return 1ull << size_log(); }
367 static const u64 kReadBit = 1ull << kReadShift;
369 static const u64 kAtomicBit = 1ull << kAtomicShift;
H A Dtsan_defs.h148 return (T)((u64)v & ((1ull << bits) - 1));
H A Dtsan_rtl.cc304 return (uptr)(1ull << (kTracePartSizeBits + flags()->history_size + 1));
/external/llvm/unittests/ADT/
H A DHashingTest.cpp84 EXPECT_NE(hash_combine(42, 43), hash_value(std::make_pair(42ull, 43ull)));
85 EXPECT_NE(hash_combine(42, 43), hash_value(std::make_pair(42, 43ull)));
86 EXPECT_NE(hash_combine(42, 43), hash_value(std::make_pair(42ull, 43)));
97 EXPECT_EQ(hash_combine('0', hash_combine(1ull, '2')),
98 hash_value(std::make_pair('0', std::make_pair(1ull, '2'))));
H A DAPIntTest.cpp53 EXPECT_EQ(((uint64_t)-2)&((1ull<<33) -1), i33minus2.getZExtValue());
92 EXPECT_EQ((uint64_t)~0ull, u64max.getZExtValue());
/external/kernel-headers/original/linux/
H A Djiffies.h444 do_div(x, (unsigned long)((9ull * NSEC_PER_SEC + (USER_HZ/2))
/external/clang/INPUTS/
H A Dc99-intconst-1.c135 CHECK_SUFull_TYPE(C##ull); \
153 CHECK_SUFull_TYPE(C##ull); \
/external/qemu/target-arm/
H A Dop_helper.c555 tmp64 = 0ull;
569 tmp64 = 0ull;
/external/oprofile/libpp/
H A Dprofile_container.cpp89 count_type count = accumulate(p_it.first, p_it.second, 0ull);
/external/valgrind/main/helgrind/
H A Dlibhb_core.c264 struct { ULong ull; ExeContext* ec; } member in struct:__anon15114
3712 pair.ull = VtsID__indexAt( thr->viW, thr );
3727 thr, pair.ull, pair.ec );
3733 tl_assert( prevPair->ull <= pair.ull );
3743 thr, pair.ull, pair.ec );
3750 if (pair1->ull < pair2->ull) return -1;
3751 if (pair1->ull > pair2->ull) retur
[all...]
/external/valgrind/main/coregrind/
H A Dm_main.c1517 typedef struct { Addr a; ULong ull; } Addr_n_ULong; member in struct:__anon14831
2080 anu.ull = VG_(di_notify_mmap)( seg_starts[i], True/*allow_SkFileV*/,
2082 /* anu.ull holds the debuginfo handle returned by di_notify_mmap,
2084 if (anu.ull > 0) {
2223 tl_assert(anl->ull > 0); /* check it's a valid handle */
2232 ? ((Addr_n_ULong*)VG_(indexXA)( addr2dihandle, j ))->ull
/external/iproute2/misc/
H A Difstat.c242 static const unsigned long long giga = 1000000000ull;

Completed in 969 milliseconds

12