Searched defs:isrc (Results 1 - 25 of 26) 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/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/opencv/cv/src/
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];
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...]
/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/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/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/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/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/include/FLAC/
H A Dformat.h673 char isrc[13]; member in struct:__anon7237
/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/v8/src/x64/
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);
/external/valgrind/VEX/priv/
H A Dhost_ppc_isel.c3989 HReg isrc = iselWordExpr_R(env, e->Iex.Binop.arg2, IEndianess); local
3998 addInstr(env, PPCInstr_Store(8, zero_r1, isrc, True/*mode64*/));
4260 HReg isrc = iselWordExpr_R(env, e->Iex.Binop.arg2, IEndianess); local
4269 addInstr(env, PPCInstr_Store(8, zero_r1, isrc, True/*mode64*/));
/external/annotation-tools/asmx/test/lib/
H A Djavassist.jar ... static void copy32bit (byte[], int, byte[], int) byte[] src int isrc byte[] dest int idest } javassist/bytecode/Bytecode.class Bytecode ...
/external/annotation-tools/asmx/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/guice/extensions/persist/lib/
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...
/external/guice/extensions/struts2/lib/
H A Djsp-2.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/jasper/ org/apache/jasper/resources/ ...
H A Djavassist.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/ByteArrayClassPath.class ByteArrayClassPath.java package javassist ...

Completed in 695 milliseconds

12