/external/clang/test/SemaObjCXX/ |
arc-object-init-destroy.mm | 5 void test_pseudo_destructors(__strong id *sptr, __weak id *wptr) { 6 sptr->~id(); // okay 8 sptr->~strong_id(); // okay 10 sptr->~weak_id(); // expected-error{{pseudo-destructor destroys object of type '__strong id' with inconsistently-qualified type 'weak_id' (aka '__weak id')}} 13 sptr->id::~id(); // okay 17 void test_delete(__strong id *sptr, __weak id *wptr) { 18 delete sptr; 20 delete [] sptr; // expected-warning{{destroying an array of '__strong id'; this array must not have been allocated from non-ARC code}}
|
/external/webrtc/src/common_audio/signal_processing_library/main/source/ |
get_scaling_square.c | 26 WebRtc_Word16 *sptr = in_vector; local 32 sabs = (*sptr > 0 ? *sptr++ : -*sptr++);
|
/external/llvm/test/Feature/ |
testalloca.ll | 13 %sptr = alloca %struct ; <%struct*> [#uses=2] 14 %nsptr = getelementptr %struct* %sptr, i64 0, i32 1 ; <%inners*> [#uses=1] 18 %fptr = getelementptr %struct* %sptr, i64 0, i32 1, i32 0 ; <float*> [#uses=1]
|
/external/opencv/cv/src/ |
cvmorph.cpp | 540 const arrtype* sptr = src[1] + i; \ 541 worktype s0 = sptr[0], s1 = sptr[1], \ 542 s2 = sptr[2], s3 = sptr[3], t0, t1; \ 546 sptr = src[k] + i; \ 547 t0 = sptr[0]; t1 = sptr[1]; \ 550 t0 = sptr[2]; t1 = sptr[3]; [all...] |
cvfilter.cpp | 443 uchar *sptr = 0, *dptr; 538 sptr = src->data.ptr + src_y1*src->step + src_x*pix_size; 545 delta = fill_cyclic_buffer( sptr, src->step, src_y, src_y1, src_y2 ); 548 sptr += src->step*delta; [all...] |
cvimgwarp.cpp | 1906 const uchar* sptr = sptr0 + sstep*yi + xi; local 1925 const uchar* sptr = sptr0 + sstep*yi + xi*3; local 1952 const uchar* sptr = sptr0 + sstep*yi + xi*3; local [all...] |
cvstereobm.cpp | 115 const uchar* sptr = src->data.ptr; local 125 vsum[x] = (ushort)(sptr[x]*(wsz2 + 2)); 130 vsum[x] = (ushort)(vsum[x] + sptr[srcstep*y + x]); 135 const uchar* top = sptr + srcstep*MAX(y-wsz2-1,0); 136 const uchar* bottom = sptr + srcstep*MIN(y+wsz2,size.height-1); 137 const uchar* prev = sptr + srcstep*MAX(y-1,0); 138 const uchar* curr = sptr + srcstep*y; 139 const uchar* next = sptr + srcstep*MIN(y+1,size.height-1);
|
cvsegmentation.cpp | 401 uchar* sptr = src->data.ptr; local 439 for( i = 0; i < size.height; i++, sptr += sstep - size.width*3, 443 for( j = 0; j < size.width; j++, sptr += 3, dptr += 3 ) 451 c0 = sptr[0], c1 = sptr[1], c2 = sptr[2]; 468 ptr = sptr + (miny - i)*sstep + (minx - j)*3;
|
cvstereogc.cpp | 454 const uchar* sptr = src->data.ptr + sstep*y; local 455 const uchar* sptr_prev = y > 0 ? sptr - sstep : sptr; 456 const uchar* sptr_next = y < rows-1 ? sptr + sstep : sptr; 458 int v_prev = sptr[0]; 462 int v = sptr[x], v1, minv = v, maxv = v; 472 v1 = (v + sptr[x+1])/2;
|
cvsmooth.cpp | [all...] |
/external/clang/test/CodeGenObjCXX/ |
arc-new-delete.mm | 57 void test_delete(__strong id *sptr, __weak id *wptr) { 62 delete sptr; 72 void test_array_delete(__strong id *sptr, __weak id *wptr) { 83 delete [] sptr;
|
/external/mesa3d/src/pixelflinger2/ |
llvm_scanline.cpp | 30 Value * sPtr, Value * sRef) 33 Value * s = builder.CreateLoad(sPtr, "stenciOpS"); 36 builder.CreateStore(builder.getInt8(0), sPtr); 39 builder.CreateStore(s, sPtr); 42 builder.CreateStore(sRef, sPtr); 46 builder.CreateStore(s, sPtr); 48 builder.CreateStore(builder.CreateAdd(s, builder.getInt8(1)), sPtr); 53 builder.CreateStore(s, sPtr); 55 builder.CreateStore(builder.CreateSub(s, builder.getInt8(1)), sPtr); 59 builder.CreateStore(builder.CreateNot(s), sPtr); [all...] |
llvm_texture.cpp | 397 Value * sPtr = builder.CreateAlloca(floatType); 412 builder.CreateStore(builder.CreateFNeg(texcoords[2]), sPtr); 419 builder.CreateStore((texcoords[2]), sPtr); 439 builder.CreateStore((texcoords[0]), sPtr); 446 builder.CreateStore(texcoords[0], sPtr); 462 builder.CreateStore((texcoords[0]), sPtr); 469 builder.CreateStore(builder.CreateFNeg(texcoords[0]), sPtr); 485 Value * s = builder.CreateLoad(sPtr);
|
/external/qemu/ |
osdep.c | 192 int vasprintf( char **sptr, char *fmt, va_list argv ) 194 int wanted = vsnprintf( *sptr = NULL, 0, fmt, argv ); 195 if( (wanted > 0) && ((*sptr = malloc( 1 + wanted )) != NULL) ) 196 return vsprintf( *sptr, fmt, argv ); 201 int asprintf( char **sptr, char *fmt, ... ) 206 retval = vasprintf( sptr, fmt, argv );
|
/external/jpeg/ |
jmemmgr.c | 589 jvirt_sarray_ptr sptr; local 598 for (sptr = mem->virt_sarray_list; sptr != NULL; sptr = sptr->next) { 599 if (sptr->mem_buffer == NULL) { /* if not realized yet */ 600 space_per_minheight += (long) sptr->maxaccess * 601 (long) sptr->samplesperrow * SIZEOF(JSAMPLE); 602 maximum_space += (long) sptr->rows_in_array * 603 (long) sptr->samplesperrow * SIZEOF(JSAMPLE) 947 jvirt_sarray_ptr sptr; local [all...] |
/external/webkit/Tools/android/flex-2.5.4a/ |
misc.c | 558 int sptr = 1; local 560 while ( isascii( array[sptr] ) && 561 isdigit( array[sptr] ) ) 566 ++sptr; 568 c = array[sptr]; 569 array[sptr] = '\0'; 573 array[sptr] = c; 580 int sptr = 2; local 582 while ( isascii( array[sptr] ) && 583 isxdigit( (char) array[sptr] ) ) [all...] |
/external/hyphenation/ |
csutil.h | 14 char * mystrsep(char ** sptr, const char delim);
|
/external/qemu/distrib/libpng-1.2.19/ |
pngvcrd.c | 976 png_bytep sptr; local 985 sptr = png_ptr->row_buf + 1 + offset_table[png_ptr->pass]* 993 png_memcpy(dp, sptr, pixel_bytes); 994 sptr += incr1; 1211 png_bytep sptr, dp; local [all...] |
pnggccrd.c | 2251 png_bytep sptr, dp; local [all...] |
pngrutil.c | 2985 png_bytep sptr, dp; local [all...] |
/external/clang/test/PCH/ |
exprs.c | 72 compound_literal *sptr = &s; variable
|
/external/opencv/cxcore/src/ |
cxutils.cpp | 720 const float* sptr = s->data.fl; local 727 v = sptr[i]; 735 v = fabs((double)sptr[i]); 741 v = fabs((double)sptr[i]); 747 dptr[i] = (float)(sptr[i]*norm); 753 const double* sptr = s->data.db; local 760 v = sptr[i]; 768 v = fabs(sptr[i]); 774 v = fabs(sptr[i]); 780 dptr[i] = sptr[i]*norm 1169 const uchar* sptr = src->data.ptr + i*sstep; local 1181 const uchar* sptr = src->data.ptr + sstep*i; local [all...] |
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
Blend.cpp | 846 PyramidShort *sptr = m_pFrameYPyr; local 856 for (int n = m_wb.nlevs; n--; dscale++, dptr++, sptr++, dvptr++, duptr++, svptr++, suptr++, nC--) 952 if(inSegment(x1, sptr->width, BORDER-1) && 953 inSegment(y1, sptr->height, BORDER-1)) 958 wt1 * ciCalc(sptr, x1, y1, xfrac, yfrac)); [all...] |
/external/libxml2/ |
chvalid.c | 170 const xmlChSRange *sptr; local 179 sptr = rptr->shortRange; 182 if ((unsigned short) val < sptr[mid].low) { 185 if ((unsigned short) val > sptr[mid].high) {
|
/frameworks/compile/linkloader/include/impl/ |
ELFObject.hxx | 115 ELFSectionTy const *sptr = const_this->getSectionByName(str); local 117 return const_cast<ELFSectionTy *>(sptr);
|