HomeSort by relevance Sort by last modified time
    Searched defs:ull (Results 1 - 3 of 3) sorted by null

  /external/clang/test/CodeGen/
Atomics.c 12 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, 11); // CHECK: atomicrmw su
    [all...]
  /external/lldb/source/Expression/
IRMemoryMap.cpp 87 candidate <<= 32ull; local
  /external/fio/
parse.c 302 *val = -1ULL - *val;
413 long long ull, *ullp; local
470 ret = check_str_time(tmp, &ull, o->is_seconds);
472 ret = check_str_bytes(tmp, &ull, data);
474 dprint(FD_PARSE, " ret=%d, out=%llu\n", ret, ull);
479 if (o->maxval && ull > o->maxval) {
481 " (%u max)\n", ull, o->maxval);
484 if (o->minval && ull < o->minval) {
486 " (%u min)\n", ull, o->minval);
497 if (vp->oval == ull) {
    [all...]

Completed in 151 milliseconds