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

12

/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...]
/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);
H A Dcommand.c483 substull(char *tgt, const char *oldstr, unsigned long long ull) argument
487 snprintf(buf, sizeof buf, "%llu", ull);
/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/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/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());
84 EXPECT_EQ((uint64_t)~0ull, u64max.getZExtValue());
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl.h118 static const u64 kIgnoreBit = 1ull;
119 static const u64 kFreedBit = 1ull << 63;
198 u64 size() const { return 1ull << size_log(); }
/external/kernel-headers/original/linux/
H A Djiffies.h444 do_div(x, (unsigned long)((9ull * NSEC_PER_SEC + (USER_HZ/2))
H A Dfs.h1896 __simple_attr_check_format(__fmt, 0ull); \
/external/llvm/include/llvm/
H A DAttributes.h240 EncodedAttrs |= (1ull << 16) <<
/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.c263 struct { ULong ull; ExeContext* ec; } member in struct:__anon14529
3711 pair.ull = VtsID__indexAt( thr->viW, thr );
3726 thr, pair.ull, pair.ec );
3732 tl_assert( prevPair->ull <= pair.ull );
3742 thr, pair.ull, pair.ec );
3749 if (pair1->ull < pair2->ull) return -1;
3750 if (pair1->ull > pair2->ull) retur
[all...]
/external/valgrind/main/coregrind/
H A Dm_main.c1415 typedef struct { Addr a; ULong ull; } Addr_n_ULong; member in struct:__anon14253
1938 anu.ull = VG_(di_notify_mmap)( seg_starts[i], True/*allow_SkFileV*/,
1940 /* anu.ull holds the debuginfo handle returned by di_notify_mmap,
1942 if (anu.ull > 0) {
2079 tl_assert(anl->ull > 0); /* check it's a valid handle */
2088 ? ((Addr_n_ULong*)VG_(indexXA)( addr2dihandle, j ))->ull
/external/iproute2/misc/
H A Difstat.c242 static const unsigned long long giga = 1000000000ull;
/external/qemu-pc-bios/bochs/bios/
H A Drombios32.c624 ((uint64_t)cmos_readb(0x5d) << 32)) + (1ull << 32);
2571 (ram_end - (1ull << 32) + ram_size) / (1024 * 1024);
/external/qemu/
H A Dtrace.c213 val = val * 1000000ull + tv.tv_usec;
/external/e2fsprogs/
H A Dconfigure7152 unsigned long long ull = 1ULL; int i = 63;
7157 return ull << i | ull >> i | ullmax / ull | ullmax % ull;

Completed in 567 milliseconds

12