Home
last modified time | relevance | path

Searched refs:R (Results 51 – 75 of 1454) sorted by relevance

12345678910>>...59

/minix/external/bsd/llvm/dist/llvm/test/CodeGen/Generic/
H A Dvector.ll18 store %f1 %R, %f1* %S
26 store %f2 %R, %f2* %S
34 store %f4 %R, %f4* %S
42 store %f8 %R, %f8* %S
50 store %f8 %R, %f8* %S
58 store %f8 %R, %f8* %S
68 store %f4 %R, %f4* %S
75 store %f4 %R, %f4* %S
82 store %f4 %R, %f4* %S
107 ret float %R
[all …]
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/X86/
H A Dvector.ll19 store %f1 %R, %f1* %S
27 store %f2 %R, %f2* %S
35 store %f4 %R, %f4* %S
43 store %f8 %R, %f8* %S
51 store %f8 %R, %f8* %S
59 store %f8 %R, %f8* %S
68 store %f4 %R, %f4* %S
75 store %f4 %R, %f4* %S
82 store %f4 %R, %f4* %S
107 ret float %R
[all …]
H A Dfp_load_fold.ll8 %R = fadd double %X, %Y ; <double> [#uses=1]
9 ret double %R
14 %R = fmul double %X, %Y ; <double> [#uses=1]
15 ret double %R
20 %R = fsub double %X, %Y ; <double> [#uses=1]
21 ret double %R
26 %R = fsub double %Y, %X ; <double> [#uses=1]
27 ret double %R
32 %R = fdiv double %X, %Y ; <double> [#uses=1]
33 ret double %R
[all …]
H A D2009-06-05-VZextByteShort.ll5 ; CHECK: shrl %[[R:[^,]+]]
6 ; CHECK-NEXT: movd %[[R]], %xmm0
18 ; CHECK: shrl %e[[R:.]]x
19 ; CHECK-NEXT: movzwl %[[R]]x, %e[[R]]x
20 ; CHECK-NEXT: movd %e[[R]]x, %xmm0
32 ; CHECK: shrl %e[[R:.]]x
33 ; CHECK-NEXT: movzwl %[[R]]x, %e[[R]]x
34 ; CHECK-NEXT: movd %e[[R]]x, %xmm0
46 ; CHECK: shrl %e[[R:.]]x
47 ; CHECK-NEXT: movzbl %[[R]]l, %e[[R]]x
[all …]
/minix/external/bsd/libc++/dist/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iterator/
H A Dtypes.pass.cpp35 typedef std::move_iterator<It> R; in test() typedef
37 static_assert((std::is_same<typename R::iterator_type, It>::value), ""); in test()
38 …static_assert((std::is_same<typename R::difference_type, typename T::difference_type>::value), ""); in test()
39 static_assert((std::is_same<typename R::pointer, typename T::pointer>::value), ""); in test()
40 static_assert((std::is_same<typename R::value_type, typename T::value_type>::value), ""); in test()
42 static_assert((std::is_same<typename R::reference, typename R::value_type&&>::value), ""); in test()
44 static_assert((std::is_same<typename R::reference, typename T::reference>::value), ""); in test()
46 …static_assert((std::is_same<typename R::iterator_category, typename T::iterator_category>::value),… in test()
/minix/external/bsd/libc++/dist/libcxx/test/iterators/predef.iterators/move.iterators/move.iterator/
H A Dtypes.pass.cpp35 typedef std::move_iterator<It> R; in test() typedef
37 static_assert((std::is_same<typename R::iterator_type, It>::value), ""); in test()
38 …static_assert((std::is_same<typename R::difference_type, typename T::difference_type>::value), ""); in test()
39 static_assert((std::is_same<typename R::pointer, typename T::pointer>::value), ""); in test()
40 static_assert((std::is_same<typename R::value_type, typename T::value_type>::value), ""); in test()
42 static_assert((std::is_same<typename R::reference, typename R::value_type&&>::value), ""); in test()
44 static_assert((std::is_same<typename R::reference, typename T::reference>::value), ""); in test()
46 …static_assert((std::is_same<typename R::iterator_category, typename T::iterator_category>::value),… in test()
/minix/crypto/external/bsd/heimdal/dist/tests/gss/
H A Dcheck-ntlm.in43 R=TEST.H5L.SE
54 kadmin="${TESTS_ENVIRONMENT} ../../kadmin/kadmin -l -r $R"
87 ${R} || exit 1
89 ${kadmin} add -p p1 --use-defaults host/host.test.h5l.se@${R} || exit 1
90 ${kadmin} ext -k ${keytab} host/host.test.h5l.se@${R} || exit 1
92 ${kadmin} add -p kaka --use-defaults digest/${R}@${R} || exit 1
94 ${kadmin} add -p ds --use-defaults digestserver@${R} || exit 1
95 ${kadmin} modify --attributes=+allow-digest digestserver@${R} || exit 1
97 ${kadmin} add -p u1 --use-defaults user1@${R} || exit 1
100 ${kadmin} check ${R} || exit 1
[all …]
/minix/crypto/external/bsd/openssl/dist/crypto/bf/
H A Dbf_locl.h166 # define BF_ENC(LL,R,KEY,Pi) (\ argument
168 t= KEY[BF_ROUNDS+2 + 0 + ((R>>24)&0xFF)], \
169 t+= KEY[BF_ROUNDS+2 + 256 + ((R>>16)&0xFF)], \
170 t^= KEY[BF_ROUNDS+2 + 512 + ((R>>8 )&0xFF)], \
171 t+= KEY[BF_ROUNDS+2 + 768 + ((R )&0xFF)], \
195 # define BF_ENC(LL,R,S,P) ( \ argument
212 # define BF_ENC(LL,R,S,P) ( \ argument
214 LL^=((( S[ ((int)(R>>24)&0xff)] + \
215 S[0x0100+((int)(R>>16)&0xff)])^ \
216 S[0x0200+((int)(R>> 8)&0xff)])+ \
[all …]
/minix/external/bsd/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h255 V[C] = (*this)[R][C]; in getRowAsVector()
263 for (unsigned R = 0; R < Rows; ++R) in getColAsVector() local
264 V[R] = (*this)[R][C]; in getColAsVector()
279 std::fill(Data + (R * Cols), Data + ((R + 1) * Cols), Val); in setRow()
287 for (unsigned R = 0; R < Rows; ++R) in setCol() local
288 (*this)[R][C] = Val; in setCol()
335 return *std::min_element(Data + (R * Cols), Data + ((R + 1) * Cols)); in getRowMin()
342 for (unsigned R = 1; R < Rows; ++R) in getColMin() local
352 std::transform(Data + (R * Cols), Data + ((R + 1) * Cols), in subFromRow()
361 for (unsigned R = 0; R < Rows; ++R) in subFromCol() local
[all …]
/minix/crypto/external/bsd/heimdal/dist/tests/kdc/
H A Dcheck-kpasswdd.in48 R=TEST.H5L.SE
54 kadmin="${kadmin} -l -r $R"
78 echo "Creating database for $R"
83 ${R} || exit 1
85 ${kadmin} add -p foo --use-defaults foo@${R} || exit 1
87 ${kadmin} ext -k ${keytab} ${server}@${R} || exit 1
98 echo "Doing database check for ${R} ${R2}"
99 ${kadmin} check ${R} || exit 1
129 ${test_ap_req} ${server}@${R} ${keytab} ${cache} || \
133 echo "checking ${R}"
[all …]
/minix/external/mit/xorg/lib/libxcb/files/
H A Dxselinux.c275 i.data = ((char *) (R + 1)) + (R->context_len); in xcb_selinux_get_device_create_context_context_end()
487 i.data = ((char *) (R + 1)) + (R->context_len); in xcb_selinux_get_device_context_context_end()
691 i.data = ((char *) (R + 1)) + (R->context_len); in xcb_selinux_get_window_create_context_context_end()
804 i.data = ((char *) (R + 1)) + (R->context_len); in xcb_selinux_get_window_context_context_end()
1120 i.data = ((char *) (R + 1)) + (R->context_len); in xcb_selinux_get_property_create_context_context_end()
1324 i.data = ((char *) (R + 1)) + (R->context_len); in xcb_selinux_get_property_use_context_context_end()
1441 i.data = ((char *) (R + 1)) + (R->context_len); in xcb_selinux_get_property_context_context_end()
1558 i.data = ((char *) (R + 1)) + (R->context_len); in xcb_selinux_get_property_data_context_context_end()
1874 i.data = ((char *) (R + 1)) + (R->context_len); in xcb_selinux_get_selection_create_context_context_end()
2078 i.data = ((char *) (R + 1)) + (R->context_len); in xcb_selinux_get_selection_use_context_context_end()
[all …]
H A Drandr.c159 i.data = ((uint16_t *) (R + 1)) + (R->nRates); in xcb_randr_refresh_rates_rates_end()
517 return (R->nInfo - R->nSizes); in xcb_randr_get_screen_info_rates_length()
526 i.rem = (R->nInfo - R->nSizes); in xcb_randr_get_screen_info_rates_iterator()
1347 i.data = ((int32_t *) (R + 1)) + (R->length); in xcb_randr_query_output_property_valid_values_end()
1763 return (R->num_items * (R->format / 8)); in xcb_randr_get_output_property_data_length()
1770 i.data = ((uint8_t *) (R + 1)) + ((R->num_items * (R->format / 8))); in xcb_randr_get_output_property_data_end()
2524 i.data = ((uint16_t *) (R + 1)) + (R->size); in xcb_randr_get_crtc_gamma_red_end()
3223 i.data = ((char *) (R + 1)) + (R->pending_len); in xcb_randr_get_crtc_transform_pending_filter_name_end()
4307 i.data = ((int32_t *) (R + 1)) + (R->length); in xcb_randr_query_provider_property_valid_values_end()
4723 return (R->num_items * (R->format / 8)); in xcb_randr_get_provider_property_data_length()
[all …]
/minix/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp48 if (!R) {
54 return R;
66 if (!R) {
72 return R;
87 if (!R) {
93 return R;
106 if (!R) {
112 return R;
667 if (R) in getStackLocalsRegion()
680 if (R) in getStackArgumentsRegion()
[all …]
/minix/external/bsd/llvm/dist/llvm/utils/TableGen/
H A DCodeEmitterGen.cpp32 CodeEmitterGen(RecordKeeper &R) : Records(R) {} in CodeEmitterGen() argument
38 void AddCodeToMergeInOperand(Record *R, BitsInit *BI,
67 CodeGenInstruction &CGI = Target.getInstruction(R); in AddCodeToMergeInOperand()
107 errs() << *R; in AddCodeToMergeInOperand()
182 BitsInit *BI = R->getValueAsBitsInit("Inst"); in getInstructionCase()
246 Record *R = CGI->TheDef; in run() local
249 R->getValueAsBit("isPseudo")) { in run()
254 BitsInit *BI = R->getValueAsBitsInit("Inst"); in run()
272 Record *R = *IC; in run() local
274 R->getValueAsBit("isPseudo")) in run()
[all …]
/minix/external/bsd/llvm/dist/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dexample-function.cpp9 template<typename R, typename... Args> class invoker_base {
12 virtual R invoke(Args...) = 0;
16 template<typename F, typename R, typename... Args>
17 class functor_invoker : public invoker_base<R, Args...> {
20 R invoke(Args... args) { return f(args...); } in invoke()
27 template<typename R, typename... Args>
28 class function<R (Args...)> {
30 typedef R result_type;
38 invoker = new functor_invoker<F, R, Args...>(f); in function()
58 invoker_base<R, Args...>* tmp = invoker; in swap()
[all …]
H A Dinjected-class-name.cpp49 template<typename R, typename ...ArgTypes>
50 struct X<R(ArgTypes...)> {
51 X<R(ArgTypes...)> f();
54 template<typename R, typename ...ArgTypes>
55 X<R(ArgTypes...)> X<R(ArgTypes...)>::f() { return *this; } in f()
65 template<typename R, typename ...ArgTypes>
66 struct X1<R(ArgTypes...)> {
70 template<typename R, typename ...ArgTypes>
71 unsigned_c<sizeof(1 + g(ArgTypes()...))> X1<R(ArgTypes...)>::f() { in f()
/minix/external/bsd/llvm/dist/clang/lib/Frontend/Rewrite/
H A DHTMLPrint.cpp34 Rewriter R; member in __anon009b41670111::HTMLPrinter
59 R.setSourceMgr(context.getSourceManager(), context.getLangOpts()); in Initialize()
67 FileID FID = R.getSourceMgr().getMainFileID(); in HandleTranslationUnit()
68 const FileEntry* Entry = R.getSourceMgr().getFileEntryForID(FID); in HandleTranslationUnit()
76 Name = R.getSourceMgr().getBuffer(FID)->getBufferIdentifier(); in HandleTranslationUnit()
78 html::AddLineNumbers(R, FID); in HandleTranslationUnit()
79 html::AddHeaderFooterInternalBuiltinCSS(R, FID, Name); in HandleTranslationUnit()
85 if (SyntaxHighlight) html::SyntaxHighlight(R, FID, PP); in HandleTranslationUnit()
86 if (HighlightMacros) html::HighlightMacros(R, FID, PP); in HandleTranslationUnit()
87 html::EscapeText(R, FID, false, true); in HandleTranslationUnit()
[all …]
/minix/external/bsd/byacc/dist/
H A Dwarshall.c11 transitive_closure(unsigned *R, int n) in transitive_closure() argument
24 relend = R + n * rowsize; in transitive_closure()
26 cword = R; in transitive_closure()
28 rowi = R; in transitive_closure()
32 rowj = R; in transitive_closure()
62 reflexive_transitive_closure(unsigned *R, int n) in reflexive_transitive_closure() argument
69 transitive_closure(R, n); in reflexive_transitive_closure()
72 relend = R + n * rowsize; in reflexive_transitive_closure()
75 rp = R; in reflexive_transitive_closure()
/minix/external/bsd/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h47 const MemRegion *R; variable
212 Kind k = R->getKind(); in classof()
224 Kind k = R->getKind(); in classof()
270 Kind k = R->getKind(); in classof()
376 Kind k = R->getKind(); in classof()
668 assert((R == nullptr) == (I.R == nullptr));
669 return I.R == R;
672 assert((R == nullptr) == (I.R == nullptr));
673 return I.R != R;
676 ++R;
[all …]
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/SPARC/
H A D2009-08-28-PIC.ll22 ; V8UNOPT: sethi %hi(_GLOBAL_OFFSET_TABLE_+{{.+}}), [[R:%[goli][0-7]]]
23 ; V8UNOPT: or [[R]], %lo(_GLOBAL_OFFSET_TABLE_+{{.+}}), [[R]]
24 ; V8UNOPT: add [[R]], %o7, [[R]]
25 ; V8UNOPT: st [[R]], [%fp+{{.+}}]
28 ; V9UNOPT: sethi %hi(_GLOBAL_OFFSET_TABLE_+{{.+}}), [[R:%[goli][0-7]]]
29 ; V9UNOPT: or [[R]], %lo(_GLOBAL_OFFSET_TABLE_+{{.+}}), [[R]]
30 ; V9UNOPT: add [[R]], %o7, [[R]]
31 ; V9UNOPT: stx [[R]], [%fp+{{.+}}]
/minix/external/bsd/llvm/dist/llvm/test/Transforms/ConstProp/
H A Dremtest.ll6 %R = srem i32 4, 3 ; <i32> [#uses=1]
7 ret i32 %R
11 %R = srem i32 123, -23 ; <i32> [#uses=1]
12 ret i32 %R
16 %R = frem float 0x4028E66660000000, 0x405ECDA1C0000000 ; <float> [#uses=1]
17 ret float %R
21 %R = frem double 0x4073833BEE07AFF8, 0x4028AAABB2A0D19C ; <double> [#uses=1]
22 ret double %R
/minix/external/bsd/llvm/dist/llvm/test/Transforms/InstCombine/
H A Dload-cmp.ll27 ret i1 %R
41 ret i1 %R
54 ret i1 %R
79 ret i1 %R
89 ret i1 %R
104 ret i1 %R
122 ret i1 %R
142 ret i1 %R
160 ret i1 %R
176 ret i1 %R
[all …]
/minix/external/bsd/llvm/dist/llvm/test/CodeGen/ARM/
H A Dselect-imm.ll18 ; ARMT2: movwgt [[R]], #123
22 ; THUMB2: movgt [[R]], #123
32 ; ARM: mov [[R:r[0-9]+]], #101
33 ; ARM: orr [[R]], [[R]], #256
34 ; ARM: movle [[R]], #123
38 ; ARMT2: movwgt [[R]], #357
42 ; THUMB2: movwgt [[R]], #357
52 ; ARM: mov [[R:r[0-1]]], #0
53 ; ARM: moveq [[R]], #1
57 ; ARMT2: movweq [[R]], #1
[all …]
/minix/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DTypeBuilder.h247 template<typename R, bool cross> class TypeBuilder<R(), cross> {
253 template<typename R, typename A1, bool cross> class TypeBuilder<R(A1), cross> {
264 class TypeBuilder<R(A1, A2), cross> {
276 class TypeBuilder<R(A1, A2, A3), cross> {
291 class TypeBuilder<R(A1, A2, A3, A4), cross> {
307 class TypeBuilder<R(A1, A2, A3, A4, A5), cross> {
322 template<typename R, bool cross> class TypeBuilder<R(...), cross> {
328 template<typename R, typename A1, bool cross>
329 class TypeBuilder<R(A1, ...), cross> {
339 class TypeBuilder<R(A1, A2, ...), cross> {
[all …]
/minix/external/bsd/libc++/dist/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iterator/
H A Dtypes.pass.cpp45 typedef std::front_insert_iterator<C> R; in test() typedef
49 static_assert((std::is_same<typename R::container_type, C>::value), ""); in test()
50 static_assert((std::is_same<typename R::value_type, void>::value), ""); in test()
51 static_assert((std::is_same<typename R::difference_type, void>::value), ""); in test()
52 static_assert((std::is_same<typename R::reference, R&>::value), ""); in test()
53 static_assert((std::is_same<typename R::pointer, void>::value), ""); in test()
54 … static_assert((std::is_same<typename R::iterator_category, std::output_iterator_tag>::value), ""); in test()

12345678910>>...59