Home
last modified time | relevance | path

Searched refs:R (Results 1 – 25 of 2440) sorted by relevance

12345678910>>...98

/freebsd-11-stable/bin/sh/tests/expansion/
HDtrim9.029 testcase 'set -- Q R; set -- "${*#Q}"' '1| R'
30 testcase 'set -- Q R; set -- "${*##Q}"' '1| R'
31 testcase 'set -- Q R; set -- "${*%R}"' '1|Q '
32 testcase 'set -- Q R; set -- "${*%%R}"' '1|Q '
33 testcase 'set -- Q R; set -- "${*#S}"' '1|Q R'
34 testcase 'set -- Q R; set -- "${*##S}"' '1|Q R'
35 testcase 'set -- Q R; set -- "${*%S}"' '1|Q R'
36 testcase 'set -- Q R; set -- "${*%%S}"' '1|Q R'
37 testcase 'set -- Q R; set -- ${*#Q}' '1|R'
38 testcase 'set -- Q R; set -- ${*##Q}' '1|R'
[all …]
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBReproducer.cpp33 Registry &R = *this; in SBRegistry() local
35 RegisterMethods<SBAddress>(R); in SBRegistry()
36 RegisterMethods<SBAttachInfo>(R); in SBRegistry()
37 RegisterMethods<SBBlock>(R); in SBRegistry()
38 RegisterMethods<SBBreakpoint>(R); in SBRegistry()
39 RegisterMethods<SBBreakpointList>(R); in SBRegistry()
40 RegisterMethods<SBBreakpointLocation>(R); in SBRegistry()
41 RegisterMethods<SBBreakpointName>(R); in SBRegistry()
42 RegisterMethods<SBBroadcaster>(R); in SBRegistry()
43 RegisterMethods<SBCommandInterpreterRunOptions>(R); in SBRegistry()
[all …]
/freebsd-11-stable/sys/dev/cx/
HDcxreg.h41 #define R(b,r) ((b) | (((r)<<6 & 0x3c00) | ((r) & 0xf))) macro
47 #define IACK(p,l) (R(p,l) | 0x4000)
52 #define GFRCR(b) R(b,0x82) /* global firmware revision code register */
53 #define CAR(b) R(b,0xec) /* channel access register */
58 #define CMR(b) R(b,0x18) /* channel mode register */
59 #define COR1(b) R(b,0x13) /* channel option register 1 */
60 #define COR2(b) R(b,0x14) /* channel option register 2 */
61 #define COR3(b) R(b,0x15) /* channel option register 3 */
62 #define COR4(b) R(b,0x16) /* channel option register 4 */
63 #define COR5(b) R(b,0x17) /* channel option register 5 */
[all …]
/freebsd-11-stable/crypto/openssh/openbsd-compat/
HDrmd160.c84 #define R(a, b, c, d, e, Fj, Kj, sj, rj) \ macro
191 R(a, b, c, d, e, F0, K0, 11, 0); in RMD160Transform()
192 R(e, a, b, c, d, F0, K0, 14, 1); in RMD160Transform()
193 R(d, e, a, b, c, F0, K0, 15, 2); in RMD160Transform()
194 R(c, d, e, a, b, F0, K0, 12, 3); in RMD160Transform()
195 R(b, c, d, e, a, F0, K0, 5, 4); in RMD160Transform()
196 R(a, b, c, d, e, F0, K0, 8, 5); in RMD160Transform()
197 R(e, a, b, c, d, F0, K0, 7, 6); in RMD160Transform()
198 R(d, e, a, b, c, F0, K0, 9, 7); in RMD160Transform()
199 R(c, d, e, a, b, F0, K0, 11, 8); in RMD160Transform()
[all …]
/freebsd-11-stable/sys/opencrypto/
HDrmd160.c83 #define R(a, b, c, d, e, Fj, Kj, sj, rj) \ macro
182 R(a, b, c, d, e, F0, K0, 11, 0); in RMD160Transform()
183 R(e, a, b, c, d, F0, K0, 14, 1); in RMD160Transform()
184 R(d, e, a, b, c, F0, K0, 15, 2); in RMD160Transform()
185 R(c, d, e, a, b, F0, K0, 12, 3); in RMD160Transform()
186 R(b, c, d, e, a, F0, K0, 5, 4); in RMD160Transform()
187 R(a, b, c, d, e, F0, K0, 8, 5); in RMD160Transform()
188 R(e, a, b, c, d, F0, K0, 7, 6); in RMD160Transform()
189 R(d, e, a, b, c, F0, K0, 9, 7); in RMD160Transform()
190 R(c, d, e, a, b, F0, K0, 11, 8); in RMD160Transform()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/XRay/
HDRecordPrinter.cpp15 Error RecordPrinter::visit(BufferExtents &R) { in visit() argument
16 OS << formatv("<Buffer: size = {0} bytes>", R.size()) << Delim; in visit()
20 Error RecordPrinter::visit(WallclockRecord &R) { in visit() argument
21 OS << formatv("<Wall Time: seconds = {0}.{1,0+6}>", R.seconds(), R.nanos()) in visit()
26 Error RecordPrinter::visit(NewCPUIDRecord &R) { in visit() argument
27 OS << formatv("<CPU: id = {0}, tsc = {1}>", R.cpuid(), R.tsc()) << Delim; in visit()
31 Error RecordPrinter::visit(TSCWrapRecord &R) { in visit() argument
32 OS << formatv("<TSC Wrap: base = {0}>", R.tsc()) << Delim; in visit()
36 Error RecordPrinter::visit(CustomEventRecord &R) { in visit() argument
39 R.tsc(), R.cpu(), R.size(), R.data()) in visit()
[all …]
HDFDRTraceWriter.cpp81 Error FDRTraceWriter::visit(BufferExtents &R) { in visit() argument
82 return writeMetadata<7u>(OS, R.size()); in visit()
85 Error FDRTraceWriter::visit(WallclockRecord &R) { in visit() argument
86 return writeMetadata<4u>(OS, R.seconds(), R.nanos()); in visit()
89 Error FDRTraceWriter::visit(NewCPUIDRecord &R) { in visit() argument
90 return writeMetadata<2u>(OS, R.cpuid(), R.tsc()); in visit()
93 Error FDRTraceWriter::visit(TSCWrapRecord &R) { in visit() argument
94 return writeMetadata<3u>(OS, R.tsc()); in visit()
97 Error FDRTraceWriter::visit(CustomEventRecord &R) { in visit() argument
98 if (auto E = writeMetadata<5u>(OS, R.size(), R.tsc(), R.cpu())) in visit()
[all …]
HDBlockIndexer.cpp20 Error BlockIndexer::visit(WallclockRecord &R) { in visit() argument
21 CurrentBlock.Records.push_back(&R); in visit()
22 CurrentBlock.WallclockTime = &R; in visit()
26 Error BlockIndexer::visit(NewCPUIDRecord &R) { in visit() argument
27 CurrentBlock.Records.push_back(&R); in visit()
31 Error BlockIndexer::visit(TSCWrapRecord &R) { in visit() argument
32 CurrentBlock.Records.push_back(&R); in visit()
36 Error BlockIndexer::visit(CustomEventRecord &R) { in visit() argument
37 CurrentBlock.Records.push_back(&R); in visit()
41 Error BlockIndexer::visit(CustomEventRecordV5 &R) { in visit() argument
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Format/
HDFormat.h2064 bool operator==(const FormatStyle &R) const {
2065 return AccessModifierOffset == R.AccessModifierOffset &&
2066 AlignAfterOpenBracket == R.AlignAfterOpenBracket &&
2067 AlignConsecutiveAssignments == R.AlignConsecutiveAssignments &&
2068 AlignConsecutiveDeclarations == R.AlignConsecutiveDeclarations &&
2069 AlignEscapedNewlines == R.AlignEscapedNewlines &&
2070 AlignOperands == R.AlignOperands &&
2071 AlignTrailingComments == R.AlignTrailingComments &&
2072 AllowAllArgumentsOnNextLine == R.AllowAllArgumentsOnNextLine &&
2074 R.AllowAllConstructorInitializersOnNextLine &&
[all …]
/freebsd-11-stable/contrib/sendmail/cf/cf/
HDsubmit.cf88 # Hosts for which relaying is permitted ($=R)
621 R$@ $@ <@>
624 R$* $: $1 <@> mark addresses
625 R$* < $* > $* <@> $: $1 < $2 > $3 unmark <addr>
626 R@ $* <@> $: @ $1 unmark @host:...
627 R$* [ IPv6 : $+ ] <@> $: $1 [ IPv6 : $2 ] unmark IPv6 addr
628 R$* :: $* <@> $: $1 :: $2 unmark node::addr
629 R:include: $* <@> $: :include: $1 unmark :include:...
630 R$* : $* [ $* ] $: $1 : $2 [ $3 ] <@> remark if leading colon
631 R$* : $* <@> $: $2 strip colon if marked
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
HDClangSACheckersEmitter.cpp27 static std::string getPackageFullName(const Record *R);
29 static std::string getParentPackageFullName(const Record *R) { in getParentPackageFullName() argument
31 if (DefInit *DI = dyn_cast<DefInit>(R->getValueInit("ParentPackage"))) in getParentPackageFullName()
36 static std::string getPackageFullName(const Record *R) { in getPackageFullName() argument
37 std::string name = getParentPackageFullName(R); in getPackageFullName()
40 assert(!R->getValueAsString("PackageName").empty()); in getPackageFullName()
41 name += R->getValueAsString("PackageName"); in getPackageFullName()
45 static std::string getCheckerFullName(const Record *R) { in getCheckerFullName() argument
46 std::string name = getParentPackageFullName(R); in getCheckerFullName()
49 assert(!R->getValueAsString("CheckerName").empty()); in getCheckerFullName()
[all …]
/freebsd-11-stable/contrib/sendmail/cf/m4/
HDproto.m4182 # Hosts for which relaying is permitted ($=R)
217 # ($R has precedence for unqualified names if `FEATURE(stickyhost)' is used)
773 R$@ $@ <@>
776 R$* $: $1 <@> mark addresses
777 R$* < $* > $* <@> $: $1 < $2 > $3 unmark <addr>
778 R@ $* <@> $: @ $1 unmark @host:...
779 R$* [ IPv6 : $+ ] <@> $: $1 [ IPv6 : $2 ] unmark IPv6 addr
780 R$* :: $* <@> $: $1 :: $2 unmark node::addr
781 R:`include': $* <@> $: :`include': $1 unmark :`include':...
782 R$* : $* [ $* ] $: $1 : $2 [ $3 ] <@> remark if leading colon
[all …]
/freebsd-11-stable/contrib/gdb/gdb/
HDrs6000-tdep.c2142 #define R(name) { STR(name), 4, 8, 0, 0 } macro
2176 /* 0 */ R(r0), R(r1), R(r2), R(r3), R(r4), R(r5), R(r6), R(r7), \
2177 /* 8 */ R(r8), R(r9), R(r10),R(r11),R(r12),R(r13),R(r14),R(r15), \
2178 /* 16 */ R(r16),R(r17),R(r18),R(r19),R(r20),R(r21),R(r22),R(r23), \
2179 /* 24 */ R(r24),R(r25),R(r26),R(r27),R(r28),R(r29),R(r30),R(r31), \
2184 /* 64 */ R(pc), R(ps)
2187 /* 0 */ R(r0), R(r1), R(r2), R(r3), R(r4), R(r5), R(r6), R(r7), \
2188 /* 8 */ R(r8), R(r9), R(r10),R(r11),R(r12),R(r13),R(r14),R(r15), \
2189 /* 16 */ R(r16),R(r17),R(r18),R(r19),R(r20),R(r21),R(r22),R(r23), \
2190 /* 24 */ R(r24),R(r25),R(r26),R(r27),R(r28),R(r29),R(r30),R(r31), \
[all …]
/freebsd-11-stable/contrib/gcc/config/soft-fp/
HDop-common.h120 #define _FP_CHOOSENAN_SEMIRAW(fs, wc, R, X, Y, OP) \ argument
125 _FP_CHOOSENAN(fs, wc, R, X, Y, OP); \
126 _FP_FRAC_SLL_##wc(R, _FP_WORKBITS); \
296 #define _FP_ADD_INTERNAL(fs, wc, R, X, Y, OP) \ argument
301 R##_s = X##_s; \
305 R##_e = X##_e; \
312 _FP_FRAC_COPY_##wc(R, X); \
321 _FP_FRAC_ADD_##wc(R, X, Y); \
327 _FP_FRAC_COPY_##wc(R, X); \
337 _FP_FRAC_COPY_##wc(R, X); \
[all …]
/freebsd-11-stable/usr.bin/systat/
HDtcp.c116 #define R(row, str) mvwprintw(wnd, row, 51, str); in labeltcp() macro
117 L(0, "TCP Connections"); R(0, "TCP Packets"); in labeltcp()
118 L(1, "connections initiated"); R(1, "total packets sent"); in labeltcp()
119 L(2, "connections accepted"); R(2, "- data"); in labeltcp()
120 L(3, "connections established"); R(3, "- data (retransmit by dupack)"); in labeltcp()
121 L(4, "connections dropped"); R(4, "- data (retransmit by sack)"); in labeltcp()
122 L(5, "- in embryonic state"); R(5, "- ack-only"); in labeltcp()
123 L(6, "- on retransmit timeout"); R(6, "- window probes"); in labeltcp()
124 L(7, "- by keepalive"); R(7, "- window updates"); in labeltcp()
125 L(8, "- from listen queue"); R(8, "- urgent data only"); in labeltcp()
[all …]
/freebsd-11-stable/sys/i386/i386/
HDlocore.s134 #define R(foo) ((foo)-KERNBASE) macro
137 movl R(physfree), %esi ; \
140 movl %eax, R(physfree) ; \
175 fillkpt(R(KPTphys), prot)
188 movl $R(pc98_system_parameter),%edi
224 movl $R(__bss_end),%ecx
225 movl $R(__bss_start),%edi
240 movl $R(tmpstk),%esp
244 testb $0x02,R(pc98_system_parameter)+220
247 cmpb $0x0b,R(pc98_system_parameter)+224
[all …]
/freebsd-11-stable/sys/crypto/skein/
HDskein_block.c129 #define I256(R) \ in Skein_256_Process_Block() argument
130 X0 += ks[((R)+1) % 5]; /* inject the key schedule value */ \ in Skein_256_Process_Block()
131 X1 += ks[((R)+2) % 5] + ts[((R)+1) % 3]; \ in Skein_256_Process_Block()
132 X2 += ks[((R)+3) % 5] + ts[((R)+2) % 3]; \ in Skein_256_Process_Block()
133 X3 += ks[((R)+4) % 5] + (R)+1; \ in Skein_256_Process_Block()
140 #define I256(R) \ in Skein_256_Process_Block() argument
141 X0 += ks[r+(R)+0]; /* inject the key schedule value */ \ in Skein_256_Process_Block()
142 X1 += ks[r+(R)+1] + ts[r+(R)+0]; \ in Skein_256_Process_Block()
143 X2 += ks[r+(R)+2] + ts[r+(R)+1]; \ in Skein_256_Process_Block()
144 X3 += ks[r+(R)+3] + r+(R) ; \ in Skein_256_Process_Block()
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
HDavx512erintrin.h17 #define _mm512_exp2a23_round_pd(A, R) \ argument
20 (__mmask8)-1, (int)(R))
22 #define _mm512_mask_exp2a23_round_pd(S, M, A, R) \ argument
25 (int)(R))
27 #define _mm512_maskz_exp2a23_round_pd(M, A, R) \ argument
30 (__mmask8)(M), (int)(R))
41 #define _mm512_exp2a23_round_ps(A, R) \ argument
44 (__mmask16)-1, (int)(R))
46 #define _mm512_mask_exp2a23_round_ps(S, M, A, R) \ argument
49 (int)(R))
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
HDRelocationResolver.cpp18 static int64_t getELFAddend(RelocationRef R) { in getELFAddend() argument
19 Expected<int64_t> AddendOrErr = ELFRelocationRef(R).getAddend(); in getELFAddend()
42 static uint64_t resolveX86_64(RelocationRef R, uint64_t S, uint64_t A) { in resolveX86_64() argument
43 switch (R.getType()) { in resolveX86_64()
49 return S + getELFAddend(R); in resolveX86_64()
52 return S + getELFAddend(R) - R.getOffset(); in resolveX86_64()
55 return (S + getELFAddend(R)) & 0xFFFFFFFF; in resolveX86_64()
71 static uint64_t resolveAArch64(RelocationRef R, uint64_t S, uint64_t A) { in resolveAArch64() argument
72 switch (R.getType()) { in resolveAArch64()
74 return (S + getELFAddend(R)) & 0xFFFFFFFF; in resolveAArch64()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/
HDBitstreamRemarkSerializer.cpp21 : Encoded(), R(), Bitstream(Encoded), ContainerType(ContainerType) {} in BitstreamRemarkSerializerHelper()
23 static void push(SmallVectorImpl<uint64_t> &R, StringRef Str) { in push() argument
25 R.push_back(C); in push()
29 SmallVectorImpl<uint64_t> &R, StringRef Str) { in setRecordName() argument
30 R.clear(); in setRecordName()
31 R.push_back(RecordID); in setRecordName()
32 push(R, Str); in setRecordName()
33 Bitstream.EmitRecord(bitc::BLOCKINFO_CODE_SETRECORDNAME, R); in setRecordName()
37 SmallVectorImpl<uint64_t> &R, StringRef Str) { in initBlock() argument
38 R.clear(); in initBlock()
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Core/
HDReplacement.cpp157 Replacements::getReplacementInChangedCode(const Replacement &R) const { in getReplacementInChangedCode()
158 unsigned NewStart = getShiftedCodePosition(R.getOffset()); in getReplacementInChangedCode()
159 unsigned NewEnd = getShiftedCodePosition(R.getOffset() + R.getLength()); in getReplacementInChangedCode()
160 return Replacement(R.getFilePath(), NewStart, NewEnd - NewStart, in getReplacementInChangedCode()
161 R.getReplacementText()); in getReplacementInChangedCode()
194 for (const auto &R : Replaces) { in getCanonicalReplacements() local
196 NewReplaces.push_back(R); in getCanonicalReplacements()
201 if (PrevEnd < R.getOffset()) { in getCanonicalReplacements()
202 NewReplaces.push_back(R); in getCanonicalReplacements()
204 assert(PrevEnd == R.getOffset() && in getCanonicalReplacements()
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Checkers/
HDSValExplainer.h37 bool isThisObject(const SymbolicRegion *R) { in isThisObject() argument
38 if (auto S = dyn_cast<SymbolRegionValue>(R->getSymbol())) in isThisObject()
56 const MemRegion *R = V.getRegion(); in VisitLocMemRegionVal() local
58 if (auto SR = dyn_cast<SymbolicRegion>(R)) { in VisitLocMemRegionVal()
63 return "pointer to " + Visit(R); in VisitLocMemRegionVal()
92 const MemRegion *R = S->getRegion(); in VisitSymbolRegionValue() local
94 if (auto V = dyn_cast<VarRegion>(R)) in VisitSymbolRegionValue()
97 return "initial value of " + Visit(R); in VisitSymbolRegionValue()
140 std::string VisitSymbolicRegion(const SymbolicRegion *R) { in VisitSymbolicRegion() argument
143 if (isThisObject(R)) in VisitSymbolicRegion()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
HDGCNIterativeScheduler.cpp111 for (const auto R : Regions) { in printRegions() local
113 printRegion(OS, R->Begin, R->End, LIS, 1); in printRegions()
114 printLivenessInfo(OS, R->Begin, R->End, LIS); in printRegions()
116 R->MaxPressure.print(OS, &ST); in printRegions()
122 const Region *R, in printSchedResult() argument
125 printRegion(OS, R->Begin, R->End, LIS); in printSchedResult()
126 printSchedRP(OS, R->MaxPressure, RP); in printSchedResult()
149 BuildDAG(const Region &R, GCNIterativeScheduler &_Sch) in BuildDAG() argument
151 auto BB = R.Begin->getParent(); in BuildDAG()
153 Sch.BaseClass::enterRegion(BB, R.Begin, R.End, R.NumRegionInstrs); in BuildDAG()
[all …]
/freebsd-11-stable/contrib/sendmail/cf/mailer/
HDuucp.m435 R<@> $n errors to mailer-daemon
38 R:; <@> $@
40 R$* < @ $* . > $* $1 < @ $2 > $3 strip trailing dots
41 R$* < @ $=w > $1 strip local name
42 R<@ $- . UUCP > : $+ $1 ! $2 convert to UUCP format
43 R<@ $+ > : $+ $1 ! $2 convert to UUCP format
44 R$* < @ $- . UUCP > $2 ! $1 convert to UUCP format
45 R$* < @ $+ > $2 ! $1 convert to UUCP format
46 R$&h ! $+ ! $+ $@ $1 ! $2 $h!...!user => ...!user
47 R$&h ! $+ $@ $&h ! $1 $h!user => $h!user
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
HDCodeGenInstruction.cpp27 CGIOperandList::CGIOperandList(Record *R) : TheDef(R) { in CGIOperandList() argument
32 DagInit *OutDI = R->getValueAsDag("OutOperandList"); in CGIOperandList()
36 PrintFatalError(R->getLoc(), in CGIOperandList()
37 R->getName() + in CGIOperandList()
40 PrintFatalError(R->getLoc(), in CGIOperandList()
41 R->getName() + ": invalid output list: use 'outs'"); in CGIOperandList()
45 DagInit *InDI = R->getValueAsDag("InOperandList"); in CGIOperandList()
48 PrintFatalError(R->getLoc(), in CGIOperandList()
49 R->getName() + in CGIOperandList()
52 PrintFatalError(R->getLoc(), in CGIOperandList()
[all …]

12345678910>>...98