Home
last modified time | relevance | path

Searched refs:bufferSize (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/flang/unittests/Runtime/
H A DRuntimeCrashTest.cpp57 static constexpr int bufferSize{4}; in TEST() local
58 static char buffer[bufferSize]; in TEST()
67 static constexpr int bufferSize{1}; in TEST() local
68 static char buffer[bufferSize]; in TEST()
83 static constexpr int bufferSize{4}; in TEST() local
84 static char buffer[bufferSize]; in TEST()
95 static char buffer[bufferSize]; in TEST()
106 static char buffer[bufferSize]; in TEST()
117 static char buffer[bufferSize]; in TEST()
135 static char buffer[bufferSize]; in TEST()
[all …]
H A DNumericalFormatTest.cpp63 static constexpr int bufferSize{32}; in TEST() local
64 char buffer[bufferSize]; in TEST()
177 static constexpr int bufferSize{39}; in TEST() local
178 char output[bufferSize]; in TEST()
179 output[bufferSize - 1] = '\0'; in TEST()
193 static const char expect[bufferSize]{ in TEST()
201 static constexpr int bufferSize{10}; in TEST() local
202 char buffer[bufferSize]; in TEST()
742 static constexpr int bufferSize{65}; in TEST() local
743 char iomsg[bufferSize]; in TEST()
[all …]
H A DTime.cpp90 constexpr std::size_t bufferSize{16}; in TEST() local
91 std::string date(bufferSize, 'Z'), time(bufferSize, 'Z'), in TEST()
92 zone(bufferSize, 'Z'); in TEST()
H A DCharacterTest.cpp77 static constexpr int bufferSize{4}; in TEST() local
79 static char buffer[bufferSize]; in TEST()
82 offset = RTNAME(CharacterAppend1)(buffer, limit, offset, "1234", bufferSize); in TEST()
/llvm-project-15.0.7/mlir/tools/mlir-vulkan-runner/
H A DVulkanRuntime.cpp435 const auto bufferSize = resourceDataBindingPair.second.size; in createMemoryBuffers() local
436 memoryBuffer.bufferSize = bufferSize; in createMemoryBuffers()
441 memoryAllocateInfo.allocationSize = bufferSize; in createMemoryBuffers()
456 bufferSize, 0, in createMemoryBuffers()
461 std::memcpy(payload, resourceDataBindingPair.second.ptr, bufferSize); in createMemoryBuffers()
468 bufferCreateInfo.size = bufferSize; in createMemoryBuffers()
531 VkBufferCopy copy = {0, 0, memBuffer.bufferSize}; in copyResource()
H A DVulkanRuntime.h36 uint32_t bufferSize{0};
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A D2008-04-23-CoalescerCrash.ll15 define i32 @_Z14ProgramByWordsPvyy(i8* %buffer, i64 %Offset, i64 %bufferSize) nounwind {
77 %tmp256 = lshr i64 %bufferSize, 1 ; <i64> [#uses=1]
88 define i32 @_Z15ProgramByBlocksyy(i64 %Offset, i64 %bufferSize) nounwind {
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/bugprone/Inputs/not-null-terminated-result/
H A Dnot-null-terminated-result-c.h22 errno_t strerror_s(char *buffer, size_t bufferSize, int errnum);
/llvm-project-15.0.7/flang/runtime/
H A Dedit-input.cpp196 static int ScanRealInput(char *buffer, int bufferSize, IoStatementState &io, in ScanRealInput() argument
203 if (got < bufferSize) { in ScanRealInput()
449 static constexpr int bufferSize{maxDigits + 18}; in EditCommonRealInput() local
450 char buffer[bufferSize]; in EditCommonRealInput()
/llvm-project-15.0.7/mlir/lib/CAPI/IR/
H A DBuiltinAttributes.cpp478 size_t bufferSize = numElements * 2; in mlirDenseElementsAttrBFloat16Get() local
480 return mlirDenseElementsAttrRawBufferGet(shapedType, bufferSize, buffer); in mlirDenseElementsAttrBFloat16Get()
485 size_t bufferSize = numElements * 2; in mlirDenseElementsAttrFloat16Get() local
487 return mlirDenseElementsAttrRawBufferGet(shapedType, bufferSize, buffer); in mlirDenseElementsAttrFloat16Get()
/llvm-project-15.0.7/clang/test/Profile/
H A Dobjc-general.m31 count: (unsigned long) bufferSize;
/llvm-project-15.0.7/mlir/lib/Bindings/Python/
H A DIRAttributes.cpp335 intptr_t bufferSize = bufferInfo.size; in bindDerived() local
337 context->get(), toMlirStringRef(dialectNamespace), bufferSize, in bindDerived()
/llvm-project-15.0.7/clang/test/CodeGenObjC/
H A Darc-foreach.m13 count: (unsigned long) bufferSize;
/llvm-project-15.0.7/llvm/include/llvm/Target/
H A DTargetSchedule.td560 class RetireControlUnit<int bufferSize, int retirePerCycle> {
561 int ReorderBufferSize = bufferSize;
/llvm-project-15.0.7/clang/test/CodeGenObjCXX/
H A Darc.mm7 count: (unsigned long) bufferSize;
/llvm-project-15.0.7/flang/lib/Lower/
H A DConvertExpr.cpp1348 mlir::Value bufferSize = boxchar.getLen(); in genval() local
1369 loc, bufferSize.getType(), fromBits / toBits); in genval()
1370 bufferSize = in genval()
1371 builder.create<mlir::arith::MulIOp>(loc, bufferSize, ratio); in genval()
1374 loc, ty, mlir::ValueRange{bufferSize}); in genval()
6338 mlir::Value bufferSize, mlir::Value buffSize, in growBuffer() argument
6343 loc, mlir::arith::CmpIPredicate::sle, bufferSize, needed); in growBuffer()