Home
last modified time | relevance | path

Searched refs:fold (Results 1 – 25 of 78) sorted by relevance

1234

/freebsd/usr.bin/fold/tests/
H A Dfold_test.sh36 atf_check -s exit:0 -o empty fold -b < /dev/null
47 atf_check -s exit:0 -o empty fold -s < /dev/null
60 " fold -w
71 atf_check -s exit:0 -o empty fold < /dev/null
/freebsd/usr.bin/fold/
H A Dfold.c47 void fold(int);
113 fold(width); in main()
119 fold(width); in main()
142 fold(int width) in fold() function
H A DMakefile3 PROG= fold
/freebsd/contrib/xz/src/liblzma/check/
H A Dcrc_x86_clmul.h129 fold(__m128i v, __m128i k) in fold() function
141 return _mm_xor_si128(my_load128(buf), fold(v, k)); in fold_xor()
267 v0 = _mm_xor_si128(v1, fold(v0, fold128)); in crc32_arch_optimized()
268 v0 = _mm_xor_si128(v2, fold(v0, fold128)); in crc32_arch_optimized()
269 v0 = _mm_xor_si128(v3, fold(v0, fold128)); in crc32_arch_optimized()
299 v0 = _mm_xor_si128(v1, fold(v0, fold128)); in crc32_arch_optimized()
/freebsd/contrib/vis/
H A Dvis.c58 static int eflags, fold, foldwidth = 80, none, markeol; variable
97 fold++; /* fold output lines to 80 cols */ in main()
263 if (fold) { in process()
283 if (fold && *(cp - 1) != '\n') in process()
/freebsd/sys/dev/syscons/dragon/
H A Ddragon_saver.c112 static unsigned char fold[1 << (ORDER - 3)]; in dragon_update() local
113 #define GET_FOLD(x) (fold[(x) >> 3] & (1 << ((x) & 7))) in dragon_update()
114 #define SET_FOLD(x) (fold[(x) >> 3] |= (1 << ((x) & 7))) in dragon_update()
115 #define CLR_FOLD(x) (fold[(x) >> 3] &= ~(1 << ((x) & 7))) in dragon_update()
/freebsd/contrib/arm-optimized-routines/networking/aarch64/
H A Dchksum_simd.c68 goto fold; in __chksum_aarch64_simd()
144 fold: in __chksum_aarch64_simd()
/freebsd/contrib/unifdef/scripts/
H A Dgitlog2changelog.sh7 uniq | fold -s
/freebsd/contrib/llvm-project/clang/lib/CIR/Dialect/IR/
H A DCIRDialect.cpp356 OpFoldResult cir::ConstantOp::fold(FoldAdaptor /*adaptor*/) { in fold() function in cir::ConstantOp
532 OpFoldResult cir::CastOp::fold(FoldAdaptor adaptor) { in fold() function in cir::CastOp
539 auto foldOrder = getSrc().getDefiningOp()->fold(foldResults); in fold()
1602 OpFoldResult cir::SelectOp::fold(FoldAdaptor adaptor) { in fold() function in cir::SelectOp
1686 OpFoldResult cir::UnaryOp::fold(FoldAdaptor adaptor) { in fold() function in cir::UnaryOp
1717 OpFoldResult cir::VecCreateOp::fold(FoldAdaptor adaptor) { in fold() function in cir::VecCreateOp
1754 OpFoldResult cir::VecExtractOp::fold(FoldAdaptor adaptor) { in fold() function in cir::VecExtractOp
1777 OpFoldResult cir::VecCmpOp::fold(FoldAdaptor adaptor) { in fold() function in cir::VecCmpOp
1875 OpFoldResult cir::VecShuffleOp::fold(FoldAdaptor adaptor) { in fold() function in cir::VecShuffleOp
1941 OpFoldResult cir::VecShuffleDynamicOp::fold(FoldAdaptor adaptor) { in fold() function in cir::VecShuffleDynamicOp
[all …]
/freebsd/crypto/heimdal/lib/krb5/
H A DMakefile.am26 n-fold-test \
189 n-fold.c \
264 n-fold.c \
H A DMakefile.in56 n-fold-test$(EXEEXT) parse-name-test$(EXEEXT) \
185 libkrb5_la-n-fold.lo libkrb5_la-pac.lo libkrb5_la-padata.lo \
227 librfc3961_la-keyblock.lo librfc3961_la-n-fold.lo \
234 n-fold-test$(EXEEXT) parse-name-test$(EXEEXT) \
262 n_fold_test_SOURCES = n-fold-test.c
263 n_fold_test_OBJECTS = n-fold-test.$(OBJEXT)
468 krbhst-test.c n-fold-test.c parse-name-test.c store-test.c \
478 aes-test.c derived-key-test.c krbhst-test.c n-fold-test.c \
878 n-fold.c \
946 n-fold.c \
[all …]
/freebsd/contrib/llvm-project/lld/ELF/
H A DICF.cpp557 auto fold = [](Symbol *sym) { in run() local
566 fold(sym); in run()
569 fold(sym); in run()
/freebsd/contrib/llvm-project/clang/include/clang/CIR/Dialect/IR/
H A DCIRDialect.td33 // returned by fold methods, allowing them to be materialized as constant
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/GlobalISel/
H A DCombine.td1181 // Constant fold operations.
1699 // fold ((0-A) + B) -> B-A
1706 // fold (A + (0-B)) -> A-B
1713 // fold (A+(B-A)) -> B
1720 // fold ((B-A)+A) -> B
1727 // fold ((A-B)+(C-A)) -> (C-B)
1735 // fold ((A-B)+(B-C)) -> (A-C)
1743 // fold (A+(B-(A+C))) to (B-C)
1751 // fold (A+(B-(C+A))) to (B-C)
1759 // fold (A+C1)-C2 -> A+(C1-C2)
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/
H A DMachinePassRegistry.def49 LOOP_PASS("loop-term-fold", LoopTermFoldPass())
216 parseMachineSinkingPassOptions, "enable-sink-fold")
/freebsd/usr.bin/
H A DMakefile46 fold \
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dalgorithm.cppm
H A Dalgorithm.inc165 // [alg.fold], fold
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DREADME.txt75 DAGCombiner doesn't yet fold truncations of extended loads. Functions like:
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPassRegistry.def123 MACHINE_FUNCTION_PASS("si-fold-operands", SIFoldOperandsPass());
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.def57 // I -> Required to constant fold to an integer constant expression.
/freebsd/usr.sbin/crunch/examples/
H A Dreally-big.conf42 progs dirname du env error expand false file find finger fmt fold fpr from
/freebsd/etc/mtree/
H A DBSD.tests.dist1146 fold
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DPassRegistry.def632 "no-preserve-order;preserve-order;no-rename-all;rename-all;no-fold-all;"
633 "fold-all;no-reorder-operands;reorder-operands")
760 LOOP_PASS("loop-term-fold", LoopTermFoldPass())
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyInstrFloat.td116 // WebAssembly's select interprets any non-zero value as true, so we can fold

1234