| /external/llvm/test/Transforms/ObjCARC/ |
| weak-contract.ll | 8 ; CHECK-NEXT: store i8* null, i8** %p 9 ; CHECK-NEXT: ret i8* null 10 ; CHECK-NEXT: }
|
| /external/mesa3d/src/gallium/drivers/r300/compiler/ |
| radeon_list.c | 15 * next paragraph) shall be included in all copies or substantial 39 new->Next = NULL; 54 for (temp = *list; temp->Next; temp = temp->Next); 56 temp->Next = new_value; 63 *list = rm_value->Next; 67 rm_value->Prev->Next = rm_value->Next; 68 if (rm_value->Next) { 69 rm_value->Next->Prev = rm_value->Prev [all...] |
| /external/qemu/distrib/sdl-1.2.15/docs/man3/ |
| SDL_WaitEvent.3 | 3 SDL_WaitEvent \- Waits indefinitely for the next available event\&. 11 Waits indefinitely for the next available event, returning \fB1\fR, or \fB0\fR if there was an error while waiting for events\&. 13 If \fBevent\fR is not \fBNULL\fP, the next event is removed from the queue and stored in that area\&.
|
| /frameworks/compile/libbcc/tests/debuginfo/host-tests/ |
| forward-declare-class.cpp | 10 // CHECK-NEXT: public: 11 // CHECK-NEXT: int MyData; 12 // CHECK-NEXT: }
|
| /hardware/qcom/camera/QCamera2/stack/common/ |
| cam_list.h | 43 struct cam_list *next, *prev; member in struct:cam_list 48 ptr->next = ptr; 58 item->next = head; 60 prev->next = item; 66 item->next = node; 68 item->prev->next = item; 75 struct cam_list *next = ptr->next; local 77 next->prev = ptr->prev; 78 prev->next = ptr->next [all...] |
| /external/chromium_org/third_party/openssl/openssl/crypto/pqueue/ |
| pqueue.c | 79 item->next = NULL; 113 pitem *curr, *next; local 121 for(curr = NULL, next = pq->items; 122 next != NULL; 123 curr = next, next = next->next) 127 int cmp = memcmp(next->priority, item->priority,8); 128 if (cmp > 0) /* next > item * 170 pitem *next; local [all...] |
| /external/chromium_org/third_party/skia/src/utils/ |
| SkNWayCanvas.cpp | 51 bool next() { function in class:SkNWayCanvas::Iter 68 while (iter.next()) { 77 while (iter.next()) { 85 while (iter.next()) { 93 while (iter.next()) { 101 while (iter.next()) { 109 while (iter.next()) { 117 while (iter.next()) { 125 while (iter.next()) { 133 while (iter.next()) { [all...] |
| /external/clang/test/Index/ |
| complete-preprocessor.m | 18 // CHECK-CC1-NEXT: NotImplemented:{TypedText define}{HorizontalSpace }{Placeholder macro}{LeftParen (}{Placeholder args}{RightParen )} (40) 19 // CHECK-CC1-NEXT: NotImplemented:{TypedText error}{HorizontalSpace }{Placeholder message} (40) 20 // CHECK-CC1-NEXT: NotImplemented:{TypedText if}{HorizontalSpace }{Placeholder condition} (40) 21 // CHECK-CC1-NEXT: NotImplemented:{TypedText ifdef}{HorizontalSpace }{Placeholder macro} (40) 22 // CHECK-CC1-NEXT: NotImplemented:{TypedText ifndef}{HorizontalSpace }{Placeholder macro} (40) 23 // CHECK-CC1-NEXT: NotImplemented:{TypedText import}{HorizontalSpace }{Text "}{Placeholder header}{Text "} (40) 24 // CHECK-CC1-NEXT: NotImplemented:{TypedText import}{HorizontalSpace }{Text <}{Placeholder header}{Text >} (40) 25 // CHECK-CC1-NEXT: NotImplemented:{TypedText include}{HorizontalSpace }{Text "}{Placeholder header}{Text "} (40) 26 // CHECK-CC1-NEXT: NotImplemented:{TypedText include}{HorizontalSpace }{Text <}{Placeholder header}{Text >} (40) 27 // CHECK-CC1-NEXT: NotImplemented:{TypedText include_next}{HorizontalSpace }{Text "}{Placeholder header}{Text "} (4 (…) [all...] |
| comment-to-html-xml-conversion.cpp | 32 // CHECK-NEXT: CommentAST=[ 33 // CHECK-NEXT: (CXComment_FullComment 34 // CHECK-NEXT: (CXComment_Paragraph 35 // CHECK-NEXT: (CXComment_Text Text=[ Aaa.])))] 41 // CHECK-NEXT: CommentAST=[ 42 // CHECK-NEXT: (CXComment_FullComment 43 // CHECK-NEXT: (CXComment_Paragraph IsWhitespace 44 // CHECK-NEXT: (CXComment_Text Text=[ ] IsWhitespace)) 45 // CHECK-NEXT: (CXComment_BlockCommand CommandName=[brief] 46 // CHECK-NEXT: (CXComment_Paragrap [all...] |
| /external/llvm/test/CodeGen/X86/ |
| viabs.ll | 9 ; SSE2-NEXT: padd 10 ; SSE2-NEXT: pxor 11 ; SSE2-NEXT: ret 15 ; SSSE3-NEXT: ret 19 ; AVX2-NEXT: ret 30 ; SSE2-NEXT: padd 31 ; SSE2-NEXT: pxor 32 ; SSE2-NEXT: ret 36 ; SSSE3-NEXT: ret 40 ; AVX2-NEXT: re [all...] |
| /external/llvm/test/Transforms/LoopStrengthReduce/ |
| uglygep.ll | 25 ; CHECK-NEXT: %t7 = icmp eq i64 %t4, 0 27 ; CHECK-NEXT: [[SCEVGEP:%[^ ]+]] = getelementptr i8* undef, i64 %t4 28 ; CHECK-NEXT: br label %bb14 35 ; CHECK-NEXT: store i8 undef, i8* [[SCEVGEP]] 36 ; CHECK-NEXT: %t6 = load float** undef 38 ; CHECK-NEXT: [[SCEVGEP1:%[^ ]+]] = getelementptr float* %t6, i64 4 39 ; CHECK-NEXT: [[SCEVGEP2:%[^ ]+]] = bitcast float* [[SCEVGEP1]] to i8* 41 ; CHECK-NEXT: [[ADDRESS:%[^ ]+]] = getelementptr i8* [[SCEVGEP2]], i64 %t4 42 ; CHECK-NEXT: store i8 undef, i8* [[ADDRESS]] 43 ; CHECK-NEXT: br label %bb1 [all...] |
| /external/openssl/crypto/pqueue/ |
| pqueue.c | 79 item->next = NULL; 113 pitem *curr, *next; local 121 for(curr = NULL, next = pq->items; 122 next != NULL; 123 curr = next, next = next->next) 127 int cmp = memcmp(next->priority, item->priority,8); 128 if (cmp > 0) /* next > item * 170 pitem *next; local [all...] |
| /external/skia/src/utils/ |
| SkNWayCanvas.cpp | 51 bool next() { function in class:SkNWayCanvas::Iter 68 while (iter.next()) { 77 while (iter.next()) { 85 while (iter.next()) { 93 while (iter.next()) { 101 while (iter.next()) { 109 while (iter.next()) { 117 while (iter.next()) { 125 while (iter.next()) { 133 while (iter.next()) { [all...] |
| /external/clang/test/CodeGenObjCXX/ |
| arc-references.mm | 13 // CHECK-NEXT: call i8* @objc_retainAutoreleasedReturnValue 18 // CHECK-NEXT: call i8* @objc_retainAutoreleasedReturnValue 19 // CHECK-NEXT: call i8* @objc_autorelease 24 // CHECK-NEXT: ret 42 // CHECK-NEXT: store i8** 44 // CHECK-NEXT: call void @_Z6calleev() 46 // CHECK-NEXT: call void @objc_destroyWeak 47 // CHECK-NEXT: ret void 66 // CHECK-NEXT: [[OBJ_A:%.*]] = bitcast i8* [[OBJ_ID]] to [[A:%[a-zA-Z0-9]+]]* 67 // CHECK-NEXT: store [[A]]* [[OBJ_A]], [[A]]** [[REFTMP:%[a-zA-Z0-9]+] [all...] |
| /external/tcpdump/ |
| cpack.c | 52 /* Advance to the next wordsize boundary. Return NULL if fewer than 59 u_int8_t *next; local 62 next = cpack_next_boundary(cs->c_buf, cs->c_next, wordsize); 65 if (next - cs->c_buf + wordsize > cs->c_len) 68 return next; 87 u_int8_t *next; local 89 if ((next = cpack_align_and_reserve(cs, sizeof(*u))) == NULL) 92 *u = EXTRACT_LE_64BITS(next); 95 cs->c_next = next + sizeof(*u); 103 u_int8_t *next; local 119 u_int8_t *next; local [all...] |
| /external/clang/test/CodeGenCXX/ |
| blocks.cpp | 124 // CHECK-NEXT: store i8* [[BLOCKDESC:%.*]], i8** {{.*}}, align 8 125 // CHECK-NEXT: load i8* 126 // CHECK-NEXT: bitcast i8* [[BLOCKDESC]] to <{ i8*, i32, i32, i8*, %struct.__block_descriptor* }>* 128 // CHECK-NEXT: call void @_ZN5test43fooENS_1AE([[A]]* [[TMP]]) 129 // CHECK-NEXT: call void @_ZN5test41AD1Ev([[A]]* [[TMP]]) 130 // CHECK-NEXT: ret void 152 // CHECK-NEXT: [[X:%.*]] = alloca [[A:%.*]], align 4 153 // CHECK-NEXT: [[B:%.*]] = alloca void ()*, align 8 154 // CHECK-NEXT: [[BLOCK:%.*]] = alloca [[BLOCK_T:.*]], align 8 155 // CHECK-NEXT: [[CLEANUP_ACTIVE:%.*]] = alloca i [all...] |
| delete.cpp | 25 // CHECK-NEXT: bitcast 26 // CHECK-NEXT: call void @_ZdlPv 52 // CHECK-NEXT: bitcast 53 // CHECK-NEXT: call void @_ZN5test01AdlEPv 71 // CHECK-NEXT: br i1 74 // CHECK-NEXT: [[T0:%.*]] = bitcast [[A]]* [[BEGIN]] to i8* 75 // CHECK-NEXT: [[ALLOC:%.*]] = getelementptr inbounds i8* [[T0]], i64 -8 76 // CHECK-NEXT: [[T1:%.*]] = bitcast i8* [[ALLOC]] to i64* 77 // CHECK-NEXT: [[COUNT:%.*]] = load i64* [[T1]] 79 // CHECK-NEXT: [[ISEMPTY:%.*]] = icmp eq [[A]]* [[BEGIN]], [[END] [all...] |
| /external/clang/test/Frontend/ |
| verify.c | 52 // CHECK2-NEXT: Line 41: define_error 53 // CHECK2-NEXT: Line 43: line_error 54 // CHECK2-NEXT: error: 'error' diagnostics seen but not expected: 55 // CHECK2-NEXT: Line 43: #line directive requires a positive integer argument 56 // CHECK2-NEXT: Line 44: AAA // expected-error {{[{][{]BBB[}][}]}} <- this shall be part of diagnostic 57 // CHECK2-NEXT: error: 'warning' diagnostics expected but not seen: 58 // CHECK2-NEXT: Line 42: undef_error 59 // CHECK2-NEXT: error: 'warning' diagnostics seen but not expected: 60 // CHECK2-NEXT: Line 42: extra tokens at end of #undef directive 61 // CHECK2-NEXT: Line 45: CCC // expected-warning {{[{][{]DDD[}][}]}} <- this shall be part of diagnosti [all...] |
| /external/chromium_org/third_party/WebKit/Tools/Scripts/ |
| check-for-global-initializers | 74 next if defined $fileAge && $fileAge > $buildTimestampAge; 79 next; 102 next if $shortName eq "AllInOneFile.o"; 103 next if $shortName eq "Opcode.o"; 104 next if $shortName eq "Structure.o"; 105 next if $shortName eq "nodes.o"; 108 next if $shortName eq "BidiRun.o"; 109 next if $shortName eq "CachedPage.o"; 110 next if $shortName eq "CachedResource.o"; 111 next if $shortName eq "FEGaussianBlur.o" [all...] |
| /hardware/ti/wlan/lib/ |
| shlist.c | 13 listPtr->next = listPtr; 21 for(item=head->next;( item != head );item=item->next) 44 if( head->next != head ) 45 return( head->next ); 54 for(i=0,item=head->next;( (i < num) && (item != head) );i++,item=item->next); 64 if( item->next != head ) 65 return( item->next ); 85 (item->prev)->next = item->next [all...] |
| /libcore/luni/src/test/java/libcore/xml/ |
| PullParserDtdTest.java | 41 while (parser.next() != XmlPullParser.END_DOCUMENT) { 64 assertEquals(XmlPullParser.START_TAG, parser.next()); 65 assertEquals(XmlPullParser.TEXT, parser.next()); 67 assertEquals(XmlPullParser.END_TAG, parser.next()); 68 assertEquals(XmlPullParser.END_DOCUMENT, parser.next()); 76 assertEquals(XmlPullParser.START_TAG, parser.next()); 77 assertEquals(XmlPullParser.TEXT, parser.next()); 79 assertEquals(XmlPullParser.END_TAG, parser.next()); 80 assertEquals(XmlPullParser.END_DOCUMENT, parser.next()); 86 assertEquals(XmlPullParser.START_TAG, parser.next()); [all...] |
| /dalvik/dx/tests/031-bb-dead-code/ |
| info.txt | 3 that *doesn't* flow to the next instruction.
|
| /development/cmds/monkey/ |
| example_script.txt | 6 # Hit Next 11 # Hit Next 16 # Hit Next 52 # Select next
|
| /external/checkpolicy/ |
| checkpolicy.h | 13 struct te_assert *next; member in struct:te_assert
|
| /external/chromium_org/content/test/plugin/ |
| resource.h | 6 // Next default values for new objects
|