HomeSort by relevance Sort by last modified time
    Searched refs:srcType (Results 1 - 25 of 45) sorted by null

1 2

  /art/runtime/
reflection-inl.h 31 Primitive::Type srcType, Primitive::Type dstType,
33 DCHECK(srcType != Primitive::kPrimNot && dstType != Primitive::kPrimNot);
34 if (LIKELY(srcType == dstType)) {
45 if (srcType == Primitive::kPrimByte) {
51 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
52 srcType == Primitive::kPrimShort) {
58 if (srcType == Primitive::kPrimByte || srcType == Primitive::kPrimChar ||
59 srcType == Primitive::kPrimShort || srcType == Primitive::kPrimInt)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texstore.c 313 * \param srcType source image type
323 GLenum srcFormat, GLenum srcType,
331 _mesa_image_row_stride(srcPacking, srcWidth, srcFormat, srcType);
367 srcFormat, srcType,
371 dst, srcFormat, srcType, src,
435 GLenum srcFormat, GLenum srcType,
442 _mesa_image_row_stride(srcPacking, srcWidth, srcFormat, srcType);
476 srcFormat, srcType,
480 dst, srcFormat, srcType, src,
554 * \param srcType source image typ
    [all...]
pack.h 63 GLenum srcFormat, GLenum srcType,
72 GLenum srcFormat, GLenum srcType,
80 GLenum srcFormat, GLenum srcType,
87 GLenum srcFormat, GLenum srcType,
95 GLenum srcType, const GLvoid *source,
110 GLenum srcType, const GLvoid *source,
123 GLenum srcType, const GLvoid *source,
texstore.h 53 * \param srcType incoming image data type
64 GLenum srcFormat, GLenum srcType, \
78 GLenum srcFormat, GLenum srcType,
87 GLenum srcFormat, GLenum srcType,
texcompress_s3tc.c 174 srcType != GL_UNSIGNED_BYTE ||
183 srcFormat, srcType, srcAddr,
192 srcFormat, srcType, 0, 0);
227 srcType != GL_UNSIGNED_BYTE ||
236 srcFormat, srcType, srcAddr,
245 srcFormat, srcType, 0, 0);
280 srcType != GL_UNSIGNED_BYTE ||
289 srcFormat, srcType, srcAddr,
297 srcFormat, srcType, 0, 0);
332 srcType != GL_UNSIGNED_BYTE |
    [all...]
pack.c     [all...]
texcompress_rgtc.c 109 srcFormat, srcType, srcAddr,
156 srcFormat, srcType, srcAddr,
204 srcFormat, srcType, srcAddr,
258 srcFormat, srcType, srcAddr,
image.h 98 _mesa_convert_colors(GLenum srcType, const GLvoid *src,
texcompress_fxt1.c 72 srcType != GL_UNSIGNED_BYTE ||
81 srcFormat, srcType, srcAddr,
91 srcFormat, srcType, 0, 0);
94 srcType) / sizeof(GLubyte);
123 srcType != GL_UNSIGNED_BYTE ||
131 srcFormat, srcType, srcAddr,
141 srcFormat, srcType, 0, 0);
144 srcType) / sizeof(GLubyte);
    [all...]
  /external/mesa3d/src/mesa/main/
texstore.c 313 * \param srcType source image type
323 GLenum srcFormat, GLenum srcType,
331 _mesa_image_row_stride(srcPacking, srcWidth, srcFormat, srcType);
367 srcFormat, srcType,
371 dst, srcFormat, srcType, src,
435 GLenum srcFormat, GLenum srcType,
442 _mesa_image_row_stride(srcPacking, srcWidth, srcFormat, srcType);
476 srcFormat, srcType,
480 dst, srcFormat, srcType, src,
554 * \param srcType source image typ
    [all...]
pack.h 63 GLenum srcFormat, GLenum srcType,
72 GLenum srcFormat, GLenum srcType,
80 GLenum srcFormat, GLenum srcType,
87 GLenum srcFormat, GLenum srcType,
95 GLenum srcType, const GLvoid *source,
110 GLenum srcType, const GLvoid *source,
123 GLenum srcType, const GLvoid *source,
texstore.h 53 * \param srcType incoming image data type
64 GLenum srcFormat, GLenum srcType, \
78 GLenum srcFormat, GLenum srcType,
87 GLenum srcFormat, GLenum srcType,
texcompress_s3tc.c 174 srcType != GL_UNSIGNED_BYTE ||
183 srcFormat, srcType, srcAddr,
192 srcFormat, srcType, 0, 0);
227 srcType != GL_UNSIGNED_BYTE ||
236 srcFormat, srcType, srcAddr,
245 srcFormat, srcType, 0, 0);
280 srcType != GL_UNSIGNED_BYTE ||
289 srcFormat, srcType, srcAddr,
297 srcFormat, srcType, 0, 0);
332 srcType != GL_UNSIGNED_BYTE |
    [all...]
