Searched refs:numLeft (Results 1 – 8 of 8) sorted by relevance
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-ccmp-heuristics.ll | 31 %numLeft.091 = phi i32 [ 0, %entry ], [ %numLeft.1, %for.inc ] 166 %inc = add nsw i32 %numLeft.091, 1 170 …numLeft.1 = phi i32 [ %numLeft.091, %if.then9 ], [ %numLeft.091, %if.then20 ], [ %numLeft.091, %if… 177 %numLeft.0.lcssa = phi i32 [ 0, %entry ], [ %numLeft.1, %for.inc ] 178 ret i32 %numLeft.0.lcssa
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | arm64-ccmp-heuristics.ll | 31 %numLeft.091 = phi i32 [ 0, %entry ], [ %numLeft.1, %for.inc ] 166 %inc = add nsw i32 %numLeft.091, 1 170 …numLeft.1 = phi i32 [ %numLeft.091, %if.then9 ], [ %numLeft.091, %if.then20 ], [ %numLeft.091, %if… 177 %numLeft.0.lcssa = phi i32 [ 0, %entry ], [ %numLeft.1, %for.inc ] 178 ret i32 %numLeft.0.lcssa
|
/external/deqp/framework/common/ |
D | tcuRandomValueIterator.hpp | 73 RandomValueIterator (deUint32 seed, int numLeft); 81 RandomValueIterator<T>::RandomValueIterator (deUint32 seed, int numLeft) in RandomValueIterator() argument 83 , m_numLeft (numLeft) in RandomValueIterator() 84 , m_curVal (numLeft > 0 ? getRandomValue<T>(m_rnd) : T()) in RandomValueIterator()
|
/external/archive-patcher/generator/src/main/java/com/google/archivepatcher/generator/ |
D | MinimalZipParser.java | 79 long numLeft = numBytes; in skipOrDie() local 81 while ((numSkipped = in.skip(numLeft)) > 0) { in skipOrDie() 82 numLeft -= numSkipped; in skipOrDie() 84 if (numLeft != 0) { in skipOrDie()
|
/external/deqp/execserver/tools/ |
D | xsClient.cpp | 74 size_t numLeft = buf.size() - pos; in sendMessage() local 76 deSocketResult result = socket.send(&buf[pos], numLeft, &numSent); in sendMessage() 91 size_t numLeft = numBytes - numRead; in readBytes() local 93 deSocketResult result = socket.receive(&dst[numRead], numLeft, &curNumRead); in readBytes()
|
D | xsTest.cpp | 80 size_t numLeft = buf.size() - pos; in sendMessage() local 82 deSocketResult result = socket.send(&buf[pos], numLeft, &numSent); in sendMessage() 97 size_t numLeft = numBytes - numRead; in readBytes() local 99 deSocketResult result = socket.receive(&dst[numRead], numLeft, &curNumRead); in readBytes()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Demangle/ |
D | ItaniumDemangle.cpp | 2033 size_t numLeft() const { return static_cast<size_t>(Last - First); } in numLeft() function 2282 if (numLeft() < Length || Length == 0) in parseSourceName() 2928 if (numLeft() == 0 || !std::isdigit(*First)) in parseNumber() 2930 while (numLeft() != 0 && std::isdigit(*First)) in parseNumber() 2949 if (parsePositiveInteger(&Int) || numLeft() < Int) in parseBareSourceName() 3918 if (numLeft() < 2) in parseExpr() 4551 return numLeft() == 0 || look() == 'E' || look() == '.' || look() == '_'; in parseEncoding() 4645 if (numLeft() <= N) in parseFloatingLiteral() 4915 if (numLeft() != 0) in parse() 4927 if (numLeft() != 0) in parse() [all …]
|
/external/libcxxabi/src/demangle/ |
D | ItaniumDemangle.h | 2232 size_t numLeft() const { return static_cast<size_t>(Last - First); } in numLeft() function 2493 if (numLeft() < Length || Length == 0) in parseSourceName() 3167 if (numLeft() == 0 || !std::isdigit(*First)) in parseNumber() 3169 while (numLeft() != 0 && std::isdigit(*First)) in parseNumber() 3190 if (parsePositiveInteger(&Int) || numLeft() < Int) in parseBareSourceName() 4178 if (numLeft() < 2) in parseExpr() 4815 return numLeft() == 0 || look() == 'E' || look() == '.' || look() == '_'; in parseEncoding() 4907 if (numLeft() <= N) 5155 if (numLeft() != 0) 5169 if (numLeft() != 0) [all …]
|