Searched refs:blk1 (Results 1 – 6 of 6) sorted by relevance
/external/clang/test/SemaObjCXX/ |
D | arc-nsconsumed-errors.mm | 5 typedef void (^blk1)(__attribute((ns_consumed))id, __attribute((ns_consumed)) id); 14 blk1 a1 = ^void (__attribute((ns_consumed)) id, id){}; // expected-error {{cannot initialize a vari… 16 blk1 b2 = ^void (id, __attribute((ns_consumed)) id){}; // expected-error {{cannot initialize a vari… 18 blk1 c3 = ^void (__attribute((ns_consumed)) id, __attribute((ns_consumed)) id){}; 20 blk1 d4 = ^void (id, id) {}; // expected-error {{cannot initialize a variable of type '__strong blk…
|
/external/clang/test/SemaObjC/ |
D | arc-nsconsumed-errors.m | 5 typedef void (^blk1)(__attribute((ns_consumed))id arg1, __attribute((ns_consumed)) id arg2); 14 blk1 a1 = ^void (__attribute((ns_consumed)) id arg1, id arg2){}; // expected-error {{incompatible b… 16 blk1 b2 = ^void (id arg1, __attribute((ns_consumed)) id arg2){}; // expected-error {{incompatible b… 18 blk1 c3 = ^void (__attribute((ns_consumed)) id arg1, __attribute((ns_consumed)) id arg2){}; 20 blk1 d4 = ^void (id arg1, id arg2) {}; // expected-error {{incompatible block pointer types initial…
|
/external/clang/test/CodeGen/ |
D | inline-asm-mrv.c | 4 int sad16_sse2(void *v, unsigned char *blk2, unsigned char *blk1, in sad16_sse2() argument 8 : "+r" (h), "+r" (blk1), "+r" (blk2) in sad16_sse2() 10 asm volatile("set %0 %1" : "=r"(ret) : "r"(blk1)); in sad16_sse2()
|
/external/llvm/test/CodeGen/X86/ |
D | inline-asm-mrv.ll | 10 define i32 @test1(i8* %v, i8* %blk2, i8* %blk1, i32 %stride, i32 %h) nounwind { 13 "=r,=r,=r,r,r,r,r"( i64 %tmp12, i32 %h, i8* %blk1, i8* %blk2 ) nounwind
|
/external/llvm/test/Transforms/SLPVectorizer/AArch64/ |
D | horizontal.ll | 13 define i32 @test_select(i32* noalias nocapture readonly %blk1, i32* noalias nocapture readonly %blk… 26 %p1.023 = phi i32* [ %blk1, %for.body.lr.ph ], [ %add.ptr, %for.body ] 91 define i32 @reduction_with_br(i32* noalias nocapture readonly %blk1, i32* noalias nocapture readonl… 108 %p1.017 = phi i32* [ %blk1, %for.body.lr.ph ], [ %add.ptr, %if.end ] 153 define i32 @test_unrolled_select(i8* noalias nocapture readonly %blk1, i8* noalias nocapture readon… 166 %p1.044 = phi i8* [ %blk1, %for.body.lr.ph ], [ %add.ptr, %if.end.86 ]
|
/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDILCFGStructurizer.cpp | 2229 BlockT *blk1 = *srcBlk->succ_begin(); in removeRedundantConditionalBranch() local 2232 if (blk1 == blk2) { in removeRedundantConditionalBranch() 2240 SHOWNEWBLK(blk1, "Removing redundant successor"); in removeRedundantConditionalBranch() 2241 srcBlk->removeSuccessor(blk1); in removeRedundantConditionalBranch() 2573 CFGStructurizer<PassT>::findNearestCommonPostDom(BlockT *blk1, BlockT *blk2) { in findNearestCommonPostDom() argument 2575 if (postDomTree->dominates(blk1, blk2)) { in findNearestCommonPostDom() 2576 return blk1; in findNearestCommonPostDom() 2578 if (postDomTree->dominates(blk2, blk1)) { in findNearestCommonPostDom() 2582 DomTreeNodeT *node1 = postDomTree->getNode(blk1); in findNearestCommonPostDom() 2586 if (node1 == NULL && blk1->succ_size() == 1) { in findNearestCommonPostDom() [all …]
|