Home
last modified time | relevance | path

Searched refs:sourceSize (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DStringPrinter.cpp428 uint32_t sourceSize; in ReadEncodedBufferAndDumpToStream() local
437 sourceSize = max_size; in ReadEncodedBufferAndDumpToStream()
440 sourceSize = options.GetSourceSize(); in ReadEncodedBufferAndDumpToStream()
442 if (sourceSize > max_size) { in ReadEncodedBufferAndDumpToStream()
443 sourceSize = max_size; in ReadEncodedBufferAndDumpToStream()
448 sourceSize = max_size; in ReadEncodedBufferAndDumpToStream()
452 const int bufferSPSize = sourceSize * type_width; in ReadEncodedBufferAndDumpToStream()
458 if (sourceSize != 0 && !buffer_sp->GetBytes()) in ReadEncodedBufferAndDumpToStream()
481 dump_options.SetSourceSize(sourceSize); in ReadEncodedBufferAndDumpToStream()
/llvm-project-15.0.7/mlir/lib/Dialect/Tensor/IR/
H A DTensorOps.cpp2158 int64_t sourceSize = innerSliceOp.getSourceType().getShape()[en.index()]; in matchAndRewrite() local
2159 assert(!ShapedType::isDynamic(sourceSize) && in matchAndRewrite()
2161 if (getConstantIntValue(sliceSize) != sourceSize) { in matchAndRewrite()
/llvm-project-15.0.7/mlir/lib/Dialect/Vector/IR/
H A DVectorOps.cpp3104 int64_t sourceSize = op.getShapedType().getDimSize(indicesIdx); in isInBounds() local
3107 return cstOp.value() + vectorSize <= sourceSize; in isInBounds()