/external/javassist/src/main/javassist/bytecode/ |
ByteArray.java | 66 * @param isrc the index into the source byte array. 70 static void copy32bit(byte[] src, int isrc, byte[] dest, int idest) { 71 dest[idest] = src[isrc]; 72 dest[idest + 1] = src[isrc + 1]; 73 dest[idest + 2] = src[isrc + 2]; 74 dest[idest + 3] = src[isrc + 3];
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
registers1.cpp | 44 int *isrc = &int_src[level * num_vars]; local 45 int i00 = *isrc++ + 1; 46 int i01 = *isrc++ + 1; 47 int i02 = *isrc++ + 1; 48 int i03 = *isrc++ + 1; 49 int i04 = *isrc++ + 1; 50 int i05 = *isrc++ + 1; 51 int i06 = *isrc++ + 1; 52 int i07 = *isrc++ + 1; 53 int i08 = *isrc++ + 1 128 int *isrc = &int_src[throw_to * num_vars]; local [all...] |
/ndk/tests/device/test-stlport_static-exception/jni/ |
registers1.cpp | 44 int *isrc = &int_src[level * num_vars]; local 45 int i00 = *isrc++ + 1; 46 int i01 = *isrc++ + 1; 47 int i02 = *isrc++ + 1; 48 int i03 = *isrc++ + 1; 49 int i04 = *isrc++ + 1; 50 int i05 = *isrc++ + 1; 51 int i06 = *isrc++ + 1; 52 int i07 = *isrc++ + 1; 53 int i08 = *isrc++ + 1 128 int *isrc = &int_src[throw_to * num_vars]; local [all...] |
/external/chromium_org/third_party/cld/encodings/compact_lang_det/ |
compact_lang_det_impl.h | 168 int CheapSqueezeInplace(char* isrc, int srclen, int ichunksize);
|
cldutil.cc | 425 const char* isrc, int srclen, int advance_by, 427 const char* src = isrc; 489 int len = src - isrc; 494 int consumed2 = reinterpret_cast<const char*>(usrc) - isrc; 501 // Score all bigrams in isrc, using languages that have bigrams (CJK) 504 const char* isrc, int srclen, Tote* chunk_tote) { 506 const char* src = isrc; 562 const char* isrc, int srclen, int advance_by, 564 const char* src = isrc; 652 int len = src - isrc; [all...] |
cldutil.h | [all...] |
getonescriptspan.cc | 219 int ScanToPossibleLetter(const char* isrc, int len) { 220 const uint8* src = reinterpret_cast<const uint8*>(isrc); 245 int offset = src - reinterpret_cast<const uint8*>(isrc); 246 // printf("ScanToPossibleLetter error at %d[%d] in '%s'\n",offset,e,isrc); 250 while ((0 < offset) && (isrc[offset] != '<')) { 259 return src - reinterpret_cast<const uint8*>(isrc);
|
compact_lang_det_impl.cc | [all...] |
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/ |
cld_utf8statetable.cc | 139 const uint8* isrc = str; local 141 const uint8* src = isrc; 143 const uint8* srclimit = isrc + len; 208 do {src--;} while ((src > isrc) && ((src[0] & 0xc0) == 0x80)); 213 do {src--;} while ((src > isrc) && ((src[0] & 0xc0) == 0x80)); 224 *bytes_consumed = src - isrc;
|
/external/opencv/cv/src/ |
cvutils.cpp | 152 const int* isrc = (const int*)src; local 165 if( idst + left != isrc ) 167 idst[j + left] = isrc[j]; 173 isrc += srcstep; 207 const int* isrc = (const int*)src; local 257 for( i = 0; i < srcroi.height; i++, isrc += srcstep, idst += dststep ) 259 if( idst + left != isrc ) 261 idst[j + left] = isrc[j]; 273 isrc -= srcroi.height*srcstep; 342 const int* isrc = (const int*)src local [all...] |
cvthresh.cpp | 117 const int* isrc = (const int*)src; local 131 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step ) 135 int temp = isrc[j]; 142 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step ) 146 int temp = isrc[j]; 167 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step ) 171 int temp = isrc[j]; 178 for( i = 0; i < roi.height; i++, isrc += src_step, idst += dst_step ) 182 int temp = isrc[j];
|
/external/skia/gm/ |
poly2poly.cpp | 189 static void doDraw(SkCanvas* canvas, SkPaint* paint, const int isrc[], 195 src[i].set(SkIntToScalar(isrc[2*i+0]), SkIntToScalar(isrc[2*i+1]));
|
/external/opencv/cxcore/src/ |
cxarithm.cpp | [all...] |
cxmathfuncs.cpp | [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
uniform_query.cpp | 524 const int *isrc = (const int *) src; local 532 ((float *) dst)[c] = (float) *isrc; 533 isrc++; 545 const int *isrc = (const int *) src; local 553 ((int *) dst)[c] = *isrc == 0 ? 0 : ~0; 554 isrc++;
|
/external/mesa3d/src/mesa/main/ |
uniform_query.cpp | 524 const int *isrc = (const int *) src; local 532 ((float *) dst)[c] = (float) *isrc; 533 isrc++; 545 const int *isrc = (const int *) src; local 553 ((int *) dst)[c] = *isrc == 0 ? 0 : ~0; 554 isrc++;
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
structurally_valid.cc | 364 const uint8* isrc = reinterpret_cast<const uint8*>(str); local 365 const uint8* src = isrc; 366 const uint8* srclimit = isrc + str_length; 444 } while ((src > isrc) && ((src[0] & 0xc0) == 0x80)); 451 } while ((src > isrc) && ((src[0] & 0xc0) == 0x80)); 462 *bytes_consumed = src - isrc; 473 const uint8* isrc = reinterpret_cast<const uint8*>(str); local 474 const uint8* src = isrc; 475 const uint8* srclimit = isrc + str_length; 497 n = src - isrc; [all...] |
/external/protobuf/src/google/protobuf/stubs/ |
structurally_valid.cc | 364 const uint8* isrc = reinterpret_cast<const uint8*>(str); local 365 const uint8* src = isrc; 366 const uint8* srclimit = isrc + str_length; 444 } while ((src > isrc) && ((src[0] & 0xc0) == 0x80)); 451 } while ((src > isrc) && ((src[0] & 0xc0) == 0x80)); 462 *bytes_consumed = src - isrc; 473 const uint8* isrc = reinterpret_cast<const uint8*>(str); local 474 const uint8* src = isrc; 475 const uint8* srclimit = isrc + str_length; 497 n = src - isrc; [all...] |
/external/chromium_org/third_party/skia/include/core/ |
SkCanvas.h | 714 void drawBitmapRect(const SkBitmap& bitmap, const SkIRect* isrc, 719 if (isrc) { 720 realSrcStorage.set(*isrc); [all...] |
/external/skia/include/core/ |
SkCanvas.h | 714 void drawBitmapRect(const SkBitmap& bitmap, const SkIRect* isrc, 719 if (isrc) { 720 realSrcStorage.set(*isrc); [all...] |
/external/flac/include/FLAC/ |
format.h | 670 char isrc[13]; member in struct:__anon18301 671 /**< Track ISRC. This is a 12-digit alphanumeric code plus a trailing \c NUL byte */ [all...] |
/external/chromium_org/ui/gfx/ |
rect_unittest.cc | 418 Rect isrc(10, 20, 30, 40); 421 SkIRect skirect = RectToSkIRect(isrc); 422 EXPECT_EQ(isrc.ToString(), SkIRectToRect(skirect).ToString()); 424 SkRect skrect = RectToSkRect(isrc); 425 EXPECT_EQ(gfx::RectF(isrc).ToString(), SkRectToRectF(skrect).ToString());
|
/external/chromium_org/third_party/skia/src/core/ |
SkMatrix.cpp | 2016 SkIRect isrc = { 0, 0, width, height }; local [all...] |
/external/skia/src/core/ |
SkMatrix.cpp | 2016 SkIRect isrc = { 0, 0, width, height }; local [all...] |
/external/flac/libFLAC/ |
stream_encoder_framing.c | 158 if(!FLAC__bitwriter_write_byte_block(bw, (const FLAC__byte*)track->isrc, FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN/8))
|