search for: 5000ull

Displaying 3 results from an estimated 3 matches for "5000ull".

Did you mean: 2000ull
2013 Oct 26
2
[PATCH] 1. changes for vdiskadm on illumos based platform
...iates. All rights reserved. + * Copyright (c) 2012 by Delphix. All rights reserved. */ #ifndef _SYS_FS_ZFS_H @@ -27,7 +28,14 @@ /* * On-disk version number. */ -#define SPA_VERSION 24ULL +#define SPA_VERSION_INITIAL 1ULL +#define SPA_VERSION_BEFORE_FEATURES 28ULL +#define SPA_VERSION 5000ULL +#define SPA_VERSION_FEATURES 5000ULL + +#define SPA_VERSION_IS_SUPPORTED(v) \ + (((v) >= SPA_VERSION_INITIAL && (v) <= SPA_VERSION_BEFORE_FEATURES) || \ + ((v) >= SPA_VERSION_FEATURES && (v) <= SPA_VERSION)) /* * The following are configuration names used in the n...
2012 May 18
0
[LLVMdev] [RFC] llvm/include/Support/FileOutputBuffer.h
...GGHHIIJJ"), > + MagicMatches3)); > + EXPECT_TRUE(MagicMatches3); > + // Verify file is correct size. > + uint64_t File3Size; > + ASSERT_NO_ERROR(fs::file_size(Twine(File3), File3Size)); > + ASSERT_EQ(File3Size, 5000ULL); > + > + > + // TEST 4: Verify file can be made executable. > + SmallString<128> File4(TestDirectory); > + File4.append("/file4"); > + { > + OwningPtr<FileOutputBuffer> Buffer; > + ASSERT_NO_ERROR(FileOutputBuffer::create(File4, 8192, Buffer,...
2012 May 17
3
[LLVMdev] [RFC] llvm/include/Support/FileOutputBuffer.h
I now have an implementation of FileOutputBuffer (OutputBuffer was already taken). The patch supports the functionality listed below and I've tested that it works for lld. -------------- next part -------------- A non-text attachment was scrubbed... Name: FileOutputBuffer.patch Type: application/octet-stream Size: 25308 bytes Desc: not available URL: