Searched defs:i128 (Results 1 - 6 of 6) sorted by relevance
/external/clang/test/Sema/ |
H A D | 128bitint.c | 5 typedef int i128 __attribute__((__mode__(TI))); typedef 8 int a[((i128)-1 ^ (i128)-2) == 1 ? 1 : -1];
|
/external/llvm/include/llvm/CodeGen/ |
H A D | MachineValueType.h | 44 i128 = 6, // This is a 128 bit integer value enumerator in enum:llvm::MVT::SimpleValueType 47 LAST_INTEGER_VALUETYPE = i128, 102 v1i128 = 51, // 1 x i128 348 case v1i128: return i128; 474 case i128: 577 return MVT::i128; 633 case MVT::i128:
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.heap.operations/is.heap/ |
H A D | is_heap.pass.cpp | 270 int i128[] = {0, 0, 0, 1, 0, 0, 0}; local 397 assert(std::is_heap(i128, i128+7) == (std::is_heap_until(i128, i128+7) == i128+7));
|
H A D | is_heap_comp.pass.cpp | 271 int i128[] = {0, 0, 0, 1, 0, 0, 0}; local 398 assert(std::is_heap(i128, i128+7, std::greater<int>()) == (std::is_heap_until(i128, i128+7, std::greater<int>()) == i128+7));
|
H A D | is_heap_until.pass.cpp | 270 int i128[] = {0, 0, 0, 1, 0, 0, 0}; local 397 assert(std::is_heap_until(i128, i128+7) == i128+3);
|
H A D | is_heap_until_comp.pass.cpp | 271 int i128[] = {0, 0, 0, 1, 0, 0, 0}; local 398 assert(std::is_heap_until(i128, i128+7, std::greater<int>()) == i128+7);
|
Completed in 322 milliseconds