HomeSort by relevance Sort by last modified time
    Searched defs:typeSize (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathByteStreamSource.h 57 size_t typeSize = sizeof(ByteType<DataType>);
58 ASSERT(m_streamCurrent + typeSize <= m_streamEnd);
59 memcpy(data.bytes, m_streamCurrent, typeSize);
60 m_streamCurrent += typeSize;
SVGPathByteStreamBuilder.cpp 49 size_t typeSize = sizeof(ByteType<DataType>);
50 ASSERT(m_currentOffset + typeSize <= sizeof(m_bytes));
51 memcpy(m_bytes + m_currentOffset, data.bytes, typeSize);
52 m_currentOffset += typeSize;
  /external/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 50 CharUnits TypeSize, QualType ToPointeeTy) {
68 if (ArrayTy->getSize() == 1 && TypeSize > FlexSize)
69 TypeSize -= FlexSize;
81 CharUnits Left = RegionSize - TypeSize;
122 CharUnits typeSize = C.getASTContext().getTypeSizeInChars(ToPointeeTy);
125 if (typeSize.isZero())
128 if (regionSize % typeSize == 0)
131 if (evenFlexibleArraySize(Ctx, regionSize, typeSize, ToPointeeTy))
  /frameworks/base/core/jni/
android_hardware_camera2_CameraMetadata.cpp 111 size_t typeSize = getTypeSize(type);
113 if (dataBytes % typeSize != 0) {
114 ALOGE("%s: Expected dataBytes (%ud) to be divisible by typeSize "
115 "(%ud)", __FUNCTION__, dataBytes, typeSize);
119 size_t dataCount = dataBytes / typeSize;
  /external/deqp/modules/gles3/functional/
es3fVertexArrayObjectTests.cpp 269 int typeSize = 0;
272 case GL_UNSIGNED_INT: typeSize = sizeof(GLuint); break;
273 case GL_UNSIGNED_SHORT: typeSize = sizeof(GLushort); break;
274 case GL_UNSIGNED_BYTE: typeSize = sizeof(GLubyte); break;
279 deUint8* indices = new deUint8[m_spec.indexCount * typeSize];
283 deUint8* pos = indices + typeSize * i;
845 int typeSize = 0;
848 case GL_UNSIGNED_INT: typeSize = sizeof(GLuint); break;
849 case GL_UNSIGNED_SHORT: typeSize = sizeof(GLushort); break;
850 case GL_UNSIGNED_BYTE: typeSize = sizeof(GLubyte); break
    [all...]
es3fInstancedRenderingTests.cpp 181 int typeSize = glu::getDataTypeScalarSize(m_rgbAttrType);
182 bool isScalarCase = typeSize == 1;
403 for (int j = 0; j < typeSize - 1; j++)
413 for (int j = 0; j < typeSize - 1; j++)
422 for (int j = 0; j < typeSize - 1; j++)
477 int typeSize = glu::getDataTypeScalarSize(m_rgbAttrType);
488 glVertexAttribPointer(curLoc, typeSize, GL_FLOAT, GL_FALSE, 0, attrPtr);
490 glVertexAttribIPointer(curLoc, typeSize, GL_INT, 0, attrPtr);
492 glVertexAttribIPointer(curLoc, typeSize, GL_UNSIGNED_INT, 0, attrPtr);
es3fUniformApiTests.cpp     [all...]
  /external/javassist/src/main/javassist/bytecode/
StackMapTable.java 499 int typeSize = (varTag == LONG || varTag == DOUBLE) ? 2 : 1;
500 int[] localTags2 = new int[len + typeSize];
501 int[] localData2 = new int[len + typeSize];
506 j += typeSize;
514 if (typeSize > 1) {
  /external/chromium_org/third_party/icu/source/common/
uloc_tag.c 886 int32_t i, typeSize;
914 typeSize = 0;
917 if (typeSize >= MAX_BCP47_SUBTAG_LEN) {
921 typeSize = 0;
923 typeSize++;
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 472 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
474 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity());
511 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
512 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity());
670 if (typeSize.isOne()) {
    [all...]
  /external/icu/icu4c/source/common/
uloc_tag.c 886 int32_t i, typeSize;
914 typeSize = 0;
917 if (typeSize >= MAX_BCP47_SUBTAG_LEN) {
921 typeSize = 0;
923 typeSize++;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_blit_N.c 45 size_t typeSize = sizeof( result );
48 int err = sysctlbyname( key, &result, &typeSize, NULL, 0 );
    [all...]
  /external/deqp/modules/gles2/functional/
es2fUniformApiTests.cpp     [all...]
  /external/deqp/modules/gles31/functional/
es31fProgramUniformTests.cpp     [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLRenderingContextBase.cpp     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]
SemaType.cpp     [all...]
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp     [all...]
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 

Completed in 456 milliseconds