Home
last modified time | relevance | path

Searched refs:FF (Results 1 – 25 of 177) sorted by relevance

12345678

/freebsd/contrib/bc/tests/bc/
H A Dlib2_uint_results.txt20 FF
38 FF 7F
40 FF
42 00 FF
44 FF 01
50 FF 00
52 7F FF
54 7F FF
68 FF FF 7F FF
70 FF FF
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DOpts.td4 class FF<string name, string help> : Flag<["--"], name>, HelpText<help>;
16 def addrsig : FF<"addrsig", "Display address-significance table">;
17 def all : FF<"all", "Equivalent to setting: --file-header, --program-headers, --section-headers, "
20 def arch_specific : FF<"arch-specific", "Display architecture-specific information">;
21 def bb_addr_map : FF<"bb-addr-map", "Display the BB address map section">;
22 def pretty_pgo_analysis_map : FF<"pretty-pgo-analysis-map", "Display PGO analysis values with forma…
23 def cg_profile : FF<"cg-profile", "Display call graph profile section">;
24 def decompress : FF<"decompress", "Dump decompressed section content when used with -x or -p">;
26 def dependent_libraries : FF<"dependent-libraries", "Display the dependent libraries section">;
27 def dyn_relocations : FF<"dyn-relocations", "Display the dynamic relocation entries in the file">;
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-nm/
H A DOpts.td4 class FF<string name, string help> : Flag<["--"], name>, HelpText<help>;
17 def debug_syms : FF<"debug-syms", "Show all symbols, even debugger only">;
18 def defined_only : FF<"defined-only", "Show only defined symbols">;
20 def dynamic : FF<"dynamic", "Display dynamic symbols instead of normal symbols">;
21 def export_symbols : FF<"export-symbols", "Export symbol list for all inputs">;
22 def extern_only : FF<"extern-only", "Show only external symbols">;
24 def help : FF<"help", "Display this help">;
25 def line_numbers : FF<"line-numbers", "Use debugging information to print symbols' filenames and line numbers">;
26 def no_llvm_bc : FF<"no-llvm-bc", "Disable LLVM bitcode reader">;
27 def no_sort : FF<"n
[all...]
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineSizeEstimatorAnalysis.cpp159 FunctionFeatures FF; in getFunctionFeatures() local
161 FF.InstructionHistogram.resize(InstrCount); in getFunctionFeatures()
163 FF.InstructionPairHistogram.resize(ImportantInstructionSuccessions.size()); in getFunctionFeatures()
180 ++FF.InstructionHistogram[ID]; in getFunctionFeatures()
183 ++FF.InstructionPairHistogram[PairIndex]; in getFunctionFeatures()
186 ++FF[NamedFeatureIndex::Calls]; in getFunctionFeatures()
190 FF[NamedFeatureIndex::InitialSize] = getSize(F, FAM); in getFunctionFeatures()
191 FF[NamedFeatureIndex::IsLocal] = F.hasLocalLinkage(); in getFunctionFeatures()
192 FF[NamedFeatureIndex::IsLinkOnceODR] = F.hasLinkOnceODRLinkage(); in getFunctionFeatures()
193 FF[NamedFeatureIndex::IsLinkOnce] = F.hasLinkOnceLinkage(); in getFunctionFeatures()
[all …]
/freebsd/crypto/krb5/src/lib/crypto/builtin/md4/
H A Dmd4.c64 #define FF(a, b, c, d, x, s) \ macro
163 FF (a, b, c, d, in[i], round1consts[i%4]); ROTATE; in Transform()
181 FF (a, b, c, d, in[ 0], 3); in Transform()
182 FF (d, a, b, c, in[ 1], 7); in Transform()
183 FF (c, d, a, b, in[ 2], 11); in Transform()
184 FF (b, c, d, a, in[ 3], 19); in Transform()
185 FF (a, b, c, d, in[ 4], 3); in Transform()
186 FF (d, a, b, c, in[ 5], 7); in Transform()
187 FF (c, d, a, b, in[ 6], 11); in Transform()
188 FF (b, c, d, a, in[ 7], 19); in Transform()
[all …]
/freebsd/sys/crypto/
H A Dmd4c.c81 #define FF(a, b, c, d, x, s) { \ macro
193 FF (a, b, c, d, x[ 0], S11); /* 1 */ in MD4Transform()
194 FF (d, a, b, c, x[ 1], S12); /* 2 */ in MD4Transform()
195 FF (c, d, a, b, x[ 2], S13); /* 3 */ in MD4Transform()
196 FF (b, c, d, a, x[ 3], S14); /* 4 */ in MD4Transform()
197 FF (a, b, c, d, x[ 4], S11); /* 5 */ in MD4Transform()
198 FF (d, a, b, c, x[ 5], S12); /* 6 */ in MD4Transform()
199 FF (c, d, a, b, x[ 6], S13); /* 7 */ in MD4Transform()
200 FF (b, c, d, a, x[ 7], S14); /* 8 */ in MD4Transform()
201 FF (a, b, c, d, x[ 8], S11); /* 9 */ in MD4Transform()
[all …]
/freebsd/crypto/krb5/src/lib/crypto/builtin/md5/
H A Dmd5.c78 #define FF(a, b, c, d, x, s, ac) \ macro
208 FF (a, b, c, d, in[i], round1s[i%4], round1consts[i]); in Transform()
255 FF ( a, b, c, d, in[ 0], S11, 3614090360UL); /* 1 */ in Transform()
256 FF ( d, a, b, c, in[ 1], S12, 3905402710UL); /* 2 */ in Transform()
257 FF ( c, d, a, b, in[ 2], S13, 606105819UL); /* 3 */ in Transform()
258 FF ( b, c, d, a, in[ 3], S14, 3250441966UL); /* 4 */ in Transform()
259 FF ( a, b, c, d, in[ 4], S11, 4118548399UL); /* 5 */ in Transform()
260 FF ( d, a, b, c, in[ 5], S12, 1200080426UL); /* 6 */ in Transform()
261 FF ( c, d, a, b, in[ 6], S13, 2821735955UL); /* 7 */ in Transform()
262 FF ( b, c, d, a, in[ 7], S14, 4249261313UL); /* 8 */ in Transform()
[all …]
/freebsd/sbin/ipf/ipftest/
H A Dmd5.c81 #define FF(a, b, c, d, x, s, ac) \ macro
208 FF ( a, b, c, d, in[ 0], S11, UL(3614090360)); /* 1 */ in Transform()
209 FF ( d, a, b, c, in[ 1], S12, UL(3905402710)); /* 2 */ in Transform()
210 FF ( c, d, a, b, in[ 2], S13, UL( 606105819)); /* 3 */ in Transform()
211 FF ( b, c, d, a, in[ 3], S14, UL(3250441966)); /* 4 */ in Transform()
212 FF ( a, b, c, d, in[ 4], S11, UL(4118548399)); /* 5 */ in Transform()
213 FF ( d, a, b, c, in[ 5], S12, UL(1200080426)); /* 6 */ in Transform()
214 FF ( c, d, a, b, in[ 6], S13, UL(2821735955)); /* 7 */ in Transform()
215 FF ( b, c, d, a, in[ 7], S14, UL(4249261313)); /* 8 */ in Transform()
216 FF ( a, b, c, d, in[ 8], S11, UL(1770035416)); /* 9 */ in Transform()
[all …]
/freebsd/contrib/file/tests/
H A DMakefile.am147 zstd-v0.2-FF.result \
148 zstd-v0.2-FF.testfile \
149 zstd-v0.3-FF.result \
150 zstd-v0.3-FF.testfile \
151 zstd-v0.4-FF.result \
152 zstd-v0.4-FF.testfile \
153 zstd-v0.5-FF.result \
154 zstd-v0.5-FF.testfile \
155 zstd-v0.6-FF.result \
156 zstd-v0.6-FF.testfile \
[all …]
H A DMakefile.in441 zstd-v0.2-FF.result \
442 zstd-v0.2-FF.testfile \
443 zstd-v0.3-FF.result \
444 zstd-v0.3-FF.testfile \
445 zstd-v0.4-FF.result \
446 zstd-v0.4-FF.testfile \
447 zstd-v0.5-FF.result \
448 zstd-v0.5-FF.testfile \
449 zstd-v0.6-FF.result \
450 zstd-v0.6-FF.testfile \
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-cxxfilt/
H A DOpts.td4 class FF<string name, string help> : Flag<["--"], name>, HelpText<help>;
17 def help : FF<"help", "Display this help">;
18 def quote : FF<"quote", "Quote demangled names with \" \" if not already quoted">;
20 def types : FF<"types", "Attempt to demangle types as well as symbol names">;
21 def no_params : FF<"no-params", "Skip function parameters and return types">;
22 def version : FF<"version", "Display the version">;
/freebsd/contrib/mtree/
H A Dspecspec.c48 #define FF(a, b, c, d) \ macro
152 if (FF(n1, n2, F_CKSUM, cksum)) in compare_nodes()
154 if (FF(n1, n2, F_GID, st_gid)) in compare_nodes()
156 if (FF(n1, n2, F_GNAME, st_gid)) in compare_nodes()
158 if (FF(n1, n2, F_MODE, st_mode)) in compare_nodes()
160 if (FF(n1, n2, F_NLINK, st_nlink)) in compare_nodes()
162 if (FF(n1, n2, F_SIZE, st_size)) in compare_nodes()
168 if (FF(n1, n2, F_UID, st_uid)) in compare_nodes()
170 if (FF(n1, n2, F_UNAME, st_uid)) in compare_nodes()
184 if (FF(n1, n2, F_FLAGS, st_flags)) in compare_nodes()
/freebsd/sys/fs/ext2fs/
H A Dext2_hash.c89 #define FF(a, b, c, d, x, s) { \ macro
121 FF(a, b, c, d, data[0], 3); in ext2_half_md4()
122 FF(d, a, b, c, data[1], 7); in ext2_half_md4()
123 FF(c, d, a, b, data[2], 11); in ext2_half_md4()
124 FF(b, c, d, a, data[3], 19); in ext2_half_md4()
125 FF(a, b, c, d, data[4], 3); in ext2_half_md4()
126 FF(d, a, b, c, data[5], 7); in ext2_half_md4()
127 FF(c, d, a, b, data[6], 11); in ext2_half_md4()
128 FF(b, c, d, a, data[7], 19); in ext2_half_md4()
/freebsd/contrib/llvm-project/llvm/tools/llvm-size/
H A DOpts.td4 class FF<string name, string help> : Flag<["--"], name>, HelpText<help>;
12 def common : FF<"common", "Print common symbols in the ELF file. When using Berkeley format, this i…
14 def help : FF<"help", "Display this help">;
16 def totals : FF<"totals", "Print totals of all objects - Berkeley format only">;
17 def version : FF<"version", "Display the version">;
/freebsd/contrib/llvm-project/llvm/tools/llvm-strings/
H A DOpts.td4 class FF<string name, string help> : Flag<["--"], name>, HelpText<help>;
12 def all : FF<"all", "Silently ignored. Present for GNU strings compatibility">;
14 def help : FF<"help", "Display this help">;
17 def version : FF<"version", "Display the version">;
/freebsd/crypto/krb5/src/lib/crypto/builtin/sha2/
H A Dsha256.c124 uint32_t AA, BB, CC, DD, EE, FF, GG, HH; in calc() local
133 FF = F; in calc()
146 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_256[i] + data[i]; in calc()
150 GG = FF; in calc()
151 FF = EE; in calc()
164 F += FF; in calc()
H A Dsha512.c132 uint64_t AA, BB, CC, DD, EE, FF, GG, HH; in calc() local
141 FF = F; in calc()
154 T1 = HH + Sigma1(EE) + Ch(EE, FF, GG) + constant_512[i] + data[i]; in calc()
158 GG = FF; in calc()
159 FF = EE; in calc()
172 F += FF; in calc()
/freebsd/sys/contrib/device-tree/src/powerpc/
H A Dac14xx.dts256 edid = [00 FF FF FF FF FF FF 00 14 94 00 00 00 00 00 00
257 0A 12 01 03 80 1C 23 78 CA 88 FF 94 52 54 8E 27
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCFragment.cpp103 const auto *FF = cast<MCFillFragment>(this); in dump() local
104 OS << " Value:" << static_cast<unsigned>(FF->getValue()) in dump()
105 << " ValueSize:" << static_cast<unsigned>(FF->getValueSize()) in dump()
107 FF->getNumValues().print(OS, nullptr); in dump()
/freebsd/tests/sys/cddl/zfs/tests/utils_test/
H A Dutils_test_005_pos.ksh62 test_requires FF
68 log_mustnot $FF -F zfs /dev/${DISK}s0
/freebsd/bin/pax/
H A Doptions.h58 #define FF 0x00000010 macro
108 #define BDCOPY (AF|BF|FF|OF|XF|CBF|CEF)
/freebsd/contrib/llvm-project/lld/ELF/
H A DOptions.td7 class FF<string name> : Flag<["--"], name>;
98 def cmse_implib: FF<"cmse-implib">,
145 def : FF<"no-call-graph-profile-sort">, Alias<call_graph_profile_sort>, AliasArgs<["none"]>,
158 def verbose_bp_section_orderer: FF<"verbose-bp-section-orderer">,
172 def cref: FF<"cref">,
218 def enable_non_contiguous_regions : FF<"enable-non-contiguous-regions">,
274 def force_group_allocation: FF<"force-group-allocation">,
302 def ignore_function_address_equality: FF<"ignore-function-address-equality">,
305 def ignore_data_address_equality: FF<"ignore-data-address-equality">,
358 def no_warnings: FF<"no-warnings">, HelpText<"Suppress warnings and cancel --fatal-warnings">;
[all …]
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp714 FunctionFarmer FF; in getBody() local
723 FF = create_std_move_forward; in getBody()
726 FF = nullptr; in getBody()
731 FF = create_OSAtomicCompareAndSwap; in getBody()
733 FF = create_call_once; in getBody()
735 FF = llvm::StringSwitch<FunctionFarmer>(Name) in getBody()
741 if (FF) { Val = FF(C, D); } in getBody()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DRISCVVEmitter.cpp207 #define KEY_VAL_ALL_NF_BASE(MACRO_NAME, NAME, SEW, LOG2SEW, FF) \ in getSegInstLog2SEW() argument
208 MACRO_NAME(NAME ## 2e ## SEW ## FF, LOG2SEW), \ in getSegInstLog2SEW()
209 MACRO_NAME(NAME ## 3e ## SEW ## FF, LOG2SEW), \ in getSegInstLog2SEW()
210 MACRO_NAME(NAME ## 4e ## SEW ## FF, LOG2SEW), \ in getSegInstLog2SEW()
211 MACRO_NAME(NAME ## 5e ## SEW ## FF, LOG2SEW), \ in getSegInstLog2SEW()
212 MACRO_NAME(NAME ## 6e ## SEW ## FF, LOG2SEW), \ in getSegInstLog2SEW()
213 MACRO_NAME(NAME ## 7e ## SEW ## FF, LOG2SEW), \ in getSegInstLog2SEW()
214 MACRO_NAME(NAME ## 8e ## SEW ## FF, LOG2SEW) in getSegInstLog2SEW()
/freebsd/crypto/krb5/src/lib/crypto/builtin/aes/
H A Dkresults.expected5 00 11 22 33 44 55 66 77 88 99 AA BB CC DD EE FF
19 E1 43 64 CB 16 D3 FF CF E8 FA 6A 2C EC A2 69 34
34 25 4F 90 96 01 9B 09 27 5E FF 95 69 E0 70 DC 50
65 FF AC 97 44 E1 C0 C7 39 F8 7A 4B F8 ED 01 58 6B
103 25 4F 90 96 01 9B 09 27 5E FF 95 69 E0 70 DC 50
176 25 4F 90 96 01 9B 09 27 5E FF 95 69 E0 70 DC 50

12345678