pack.c     [all...]
texcompress_rgtc.c 109 srcFormat, srcType, srcAddr,
156 srcFormat, srcType, srcAddr,
204 srcFormat, srcType, srcAddr,
258 srcFormat, srcType, srcAddr,
image.h 98 _mesa_convert_colors(GLenum srcType, const GLvoid *src,
texcompress_fxt1.c 72 srcType != GL_UNSIGNED_BYTE ||
81 srcFormat, srcType, srcAddr,
91 srcFormat, srcType, 0, 0);
94 srcType) / sizeof(GLubyte);
123 srcType != GL_UNSIGNED_BYTE ||
131 srcFormat, srcType, srcAddr,
141 srcFormat, srcType, 0, 0);
144 srcType) / sizeof(GLubyte);
    [all...]
  /art/test/064-field-access/src/
Main.java 471 private static boolean compatibleTypes(char srcType, char dstType) {
476 return srcType == dstType;
478 return srcType == 'B' || srcType == 'S';
480 return srcType == 'B' || srcType == 'C' || srcType == 'S' || srcType == 'I';
482 return srcType == 'B' || srcType == 'C' || srcType == 'S' || srcType == 'I' |
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_texture.c 286 GLenum srcType, GLboolean fbo)
298 if ((srcFormat == GL_RGBA && srcType == GL_UNSIGNED_INT_8_8_8_8) ||
299 (srcFormat == GL_RGBA && srcType == GL_UNSIGNED_BYTE && !littleEndian) ||
300 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_INT_8_8_8_8_REV) ||
301 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_BYTE && littleEndian)) {
303 } else if ((srcFormat == GL_RGBA && srcType == GL_UNSIGNED_INT_8_8_8_8_REV) ||
304 (srcFormat == GL_RGBA && srcType == GL_UNSIGNED_BYTE && littleEndian) ||
305 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_INT_8_8_8_8) ||
306 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_BYTE && !littleEndian)) {
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_texture.c 286 GLenum srcType, GLboolean fbo)
298 if ((srcFormat == GL_RGBA && srcType == GL_UNSIGNED_INT_8_8_8_8) ||
299 (srcFormat == GL_RGBA && srcType == GL_UNSIGNED_BYTE && !littleEndian) ||
300 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_INT_8_8_8_8_REV) ||
301 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_BYTE && littleEndian)) {
303 } else if ((srcFormat == GL_RGBA && srcType == GL_UNSIGNED_INT_8_8_8_8_REV) ||
304 (srcFormat == GL_RGBA && srcType == GL_UNSIGNED_BYTE && littleEndian) ||
305 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_INT_8_8_8_8) ||
306 (srcFormat == GL_ABGR_EXT && srcType == GL_UNSIGNED_BYTE && !littleEndian)) {
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
ExpressionTranslator.java 356 private JavaExpression infix(Type destType, Type srcType, String infix, PExpression leftNode,
358 JavaExpression left = cast(srcType, leftNode);
359 JavaExpression right = cast(srcType, rightNode);
363 private JavaExpression prefix(Type destType, Type srcType, String prefix, PExpression node) {
364 return JavaExpression.prefix(destType, prefix, cast(srcType, node));
  /external/javassist/src/main/javassist/compiler/
CodeGen.java 897 private boolean invalidDim(int srcType, int srcDim, String srcClass,
902 if (srcType == NULL)
907 else if (isCast && srcDim == 0 && srcType == CLASS
    [all...]
  /art/runtime/native/
java_lang_System.cc 131 std::string srcType(PrettyTypeOf(srcArray));
136 srcType.c_str(), dstType.c_str());
  /external/chromium_org/third_party/skia/gm/
xfermodes.cpp 51 enum SrcType {
76 /* The srcType argument indicates what to draw for the source part. Skia
80 void draw_mode(SkCanvas* canvas, SkXfermode* mode, SrcType srcType,
89 switch (srcType) {
252 draw_mode(canvas, mode, static_cast<SrcType>(sourceType),
  /external/skia/gm/
xfermodes.cpp 51 enum SrcType {
76 /* The srcType argument indicates what to draw for the source part. Skia
80 void draw_mode(SkCanvas* canvas, SkXfermode* mode, SrcType srcType,
89 switch (srcType) {
251 draw_mode(canvas, mode, static_cast<SrcType>(sourceType),

Completed in 1186 milliseconds

1 2