HomeSort by relevance Sort by last modified time
    Searched refs:resul (Results 1 - 4 of 4) sorted by null

  /external/libxml2/
runtest.c     [all...]
  /external/llvm/lib/Support/
APInt.cpp 341 uint64_t resul = carry + lx * ly; local
342 hasCarry = (resul < carry) ? 1 : 0;
343 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32);
347 resul = (carry << 32) | (resul & 0xffffffffULL);
348 dest[i+j] += resul;
350 (carry >> 32) + (dest[i+j] < resul ? 1 : 0) +
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Support/
APInt.cpp 338 uint64_t resul = carry + lx * ly; local
339 hasCarry = (resul < carry) ? 1 : 0;
340 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32);
344 resul = (carry << 32) | (resul & 0xffffffffULL);
345 dest[i+j] += resul;
347 (carry >> 32) + (dest[i+j] < resul ? 1 : 0) +
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
APInt.cpp 357 uint64_t resul = carry + lx * ly; local
358 hasCarry = (resul < carry) ? 1 : 0;
359 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32);
363 resul = (carry << 32) | (resul & 0xffffffffULL);
364 dest[i+j] += resul;
366 (carry >> 32) + (dest[i+j] < resul ? 1 : 0) +
    [all...]

Completed in 101 milliseconds