Home
last modified time | relevance | path

Searched refs:hasCarry (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Support/
DAPInt.cpp304 uint8_t hasCarry = 0; in mul_1() local
307 hasCarry = (dest[i] < carry) ? 1 : 0; in mul_1()
308 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0); in mul_1()
311 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul_1()
315 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0) + in mul_1()
337 uint8_t hasCarry = 0; in mul() local
339 hasCarry = (resul < carry) ? 1 : 0; in mul()
340 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()
341 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul()
346 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)+ in mul()
/external/llvm/lib/Support/
DAPInt.cpp307 uint8_t hasCarry = 0; in mul_1() local
310 hasCarry = (dest[i] < carry) ? 1 : 0; in mul_1()
311 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0); in mul_1()
314 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul_1()
318 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0) + in mul_1()
340 uint8_t hasCarry = 0; in mul() local
342 hasCarry = (resul < carry) ? 1 : 0; in mul()
343 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()
344 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul()
349 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)+ in mul()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp323 uint8_t hasCarry = 0; in mul_1() local
326 hasCarry = (dest[i] < carry) ? 1 : 0; in mul_1()
327 carry = hx * ly + (dest[i] >> 32) + (hasCarry ? (1ULL << 32) : 0); in mul_1()
330 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul_1()
334 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0) + in mul_1()
356 uint8_t hasCarry = 0; in mul() local
358 hasCarry = (resul < carry) ? 1 : 0; in mul()
359 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()
360 hasCarry = (!carry && hasCarry) ? 1 : (!carry ? 2 : 0); in mul()
365 carry = (((!carry && hasCarry != 2) || hasCarry == 1) ? (1ULL << 32) : 0)+ in mul()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp1517 bool hasCarry = in ExpandIntRes_ADDSUB() local
1522 if (hasCarry) { in ExpandIntRes_ADDSUB()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp1741 bool hasCarry = in ExpandIntRes_ADDSUB() local
1746 if (hasCarry) { in ExpandIntRes_ADDSUB()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeIntegerTypes.cpp1833 bool hasCarry = in ExpandIntRes_ADDSUB() local
1838 if (hasCarry) { in ExpandIntRes_ADDSUB()