Home
last modified time | relevance | path

Searched +full:64 +full:fs (Results 1 – 25 of 555) sorted by relevance

12345678910>>...23

/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcTargetMachine.cpp47 // Alignments for 64 bit integers. in computeDataLayout()
48 Ret += "-i64:64"; in computeDataLayout()
50 // On SparcV9 128 floats are aligned to 128 bits, on others only to 64. in computeDataLayout()
51 // On SparcV9 registers can hold 64 or 32 bits, on others only 32. in computeDataLayout()
53 Ret += "-n32:64"; in computeDataLayout()
55 Ret += "-f128:64-n32"; in computeDataLayout()
69 // Code models. Some only make sense for 64-bit code.
99 StringRef CPU, StringRef FS, in SparcTargetMachine() argument
105 : LLVMTargetMachine(T, computeDataLayout(TT, is64bit), TT, CPU, FS, Options, in SparcTargetMachine()
126 std::string FS = in getSubtargetImpl() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86Subtarget.cpp75 // require a 64-bit immediate. With the small/medium code models this causes in classifyLocalReference()
85 // 64-bit ELF PIC local references may use GOTOFF relocations. in classifyLocalReference()
102 // Otherwise, this is either a RIP-relative reference or a 64-bit movabsq, in classifyLocalReference()
161 // references. Other object file formats do not. Use the no-flag, 64-bit in classifyGlobalReference()
166 // require a 64-bit immediate. So we can't let the linker relax the in classifyGlobalReference()
251 StringRef FS) { in initSubtargetFeatures() argument
261 if (!FS.empty()) in initSubtargetFeatures()
262 FullFS = (Twine(FullFS) + "," + FS).str(); in initSubtargetFeatures()
266 // "x86-64" is default CPU for 64-bit targets. in initSubtargetFeatures()
267 if (CPU == "generic" || CPU == "pentium4" || CPU == "x86-64") { in initSubtargetFeatures()
[all …]
H A DX86TargetMachine.cpp135 // Address spaces for 32 bit signed, 32 bit unsigned, and 64 bit pointers. in computeDataLayout()
136 Ret += "-p270:32:32-p271:32:32-p272:64:64"; in computeDataLayout()
138 // Some ABIs align 64 bit integers and doubles to 64 bits, others to 32. in computeDataLayout()
142 Ret += "-i64:64-i128:128"; in computeDataLayout()
146 Ret += "-i128:128-f64:32:64"; in computeDataLayout()
159 // The registers can hold 8, 16, 32 or, in x86-64, 64 bits. in computeDataLayout()
161 Ret += "-n8:16:32:64"; in computeDataLayout()
183 // Darwin defaults to PIC in 64 bit mode and dynamic-no-pic in 32 bit mode. in getEffectiveRelocModel()
196 // ELF and X86-64 don't have a distinct DynamicNoPIC model. DynamicNoPIC in getEffectiveRelocModel()
199 // compile in -static mode, in x86-64 we use PIC. in getEffectiveRelocModel()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/history/
H A Dhistory_002_pos.ksh52 for dataset in $fs $newfs $fsclone $vol $newvol $volclone; do
61 fs=$TESTPOOL/$TESTFS1; newfs=$TESTPOOL/newfs; fsclone=$TESTPOOL/clone
63 fssnap=$fs@fssnap; fssnap2=$fs@fssnap2
71 quota 64M recordsize 512
98 quota 64M recordsize 512
126 quota 64M recordsize 512
150 run_and_verify "zfs create $fs"
154 run_and_verify "zfs set ${props[$i]}=${props[((i+1))]} $fs"
161 run_and_verify "zfs inherit ${props[$i]} $fs"
167 run_and_verify "zfs create -V 64M $vol"
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsTargetMachine.cpp95 // align them to 32 bits. 64 bit integers have natural alignment. in computeDataLayout()
96 Ret += "-i8:8:32-i16:16:32-i64:64"; in computeDataLayout()
98 // 32 bit registers are always available and the stack is at least 64 bit in computeDataLayout()
99 // aligned. On N64 64 bit registers are also available and the stack is in computeDataLayout()
102 Ret += "-n32:64-S128"; in computeDataLayout()
122 StringRef CPU, StringRef FS, in MipsTargetMachine() argument
129 CPU, FS, Options, getEffectiveRelocModel(JIT, RM), in MipsTargetMachine()
134 DefaultSubtarget(TT, CPU, FS, isLittle, *this, std::nullopt), in MipsTargetMachine()
135 NoMips16Subtarget(TT, CPU, FS.empty() ? "-mips16" : FS.str() + ",-mips16", in MipsTargetMachine()
137 Mips16Subtarget(TT, CPU, FS.empty() ? "+mips16" : FS.str() + ",+mips16", in MipsTargetMachine()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCaching.cpp35 SmallString<64> CacheName, TempFilePrefix, CacheDirectoryPath; in localCache()
44 SmallString<64> EntryPath; in localCache()
47 SmallString<64> ResultPath; in localCache()
48 Expected<sys::fs::file_t> FDOrErr = sys::fs::openNativeFileForRead( in localCache()
49 Twine(EntryPath), sys::fs::OF_UpdateAtime, &ResultPath); in localCache()
56 sys::fs::closeFile(*FDOrErr); in localCache()
80 sys::fs::TempFile TempFile; in localCache()
85 sys::fs::TempFile TempFile, std::string EntryPath, in localCache()
101 sys::fs in localCache()
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetMachine.cpp67 // 64-bit integers are naturally aligned. in computeDataLayout()
68 Ret += "-i64:64"; in computeDataLayout()
70 // 128-bit floats are aligned only to 64 bits. in computeDataLayout()
71 Ret += "-f128:64"; in computeDataLayout()
73 // The DataLayout string always holds a vector alignment of 64 bits, see in computeDataLayout()
75 Ret += "-v128:64"; in computeDataLayout()
80 // Integer registers are 32 or 64 bits. in computeDataLayout()
81 Ret += "-n32:64"; in computeDataLayout()
148 StringRef CPU, StringRef FS, in SystemZTargetMachine() argument
154 T, computeDataLayout(TT), TT, CPU, FS, Options, in SystemZTargetMachine()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVETargetMachine.cpp43 // Alignments for 64 bit integers. in computeDataLayout()
44 Ret += "-i64:64"; in computeDataLayout()
46 // VE supports 32 bit and 64 bits integer on registers in computeDataLayout()
47 Ret += "-n32:64"; in computeDataLayout()
52 // Vector alignments are 64 bits in computeDataLayout()
55 Ret += "-v64:64:64"; // for v2f32 in computeDataLayout()
56 Ret += "-v128:64:64"; in computeDataLayout()
57 Ret += "-v256:64:64"; in computeDataLayout()
58 Ret += "-v512:64:64"; in computeDataLayout()
59 Ret += "-v1024:64:64"; in computeDataLayout()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/
H A DLoongArchSubtarget.cpp28 const Triple &TT, StringRef CPU, StringRef TuneCPU, StringRef FS, in initializeSubtargetDependencies() argument
37 ParseSubtargetFeatures(CPU, TuneCPU, FS); in initializeSubtargetDependencies()
41 GRLen = 64; in initializeSubtargetDependencies()
45 report_fatal_error("Please use one feature of 32bit and 64bit."); in initializeSubtargetDependencies()
51 report_fatal_error("Feature 64bit should be used for loongarch64 target."); in initializeSubtargetDependencies()
85 StringRef TuneCPU, StringRef FS, in LoongArchSubtarget() argument
88 : LoongArchGenSubtargetInfo(TT, CPU, TuneCPU, FS), in LoongArchSubtarget()
90 initializeSubtargetDependencies(TT, CPU, TuneCPU, FS, ABIName)), in LoongArchSubtarget()
H A DLoongArchTargetMachine.cpp57 return "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128"; in computeDataLayout()
59 return "e-m:e-p:32:32-i64:64-n32-S128"; in computeDataLayout()
88 const Target &T, const Triple &TT, StringRef CPU, StringRef FS, in LoongArchTargetMachine() argument
91 : LLVMTargetMachine(T, computeDataLayout(TT), TT, CPU, FS, Options, in LoongArchTargetMachine()
110 std::string FS = in getSubtargetImpl() local
113 std::string Key = CPU + TuneCPU + FS; in getSubtargetImpl()
130 I = std::make_unique<LoongArchSubtarget>(TargetTriple, CPU, TuneCPU, FS, in getSubtargetImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMTargetMachine.cpp165 // ABIs other than APCS have 64 bit integers with natural alignment. in computeDataLayout()
167 Ret += "-i64:64"; in computeDataLayout()
169 // We have 64 bits floats. The APCS ABI requires them to be aligned to 32 in computeDataLayout()
170 // bits, others to 64 bits. We always try to align to 64 bits. in computeDataLayout()
172 Ret += "-f64:32:64"; in computeDataLayout()
174 // We have 128 and 64 bit vectors. The APCS ABI aligns them to 32 bits, others in computeDataLayout()
175 // to 64. We always ty to give them natural alignment. in computeDataLayout()
177 Ret += "-v64:32:64-v128:32:128"; in computeDataLayout()
179 Ret += "-v128:64:128"; in computeDataLayout()
181 // Try to align aggregates to 32 bits (the default is 64 bits, which has no in computeDataLayout()
[all …]
/freebsd/lib/libutil/
H A Dquotafile.c53 int wordsize; /* 32-bit or 64-bit limits */
66 hasquota(struct fstab *fs, int type, char *qfnamep, int qfbufsize) in hasquota() argument
85 strcpy(buf, fs->fs_mntops); in hasquota()
99 if (statfs(fs->fs_file, &sfb) != 0 || in hasquota()
100 strcmp(fs->fs_file, sfb.f_mntonname)) { in hasquota()
106 (void)snprintf(qfnamep, qfbufsize, "%s/%s.%s", fs->fs_file, in hasquota()
113 quota_open(struct fstab *fs, int quotatype, int openflags) in quota_open() argument
126 strlcpy(qf->fsname, fs->fs_file, sizeof(qf->fsname)); in quota_open()
131 ufs = strcmp(fs->fs_vfstype, "ufs") == 0; in quota_open()
137 serrno = hasquota(fs, quotatype, qf->qfname, in quota_open()
[all …]
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/gang_blocks/
H A Dgang_blocks_ddt_copies.ksh48 log_must zfs create -o recordsize=64k -o dedup=on $TESTPOOL/fs1
49 log_must zfs create -o recordsize=64k -o dedup=on -o copies=3 $TESTPOOL/fs2
51 log_must dd if=/dev/urandom of=/$TESTPOOL/fs1/f1 bs=64k count=1
55 log_must dd if=/$TESTPOOL/fs1/f1 of=/$TESTPOOL/fs2/f1 bs=64k count=1
58 log_must rm /$TESTPOOL/fs*/f1
60 log_must dd if=/dev/urandom of=/$TESTPOOL/fs1/f1 bs=64k count=1
64 log_must dd if=/$TESTPOOL/fs1/f1 of=/$TESTPOOL/fs2/f1 bs=64k count=1
67 log_must rm /$TESTPOOL/fs*/f1
71 log_must dd if=/dev/urandom of=/$TESTPOOL/f1 bs=64k count=1
/freebsd/tests/sys/cddl/zfs/tests/history/
H A Dhistory_002_pos.ksh63 for dataset in $fs $newfs $fsclone $vol $newvol $volclone; do
74 fs=$TESTPOOL/$TESTFS1; newfs=$TESTPOOL/newfs; fsclone=$TESTPOOL/clone
76 fssnap=$fs@fssnap; fssnap2=$fs@fssnap2
82 quota 64M recordsize 512 \
113 exec_record $ZFS create $fs
116 enc=$(get_prop encryption $fs)
130 exec_record $ZFS set ${props[$i]}=${props[((i+1))]} $fs
138 exec_record $ZFS inherit ${props[$i]} $fs
143 exec_record $ZFS create -V 64M $vol
153 exec_record eval "$ZFS receive $fs < $tmpfile"
[all …]
/freebsd/tools/tools/find-sb/
H A Dmini_ufs.h7 * Small extract from ufs/ffs/fs.h to get definition of superblock
12 * FreeBSD: src/sys/ufs/ffs/fs.h,v 1.48 2005/02/20 08:02:15 delphij
51 struct fs { struct
61 int32_t fs_old_size; /* number of blocks in fs */ argument
62 int32_t fs_old_dsize; /* number of data blocks in fs */ argument
64 int32_t fs_bsize; /* size of basic blocks in fs */ argument
65 int32_t fs_fsize; /* size of frag blocks in fs */ argument
66 int32_t fs_frag; /* number of frags in a block in fs */ argument
122 u_int *fs_active; /* (u) used by snapshots to track fs */ argument
130 int64_t fs_size; /* number of blocks in fs */ argument
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetMachine.cpp261 StringRef CPU, StringRef FS, in HexagonTargetMachine() argument
268 // the required minimum of 64 bytes. in HexagonTargetMachine()
272 "i64:64:64-i32:32:32-i16:16:16-i1:8:8-f32:32:32-f64:64:64-" in HexagonTargetMachine()
273 "v32:32:32-v64:64:64-v512:512:512-v1024:1024:1024-v2048:2048:2048", in HexagonTargetMachine()
274 TT, CPU, FS, Options, getEffectiveRelocModel(RM), in HexagonTargetMachine()
278 Subtarget(Triple(TT), CPU, FS, *this) { in HexagonTargetMachine()
294 std::string FS = in getSubtargetImpl() local
302 FS = FS.empty() ? "+unsafe-fp" : "+unsafe-fp," + FS; in getSubtargetImpl()
304 auto &I = SubtargetMap[CPU + FS]; in getSubtargetImpl()
310 I = std::make_unique<HexagonSubtarget>(TargetTriple, CPU, FS, *this); in getSubtargetImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFTargetMachine.cpp57 return "E-m:e-p:64:64-i64:64-i128:128-n32:64-S128"; in computeDataLayout()
59 return "e-m:e-p:64:64-i64:64-i128:128-n32:64-S128"; in computeDataLayout()
67 StringRef CPU, StringRef FS, in BPFTargetMachine() argument
72 : LLVMTargetMachine(T, computeDataLayout(TT), TT, CPU, FS, Options, in BPFTargetMachine()
76 Subtarget(TT, std::string(CPU), std::string(FS), *this) { in BPFTargetMachine()
/freebsd/sys/geom/label/
H A Dg_label_reiserfs.c
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCSubtarget.cpp49 StringRef FS) { in initializeSubtargetDependencies() argument
51 initSubtargetFeatures(CPU, TuneCPU, FS); in initializeSubtargetDependencies()
56 const std::string &TuneCPU, const std::string &FS, in PPCSubtarget() argument
58 : PPCGenSubtargetInfo(TT, CPU, TuneCPU, FS), TargetTriple(TT), in PPCSubtarget()
61 TM(TM), FrameLowering(initializeSubtargetDependencies(CPU, TuneCPU, FS)), in PPCSubtarget()
78 StringRef FS) { in initSubtargetFeatures() argument
98 ParseSubtargetFeatures(CPUName, TuneCPU, FS); in initSubtargetFeatures()
100 // If the user requested use of 64-bit regs, but the cpu selected doesn't in initSubtargetFeatures()
127 "64-bit mode.\n", in initSubtargetFeatures()
143 "is only supported on AIX in 64-bit mode.\n", in initSubtargetFeatures()
H A DPPCTargetMachine.cpp157 // Most PPC* platforms are big endian, PPC(64)LE is little endian. in getDataLayoutString()
183 Ret += "-i64:64"; in getDataLayoutString()
185 // PPC64 has 32 and 64 bit registers, PPC32 has only 32 bit ones. in getDataLayoutString()
187 Ret += "-n32:64"; in getDataLayoutString()
200 static std::string computeFSAdditions(StringRef FS, CodeGenOptLevel OL, in computeFSAdditions() argument
202 std::string FullFS = std::string(FS); in computeFSAdditions()
204 // Make sure 64-bit features are available when CPUname is generic in computeFSAdditions()
207 FullFS = "+64bit," + FullFS; in computeFSAdditions()
209 FullFS = "+64bit"; in computeFSAdditions()
345 StringRef CPU, StringRef FS, in PPCTargetMachine() argument
[all …]
/freebsd/sys/contrib/device-tree/Bindings/sound/
H A Daudio-graph-port.yaml20 mclk-fs:
21 $ref: simple-card.yaml#/definitions/mclk-fs
43 mclk-fs:
44 $ref: simple-card.yaml#/definitions/mclk-fs
101 maximum: 64
109 maximum: 64
/freebsd/share/man/man5/
H A Dfs.532 .Nm fs ,
78 struct fs {
88 int32_t fs_old_size; /* number of blocks in fs */
89 int32_t fs_old_dsize; /* number of data blocks in fs */
91 int32_t fs_bsize; /* size of basic blocks in fs */
92 int32_t fs_fsize; /* size of frag blocks in fs */
93 int32_t fs_frag; /* number of frags in a block in fs */
149 u_int *fs_active; /* used by snapshots to track fs */
157 int64_t fs_size; /* number of blocks in fs */
158 int64_t fs_dsize; /* number of data blocks in fs */
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetMachine.cpp115 const Target &T, const Triple &TT, StringRef CPU, StringRef FS, in WebAssemblyTargetMachine() argument
121 ? (TT.isOSEmscripten() ? "e-m:e-p:64:64-p10:8:8-p20:8:8-i64:64-" in WebAssemblyTargetMachine()
122 "f128:64-n32:64-S128-ni:1:10:20" in WebAssemblyTargetMachine()
123 : "e-m:e-p:64:64-p10:8:8-p20:8:8-i64:64-" in WebAssemblyTargetMachine()
124 "n32:64-S128-ni:1:10:20") in WebAssemblyTargetMachine()
125 : (TT.isOSEmscripten() ? "e-m:e-p:32:32-p10:8:8-p20:8:8-i64:64-" in WebAssemblyTargetMachine()
126 "f128:64-n32:64-S128-ni:1:10:20" in WebAssemblyTargetMachine()
127 : "e-m:e-p:32:32-p10:8:8-p20:8:8-i64:64-" in WebAssemblyTargetMachine()
128 "n32:64-S128-ni:1:10:20"), in WebAssemblyTargetMachine()
129 TT, CPU, FS, Options, getEffectiveRelocModel(RM, TT), in WebAssemblyTargetMachine()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVTargetMachine.cpp53 // wrong. The choice to default to 32 or 64 is just motivated by another in computeDataLayout()
57 return "e-p:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-" in computeDataLayout()
61 return "e-i64:64-v16:16-v24:32-v32:32-v48:64-" in computeDataLayout()
63 return "e-i64:64-v16:16-v24:32-v32:32-v48:64-" in computeDataLayout()
77 StringRef CPU, StringRef FS, in SPIRVTargetMachine() argument
82 : LLVMTargetMachine(T, computeDataLayout(TT), TT, CPU, FS, Options, in SPIRVTargetMachine()
86 Subtarget(TT, CPU.str(), FS.str(), *this) { in SPIRVTargetMachine()
/freebsd/tests/sys/cddl/zfs/tests/rsend/
H A Drsend_009_pos.ksh71 log_must $TRUNCATE -s 64M $TESTDIR/sfile
78 log_must $ZFS create bpool/fs
79 mntpnt=$(get_prop mountpoint bpool/fs)
82 log_must $ZFS snapshot bpool/fs@snap
83 log_must eval "$ZFS send -R bpool/fs@snap > $BACKDIR/fs-R"
84 log_mustnot eval "$ZFS receive -d -F spool < $BACKDIR/fs-R"
86 log_must datasetnonexists spool/fs
94 log_must $ZFS destroy -rf bpool/fs
100 log_must datasetnonexists spool/fs

12345678910>>...23