Home
last modified time | relevance | path

Searched refs:resul (Results 1 – 5 of 5) sorted by relevance

/external/libxml2/
Druntest.c2487 const char *resul ATTRIBUTE_UNUSED, in xpathDocTest()
2535 const char *resul ATTRIBUTE_UNUSED, in xptrDocTest()
3063 const char *resul ATTRIBUTE_UNUSED, in schemasTest()
3240 const char *resul ATTRIBUTE_UNUSED, in rngTest()
3329 const char *resul ATTRIBUTE_UNUSED, in rngStreamTest()
3491 const char *resul ATTRIBUTE_UNUSED, in patternTest()
3916 const char *resul ATTRIBUTE_UNUSED, in c14nWithCommentTest()
3923 const char *resul ATTRIBUTE_UNUSED, in c14nWithoutCommentTest()
3930 const char *resul ATTRIBUTE_UNUSED, in c14nExcWithoutCommentTest()
3937 const char *resul ATTRIBUTE_UNUSED, in c14n11WithoutCommentTest()
[all …]
DChangeLog2523 * test/ns7 resul//ns7*: added to the regression tests
18925 namespace recognition, and Dia as a resul :-(
/external/llvm/lib/Support/
DAPInt.cpp341 uint64_t resul = carry + lx * ly; in mul() local
342 hasCarry = (resul < carry) ? 1 : 0; in mul()
343 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()
347 resul = (carry << 32) | (resul & 0xffffffffULL); in mul()
348 dest[i+j] += resul; in mul()
350 (carry >> 32) + (dest[i+j] < resul ? 1 : 0) + in mul()
/external/swiftshader/third_party/LLVM/lib/Support/
DAPInt.cpp338 uint64_t resul = carry + lx * ly; in mul() local
339 hasCarry = (resul < carry) ? 1 : 0; in mul()
340 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()
344 resul = (carry << 32) | (resul & 0xffffffffULL); in mul()
345 dest[i+j] += resul; in mul()
347 (carry >> 32) + (dest[i+j] < resul ? 1 : 0) + in mul()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp357 uint64_t resul = carry + lx * ly; in mul() local
358 hasCarry = (resul < carry) ? 1 : 0; in mul()
359 carry = (hasCarry ? (1ULL << 32) : 0) + hx * ly + (resul >> 32); in mul()
363 resul = (carry << 32) | (resul & 0xffffffffULL); in mul()
364 dest[i+j] += resul; in mul()
366 (carry >> 32) + (dest[i+j] < resul ? 1 : 0) + in mul()