| /openbsd-src/gnu/llvm/libunwind/src/ |
| H A D | CompactUnwinder.hpp | 128 uint32_t permutation = in stepWithCompactEncodingFrameless() local 140 permunreg[0] = permutation / 120; in stepWithCompactEncodingFrameless() 141 permutation -= (permunreg[0] * 120); in stepWithCompactEncodingFrameless() 142 permunreg[1] = permutation / 24; in stepWithCompactEncodingFrameless() 143 permutation -= (permunreg[1] * 24); in stepWithCompactEncodingFrameless() 144 permunreg[2] = permutation / 6; in stepWithCompactEncodingFrameless() 145 permutation -= (permunreg[2] * 6); in stepWithCompactEncodingFrameless() 146 permunreg[3] = permutation / 2; in stepWithCompactEncodingFrameless() 147 permutation -= (permunreg[3] * 2); in stepWithCompactEncodingFrameless() 148 permunreg[4] = permutation; in stepWithCompactEncodingFrameless() [all …]
|
| /openbsd-src/gnu/llvm/lldb/tools/compact-unwind/ |
| H A D | compact-unwind-dumper.c | 473 uint32_t permutation = in print_encoding_x86_64() local 518 permunreg[0] = permutation / 120; // 120 == 5! in print_encoding_x86_64() 519 permutation -= (permunreg[0] * 120); in print_encoding_x86_64() 520 permunreg[1] = permutation / 24; // 24 == 4! in print_encoding_x86_64() 521 permutation -= (permunreg[1] * 24); in print_encoding_x86_64() 522 permunreg[2] = permutation / 6; // 6 == 3! in print_encoding_x86_64() 523 permutation -= (permunreg[2] * 6); in print_encoding_x86_64() 524 permunreg[3] = permutation / 2; // 2 == 2! in print_encoding_x86_64() 525 permutation -= (permunreg[3] * 2); in print_encoding_x86_64() 526 permunreg[4] = permutation; // 1 == 1! in print_encoding_x86_64() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | CompactUnwindInfo.cpp | 805 uint32_t permutation = EXTRACT_BITS( in CreateUnwindPlan_x86_64() local 867 permunreg[0] = permutation / 120; // 120 == 5! in CreateUnwindPlan_x86_64() 868 permutation -= (permunreg[0] * 120); in CreateUnwindPlan_x86_64() 869 permunreg[1] = permutation / 24; // 24 == 4! in CreateUnwindPlan_x86_64() 870 permutation -= (permunreg[1] * 24); in CreateUnwindPlan_x86_64() 871 permunreg[2] = permutation / 6; // 6 == 3! in CreateUnwindPlan_x86_64() 872 permutation -= (permunreg[2] * 6); in CreateUnwindPlan_x86_64() 873 permunreg[3] = permutation / 2; // 2 == 2! in CreateUnwindPlan_x86_64() 874 permutation -= (permunreg[3] * 2); in CreateUnwindPlan_x86_64() 875 permunreg[4] = permutation; // 1 == 1! in CreateUnwindPlan_x86_64() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/ |
| H A D | PPCScheduleG4.td | 19 def G4_VPU : FuncUnit; // vector permutation unit
|
| H A D | PPCScheduleG4Plus.td | 21 def G4P_VPU : FuncUnit; // vector permutation unit
|
| H A D | PPCScheduleG5.td | 20 def G5_VPU : FuncUnit; // vector permutation unit
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/ |
| H A D | RISCVFeatures.td | 179 "'Zbkx' (Crossbar permutation instructions)">; 182 "'Zbkx' (Crossbar permutation instructions)">;
|
| /openbsd-src/gnu/usr.bin/perl/cpan/perlfaq/lib/ |
| H A D | perlfaq4.pod | 1853 print "next permutation: (@perm)\n"; 1863 print "next permutation: (@array)\n"; 1872 # Fischer-Krause ordered permutation generator 1894 permutation is returned.
|
| /openbsd-src/gnu/gcc/libmudflap/ |
| H A D | ChangeLog | 221 * testsuite/libmudflap.c++/c++frags.exp: Also test -O permutation. 651 flags for static linking permutation.
|
| /openbsd-src/gnu/llvm/libcxx/docs/Status/ |
| H A D | Cxx20Issues.csv | 149 "`3169 <https://wg21.link/LWG3169>`__","``ranges``\ permutation generators discard useful informat…
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/ |
| H A D | AArch64.td | 166 "Enable bit permutation SVE2 instructions (FEAT_SVE_BitPerm)", [FeatureSVE2]>;
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | VOP3PInstructions.td | 285 // Define non-associative/commutative add/mul to prevent permutation in the dot8
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | IntrinsicsAArch64.td | 2543 // SVE2 - Optional bit permutation
|
| H A D | IntrinsicsX86.td | 1025 // Vector permutation 1645 // Vector permutation
|
| /openbsd-src/gnu/gcc/gcc/config/frv/ |
| H A D | frv.md | 502 ;; (g) For each permutation S'' of S', try issuing S'' from last to 507 ;; (h) If (g) found no permutation, abort. 528 ;; The first permutation it tries is S' itself (because, as noted above,
|
| /openbsd-src/gnu/llvm/clang/docs/ |
| H A D | LanguageExtensions.rst | 2558 permutation/shuffle/swizzle operations. This builtin is also very important
|
| /openbsd-src/gnu/gcc/libstdc++-v3/docs/html/17_intro/ |
| H A D | CHECKLIST | 4244 // _lib.alg.permutation.generators_, permutations
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/docs/html/17_intro/ |
| H A D | CHECKLIST | 4244 // _lib.alg.permutation.generators_, permutations
|
| /openbsd-src/gnu/usr.bin/binutils/gas/po/ |
| H A D | gas.pot | 3800 msgid "Invalid permutation completer"
|
| H A D | tr.po | 3857 msgid "Invalid permutation completer"
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/gas/po/ |
| H A D | gas.pot | 4114 msgid "Invalid permutation completer"
|
| H A D | tr.po | 4439 msgid "Invalid permutation completer"
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86InstrAVX512.td | 6560 // 1-src variable permutation VPERMW/D/Q
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | ChangeLog | 18310 Fix permutation of conversion and plus/mult.
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | LangRef.rst | 9897 The '``shufflevector``' instruction constructs a permutation of elements
|