Home
last modified time | relevance | path

Searched refs:rotate (Results 1 – 25 of 101) sorted by relevance

12345

/freebsd/contrib/llvm-project/libc/src/__support/CPP/
H A Dbit.h224 rotr(T value, int rotate);
228 rotl(T value, int rotate) { in rotl() argument
230 rotate = rotate % N; in rotl()
231 if (!rotate) in rotl()
233 if (rotate < 0) in rotl()
234 return cpp::rotr<T>(value, -rotate); in rotl()
235 return static_cast<T>((value << rotate) | (value >> (N - rotate))); in rotl()
240 rotr(T value, int rotate) { in rotr() argument
242 rotate = rotate % N; in rotr()
243 if (!rotate) in rotr()
[all …]
/freebsd/usr.sbin/periodic/etc/daily/
H A D221.backup-gpart19 rotate() { function
51 rotate "kern.geom.conftxt" $show
70 rotate "$safe_name" $show
82 rotate "$safe_name"
94 rotate "$safe_name"
116 rotate "$safe_name"
H A D223.backup-zfs18 rotate() { function
59 rotate "zpool_list" $show
62 rotate "zfs_list" $show
71 rotate "zfs_props" $show
74 rotate "zpool_props" $show
H A D222.backup-gmirror17 rotate() { function
62 rotate "$safe_name" $show
/freebsd/sys/contrib/openzfs/module/zcommon/
H A Dcityhash.c37 rotate(uint64_t val, int shift) in rotate() function
62 return (cityhash_helper(rotate(a + b, 43) + rotate(c, 30) + d, in cityhash_impl()
63 a + rotate(b + HASH_K2, 18) + c, mul)); in cityhash_impl()
/freebsd/crypto/openssl/crypto/sha/asm/
H A Dsha1-thumb.pl60 sub rotate { subroutine
80 $code.=$inline?&rotate():"\tbl .Lrotate\n";
90 $code.=$inline?&rotate():"\tbl .Lrotate\n";
103 $code.=$inline?&rotate():"\tbl .Lrotate\n";
253 $code.=".Lrotate:\n".&rotate()."\tmov pc,lr\n" if (!$inline);
/freebsd/sys/netgraph/
H A Dng_vlan_rotate.c377 int8_t rotate; in ng_vlanrotate_rcvdata() local
384 rotate = +vrp->conf.rot; in ng_vlanrotate_rcvdata()
387 rotate = -vrp->conf.rot; in ng_vlanrotate_rcvdata()
431 if ((vlans < vrp->conf.min) || (vlans <= abs(rotate))) { in ng_vlanrotate_rcvdata()
439 if (rotate == 0) { in ng_vlanrotate_rcvdata()
441 } else if (rotate > 0) { in ng_vlanrotate_rcvdata()
442 ng_vlanrotate_rotate(evsh->vlan_stack, rotate, vlans); in ng_vlanrotate_rcvdata()
444 ng_vlanrotate_rotate(evsh->vlan_stack, vlans + rotate, vlans); in ng_vlanrotate_rcvdata()
/freebsd/packages/newsyslog/
H A Dnewsyslog.ucl19 comment = "Create and rotate system log files"
23 create log files in /var/log and periodically rotate existing log files.
25 By default, newsyslog will rotate the log files used by the syslogd(8) daemon,
26 but it can be configured to rotate any user-configured logfile based on a set
/freebsd/tests/sys/geom/class/multipath/
H A Dmisc.sh316 atf_test_case rotate cleanup
335 atf_check -s exit:0 gmultipath rotate "$name"
338 atf_check -s exit:0 gmultipath rotate "$name"
341 atf_check -s exit:0 gmultipath rotate "$name"
361 atf_add_test_case rotate
/freebsd/contrib/llvm-project/clang/lib/CodeGen/TargetBuiltins/
H A DRISCV.cpp41 std::rotate(Ops.begin(), Ops.begin() + 1, Ops.end() - 1); in emitRVVVLEFFBuiltin()
82 std::rotate(Ops.begin(), Ops.begin() + 2, Ops.begin() + 3); in emitRVVVSSEBuiltin()
106 std::rotate(Ops.begin(), Ops.begin() + 2, Ops.begin() + 3); in emitRVVIndexedStoreBuiltin()
127 std::rotate(Ops.begin(), Ops.begin() + 1, Ops.end() - 1); in emitRVVPseudoUnaryBuiltin()
157 std::rotate(Ops.begin(), Ops.begin() + 1, Ops.end() - 1); in emitRVVPseudoVNotBuiltin()
201 std::rotate(Ops.begin(), Ops.begin() + 1, Ops.end() - 1); in emitRVVPseudoVFUnaryBuiltin()
228 std::rotate(Ops.begin(), Ops.begin() + 1, Ops.end() - 1); in emitRVVPseudoVWCVTBuiltin()
258 std::rotate(Ops.begin(), Ops.begin() + 1, Ops.end() - 1); in emitRVVPseudoVNCVTBuiltin()
352 std::rotate(Ops.begin(), Ops.begin() + 1, Ops.end() - 1); in emitRVVUnitStridedSegLoadTupleBuiltin()
410 std::rotate(Ops.begin(), Ops.begin() + 1, Ops.end() - 1); in emitRVVUnitStridedSegLoadFFTupleBuiltin()
[all …]
/freebsd/contrib/tcsh/
H A Ded.inputl.c56 static int rotate = 0; variable
364 rotate = 0; in Inputl()
370 rotate = 0; in Inputl()
375 rotate = 1; in Inputl()
380 rotate = 1; in Inputl()
385 if (InputBuf[curlen] && rotate) { in Inputl()
478 if (InputBuf[curlen] && rotate) { in Inputl()
/freebsd/contrib/llvm-project/libc/src/__support/
H A Dbig_int.h1273 rotr(T value, int rotate);
1278 rotl(T value, int rotate) {
1280 rotate = rotate % N;
1281 if (!rotate)
1283 if (rotate < 0)
1284 return cpp::rotr<T>(value, -rotate);
1285 return (value << static_cast<size_t>(rotate)) |
1286 (value >> (N - static_cast<size_t>(rotate)));
1292 rotr(T value, int rotate) {
1294 rotate = rotate % N;
[all …]
/freebsd/sys/amd64/vmm/io/
H A Dvatpic.c71 bool rotate; member
367 atpic->rotate = ((val & OCW2_R) != 0); in vatpic_ocw2()
383 if (atpic->rotate) in vatpic_ocw2()
386 } else if ((val & OCW2_SL) != 0 && atpic->rotate == true) { in vatpic_ocw2()
592 if (atpic->rotate == true) in vatpic_pin_accepted()
831 SNAPSHOT_VAR_OR_LEAVE(atpic->rotate, meta, ret, done); in vatpic_snapshot()
/freebsd/sys/arm/arm/
H A Ddisassem.c336 int rotate= ((insn >> 7) & 0x1e); in disasm() local
339 (insn & 0xff) << (32 - rotate) | in disasm()
340 (insn & 0xff) >> rotate); in disasm()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dbit35 // [bit.rotate], rotating
80 # include <__bit/rotate.h>
/freebsd/contrib/googletest/docs/_sass/
H A Dmain.scss69 transform: rotate(45deg);
193 transform: rotate(-135deg);
/freebsd/crypto/openssl/crypto/des/asm/
H A Ddes_enc.m4301 srl out1, 4, local0 ! rotate 4 right
311 sll out1, 28, out1 ! rotate
316 or out1, local0, out1 ! rotate
363 srl out0, 4, local0 ! rotate 4 right
366 sll out0, 28, out0 ! rotate
374 or out0, local0, out0 ! rotate
415 srl out1, 4, local0 ! rotate
423 sll out1, 28, out1 ! rotate
428 or out1, local0, out1 ! rotate
475 srl out0, 4, local0 ! rotate
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DHashing.h162 inline uint64_t rotate(uint64_t val, size_t shift) { in rotate() function
199 return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b; in hash_9to16_bytes()
417 std::rotate(buffer, buffer_ptr, buffer_end);
571 std::rotate(buffer, buffer_ptr, buffer_end);
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dbit.cppm
H A Dalgorithm.cppm
H A Dalgorithm.inc328 // [alg.rotate], rotate
329 using std::rotate;
332 using std::ranges::rotate;
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_rotate.h57 inline constexpr auto rotate = __rotate{};
/freebsd/usr.sbin/newsyslog/
H A Dnewsyslog.c177 int rotate; /* Non-zero if this file should be rotated */ member
428 tempwork->rotate = 0; in init_entry()
448 tempwork->rotate = 0; in init_entry()
561 ent->rotate = 0; in do_entry()
644 ent->rotate = 1; in do_entry()
648 ent->rotate = 1; in do_entry()
651 ent->rotate = 1; in do_entry()
655 ent->rotate = 1; in do_entry()
658 ent->rotate = 1; in do_entry()
664 if (ent->rotate && !norotate) { in do_entry()
/freebsd/sys/contrib/device-tree/Bindings/media/
H A Dmediatek-vpu.txt4 H.264/VP8/VP9 Decode, H.264/VP8 Encode and Image Processor (scale/rotate/color convert).
/freebsd/share/examples/BSD_daemon/
H A Deps.patch34 /rot {rotate} bind def

12345