Searched refs:isrc (Results 1 - 25 of 33) sorted by relevance

12

/external/javassist/src/main/javassist/bytecode/
H A DByteArray.java66 * @param isrc the index into the source byte array.
70 static void copy32bit(byte[] src, int isrc, byte[] dest, int idest) { argument
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];
/external/python/cpython3/Modules/_decimal/libmpdec/
H A Dtranspose.c53 mpd_size_t idest, isrc; local
57 isrc = r * cols;
60 dest[idest] = src[isrc];
61 isrc += 1;
152 mpd_size_t idest, isrc; local
157 isrc = r*cols + c;
160 tmp = buf[isrc];
161 buf[isrc] = buf[idest];
163 isrc += 1;
/external/opencv/cv/src/
H A Dcvutils.cpp152 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 local
[all...]
H A Dcvthresh.cpp117 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/samplecode/
H A DSamplePolyToPoly.cpp79 static void doDraw(SkCanvas* canvas, SkPaint* paint, const int isrc[], argument
85 src[i].set(SkIntToScalar(isrc[2*i+0]), SkIntToScalar(isrc[2*i+1]));
/external/skqp/samplecode/
H A DSamplePolyToPoly.cpp79 static void doDraw(SkCanvas* canvas, SkPaint* paint, const int isrc[], argument
85 src[i].set(SkIntToScalar(isrc[2*i+0]), SkIntToScalar(isrc[2*i+1]));
/external/skia/gm/
H A Dpoly2poly.cpp194 static void doDraw(SkCanvas* canvas, SkPaint* paint, const int isrc[], argument
200 src[i].set(SkIntToScalar(isrc[2*i+0]), SkIntToScalar(isrc[2*i+1]));
/external/skqp/gm/
H A Dpoly2poly.cpp194 static void doDraw(SkCanvas* canvas, SkPaint* paint, const int isrc[], argument
200 src[i].set(SkIntToScalar(isrc[2*i+0]), SkIntToScalar(isrc[2*i+1]));
/external/protobuf/src/google/protobuf/stubs/
H A Dstructurally_valid.cc366 const uint8* isrc = reinterpret_cast<const uint8*>(str); local
367 const uint8* src = isrc;
368 const uint8* srclimit = isrc + str_length;
446 } while ((src > isrc) && ((src[0] & 0xc0) == 0x80));
453 } while ((src > isrc) && ((src[0] & 0xc0) == 0x80));
464 *bytes_consumed = src - isrc;
475 const uint8* isrc = reinterpret_cast<const uint8*>(str); local
476 const uint8* src = isrc;
477 const uint8* srclimit = isrc + str_length;
499 n = src - isrc;
560 const char* isrc = src_str.data(); local
[all...]
/external/opencv/cxcore/src/
H A Dcxarithm.cpp1471 _cast_macro1_, _cast_macro2_, _cvt_macro_, _check_macro_, isrc ) \
1486 if( _check_macro_(isrc[i]) && _check_macro_(isrc[i+1]) && \
1487 _check_macro_(isrc[i+2]) && _check_macro_(isrc[i+3])) \
1508 worktype z0 = _check_macro_(isrc[i]) ? \
1510 worktype z1 = _check_macro_(isrc[i+1]) ? \
1512 worktype z2 = _check_macro_(isrc[i+2]) ? \
1514 worktype z3 = _check_macro_(isrc[i+3]) ? \
1526 worktype z0 = _check_macro_(isrc[
[all...]
H A Dcxmathfuncs.cpp1851 const int* isrc = (const int*)src;
1873 srcstep /= sizeof(isrc[0]);
1874 for( ; size.height--; isrc += srcstep )
1879 int val = isrc[i];
1897 const int64* isrc = (const int64*)src;
1919 srcstep /= sizeof(isrc[0]);
1920 for( ; size.height--; isrc += srcstep )
1925 int64 val = isrc[i];
/external/skia/src/core/
H A DSkMatrix.cpp1704 SkIRect isrc = SkIRect::MakeSize(size); local
1708 src.set(isrc);
1712 // just apply the translate to isrc
1713 isrc.offset(SkScalarRoundToInt(mat.getTranslateX()),
1717 isrc.fLeft = SkLeftShift(isrc.fLeft, subpixelBits);
1718 isrc.fTop = SkLeftShift(isrc.fTop, subpixelBits);
1719 isrc.fRight = SkLeftShift(isrc
[all...]
H A DSkCanvas.cpp1784 void SkCanvas::drawImageRect(const SkImage* image, const SkIRect& isrc, const SkRect& dst, argument
1787 this->drawImageRect(image, SkRect::Make(isrc), dst, paint, constraint);
1875 void SkCanvas::drawBitmapRect(const SkBitmap& bitmap, const SkIRect& isrc, const SkRect& dst, argument
1877 this->drawBitmapRect(bitmap, SkRect::Make(isrc), dst, paint, constraint);
/external/skqp/src/core/
H A DSkMatrix.cpp1703 SkIRect isrc = SkIRect::MakeSize(size); local
1707 src.set(isrc);
1711 // just apply the translate to isrc
1712 isrc.offset(SkScalarRoundToInt(mat.getTranslateX()),
1716 isrc.fLeft = SkLeftShift(isrc.fLeft, subpixelBits);
1717 isrc.fTop = SkLeftShift(isrc.fTop, subpixelBits);
1718 isrc.fRight = SkLeftShift(isrc
[all...]
H A DSkCanvas.cpp1788 void SkCanvas::drawImageRect(const SkImage* image, const SkIRect& isrc, const SkRect& dst, argument
1791 this->drawImageRect(image, SkRect::Make(isrc), dst, paint, constraint);
1854 void SkCanvas::drawBitmapRect(const SkBitmap& bitmap, const SkIRect& isrc, const SkRect& dst, argument
1856 this->drawBitmapRect(bitmap, SkRect::Make(isrc), dst, paint, constraint);
/external/flac/include/FLAC/
H A Dformat.h673 char isrc[13]; member in struct:__anon7237
/external/skia/include/core/
H A DSkCanvas.h1434 /** Draw SkIRect isrc of SkImage image, scaled and translated to fill SkRect dst.
1435 Note that isrc is on integer pixel boundaries; dst may include fractional
1448 sample within isrc; set to kFast_SrcRectConstraint allows sampling outside to
1452 @param isrc source SkIRect of image to draw from
1456 @param constraint filter strictly within isrc or draw faster
1458 void drawImageRect(const SkImage* image, const SkIRect& isrc, const SkRect& dst,
1514 /** Draw SkIRect isrc of SkImage image, scaled and translated to fill SkRect dst.
1515 isrc is on integer pixel boundaries; dst may include fractional boundaries.
1531 @param isrc source SkIRect of image to draw from
1537 void drawImageRect(const sk_sp<SkImage>& image, const SkIRect& isrc, cons argument
[all...]
/external/skqp/include/core/
H A DSkCanvas.h1443 /** Draw SkIRect isrc of SkImage image, scaled and translated to fill SkRect dst.
1444 Note that isrc is on integer pixel boundaries; dst may include fractional
1457 sample within isrc; set to kFast_SrcRectConstraint allows sampling outside to
1461 @param isrc source SkIRect of image to draw from
1465 @param constraint filter strictly within isrc or draw faster
1467 void drawImageRect(const SkImage* image, const SkIRect& isrc, const SkRect& dst,
1523 /** Draw SkIRect isrc of SkImage image, scaled and translated to fill SkRect dst.
1524 isrc is on integer pixel boundaries; dst may include fractional boundaries.
1540 @param isrc source SkIRect of image to draw from
1546 void drawImageRect(const sk_sp<SkImage>& image, const SkIRect& isrc, cons argument
[all...]
/external/mesa3d/src/mesa/main/
H A Duniform_query.cpp627 const int *isrc = (const int *) src; local
635 ((float *) dst)[c] = (float) *isrc;
636 isrc++;
/external/syslinux/gpxe/src/drivers/net/
H A Dskge.c1135 u16 isrc; local
1137 isrc = xm_phy_read(hw, port, PHY_BCOM_INT_STAT);
1139 skge->netdev->name, isrc);
1141 if (isrc & PHY_B_IS_PSE)
1148 if (isrc & PHY_B_IS_NO_HDCL) {
1156 if (isrc & (PHY_B_IS_AN_PR | PHY_B_IS_LST_CHANGE))
/external/flac/libFLAC/
H A Dstream_encoder_framing.c159 if(!FLAC__bitwriter_write_byte_block(bw, (const FLAC__byte*)track->isrc, FLAC__STREAM_METADATA_CUESHEET_TRACK_ISRC_LEN/8))
H A Dmetadata_object.c808 if (memcmp(block1->tracks[i].isrc, block2->tracks[i].isrc, sizeof(block1->tracks[i].isrc)) != 0)
H A Dmetadata_iterators.c2378 if(read_cb(track->isrc, 1, len, handle) != len)
2804 if(write_cb(track->isrc, 1, len, handle) != len)
/external/v8/src/x64/
H A Dassembler-x64.h1757 XMMRegister isrc = {src2.code()};
1758 vinstr(0x20, dst, src1, isrc, k66, k0F3A, kW0);
1767 XMMRegister isrc = {src2.code()};
1768 vinstr(0xc4, dst, src1, isrc, k66, k0F, kW0);
1777 XMMRegister isrc = {src2.code()};
1778 vinstr(0x22, dst, src1, isrc, k66, k0F3A, kW0);
H A Dassembler-x64.cc4000 XMMRegister isrc = {src.code()}; local
4001 emit_vex_prefix(dst, xmm0, isrc, kL128, k66, k0F, kW0);
4029 XMMRegister isrc = {src.code()}; local
4030 emit_vex_prefix(dst, xmm0, isrc, kL128, k66, k0F, kW1);

Completed in 1100 milliseconds

12