Lines Matching full:atoll
1076 logln("Testing atoll");
1077 // atoll
1084 LLAssert(llong::atoll(empty) == llong(0, 0));
1085 LLAssert(llong::atoll(zero) == llong(0, 0));
1086 LLAssert(llong::atoll(neg_one) == llong(0xffffffff, 0xffffffff));
1087 LLAssert(llong::atoll(neg_12345) == -llong(0, 12345));
1088 LLAssert(llong::atoll(big1, 16) == llong(0x12345678, 0x9abcdef0));
1089 LLAssert(llong::atoll(big2, 16) == llong(0xffffffff, 0xffffffff));