Searched refs:typeSize (Results 1 - 14 of 14) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DCastSizeChecker.cpp63 CharUnits typeSize = C.getASTContext().getTypeSizeInChars(ToPointeeTy); local
66 if (typeSize.isZero())
69 if (regionSize % typeSize != 0) {
/external/webkit/Source/WebCore/svg/
H A DSVGPathByteStreamBuilder.h60 size_t typeSize = sizeof(ByteType); local
61 for (size_t i = 0; i < typeSize; ++i)
H A DSVGPathByteStreamSource.h63 size_t typeSize = sizeof(ByteType); local
65 for (size_t i = 0; i < typeSize; ++i) {
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
H A DIndexDataManager.cpp115 if (typeSize(type) * count + offset > static_cast<std::size_t>(buffer->size()))
136 streamOffset = (offset / typeSize(type)) * indexSize(format);
150 convertCount = buffer->size() / typeSize(type);
180 streamOffset = (offset / typeSize(type)) * indexSize(format);
196 std::size_t IndexDataManager::typeSize(GLenum type) const function in class:gl::IndexDataManager
H A DIndexDataManager.h109 std::size_t typeSize(GLenum type) const;
H A DVertexDataManager.cpp58 int elementSize = attribute.typeSize();
/external/webkit/Source/WebCore/platform/network/
H A DMIMESniffing.cpp79 size_t typeSize = strlen(type); local
80 if (typeSize >= xmlSuffixSize && !memcmp(type + typeSize - xmlSuffixSize, xmlSuffix, xmlSuffixSize))
/external/javassist/src/main/javassist/bytecode/
H A DStackMapTable.java499 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/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DContext.h99 int typeSize() const function in class:gl::VertexAttribute
115 return mStride ? mStride : typeSize();
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp516 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); local
518 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity());
555 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); local
556 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity());
691 if (typeSize.isOne()) {
/external/clang/lib/Sema/
H A DSemaType.cpp886 unsigned typeSize = static_cast<unsigned>(Context.getTypeSize(Result)); local
887 assert(typeSize > 0 && "type size for vector must be greater than 0 bits");
893 Result = Context.getVectorType(Result, 128/typeSize, VecKind);
3721 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType)); local
3726 if (vectorSize % typeSize) {
3741 CurType = S.Context.getVectorType(CurType, vectorSize/typeSize,
3826 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType)); local
3828 unsigned vecSize = typeSize * numElts;
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLRenderingContext.cpp3831 unsigned int typeSize = sizeInBytes(type); local
3832 if (!typeSize) {
3836 if ((stride % typeSize) || (offset % typeSize)) {
3840 GC3Dsizei bytesPerElement = size * typeSize;
/external/clang/include/clang/AST/
H A DASTContext.h1450 /// point or a complex type (based on typeDomain/typeSize).
1452 /// 'typeSize' is a real floating point or complex type.
1453 QualType getFloatingTypeOfSizeWithinDomain(QualType typeSize,
/external/qemu/distrib/sdl-1.2.12/src/video/
H A DSDL_blit_N.c45 size_t typeSize = sizeof( result ); local
48 int err = sysctlbyname( key, &result, &typeSize, NULL, 0 );

Completed in 427 milliseconds