HomeSort by: relevance | last modified time | path
    Searched defs:Bounds (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Frontend/
PrecompiledPreamble.cpp 313 const llvm::MemoryBuffer *MainFileBuffer, PreambleBounds Bounds,
343 Bounds.Size);
344 bool PreambleEndsAtStartOfLine = Bounds.PreambleEndsAtStartOfLine;
401 MainFileBuffer->getBuffer().slice(0, Bounds.Size), MainFilePath);
497 PreambleBounds Bounds,
501 Bounds.Size <= MainFileBuffer.getBufferSize() &&
502 "Buffer is too large. Bounds were calculated from a different buffer?");
512 if (PreambleBytes.size() != Bounds.Size ||
513 PreambleEndsAtStartOfLine != Bounds.PreambleEndsAtStartOfLine ||
609 PreambleBounds Bounds(PreambleBytes.size(), PreambleEndsAtStartOfLine)
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
MveEmitter.cpp 1393 Record *Bounds = TypeRec->getValueAsDef("bounds");
1395 if (Bounds->isSubClassOf("IB_ConstRange")) {
1397 IA.i1 = Bounds->getValueAsInt("lo");
1398 IA.i2 = Bounds->getValueAsInt("hi");
1399 } else if (Bounds->getName() == "IB_UEltValue") {
1402 } else if (Bounds->getName() == "IB_LaneIndex") {
1406 } else if (Bounds->isSubClassOf("IB_EltBit")) {
1408 IA.i1 = Bounds->getValueAsInt("base");
1409 const Type *T = ME.getType(Bounds->getValueAsDef("type"), Param)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmtOpenMP.cpp 1481 /// Codegen lambda for appending distribute lower and upper bounds to outlined
1580 // lower and upper bounds with the pragma 'for' chunking mechanism.
2881 // chunk lower and upper bounds rather than the whole loop iteration
2883 // and we copy the bounds of the previous schedule into the
3099 std::pair<LValue, LValue> Bounds = CodeGenLoopBounds(*this, S);
3100 LValue LB = Bounds.first;
3101 LValue UB = Bounds.second;
3284 /// and upper bounds in case of static and dynamic (dispatch) schedule

Completed in 49 milliseconds