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

  /external/clang/lib/StaticAnalyzer/Checkers/
CastSizeChecker.cpp 63 CharUnits typeSize = C.getASTContext().getTypeSizeInChars(ToPointeeTy);
66 if (typeSize.isZero())
69 if (regionSize % typeSize != 0) {
  /external/webkit/Source/WebCore/svg/
SVGPathByteStreamBuilder.h 60 size_t typeSize = sizeof(ByteType);
61 for (size_t i = 0; i < typeSize; ++i)
SVGPathByteStreamSource.h 63 size_t typeSize = sizeof(ByteType);
65 for (size_t i = 0; i < typeSize; ++i) {
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
IndexDataManager.cpp 115 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
IndexDataManager.h 109 std::size_t typeSize(GLenum type) const;
VertexDataManager.cpp 58 int elementSize = attribute.typeSize();
  /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/webkit/Source/WebCore/platform/network/
MIMESniffing.cpp 79 size_t typeSize = strlen(type);
80 if (typeSize >= xmlSuffixSize && !memcmp(type + typeSize - xmlSuffixSize, xmlSuffix, xmlSuffixSize))
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Context.h 99 int typeSize() const
115 return mStride ? mStride : typeSize();
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
GLServerVertex.java 321 static int typeSize(final GLEnum type) {
460 attrib.elemSize = attrib.size * typeSize(attrib.type);
CodeGen.java 509 final ByteBuffer indexData = ByteBuffer.allocate(count * GLServerVertex.typeSize(type));
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
GLServerVertex.java 321 static int typeSize(final GLEnum type) {
460 attrib.elemSize = attrib.size * typeSize(attrib.type);
CodeGen.java 509 final ByteBuffer indexData = ByteBuffer.allocate(count * GLServerVertex.typeSize(type));
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 516 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
518 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity());
555 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
556 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity());
691 if (typeSize.isOne()) {
    [all...]
  /external/clang/lib/Sema/
SemaType.cpp 886 unsigned typeSize = static_cast<unsigned>(Context.getTypeSize(Result));
887 assert(typeSize > 0 && "type size for vector must be greater than 0 bits");
893 Result = Context.getVectorType(Result, 128/typeSize, VecKind);
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp     [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.cpp     [all...]
  /external/clang/include/clang/AST/
ASTContext.h     [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/
SDL_blit_N.c 45 size_t typeSize = sizeof( result );
48 int err = sysctlbyname( key, &result, &typeSize, NULL, 0 );
    [all...]

Completed in 732 milliseconds