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

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathByteStreamSource.h57 size_t typeSize = sizeof(ByteType<DataType>); local
58 ASSERT(m_streamCurrent + typeSize <= m_streamEnd);
59 memcpy(data.bytes, m_streamCurrent, typeSize);
60 m_streamCurrent += typeSize;
H A DSVGPathByteStreamBuilder.cpp49 size_t typeSize = sizeof(ByteType<DataType>); local
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/
H A DCastSizeChecker.cpp122 CharUnits typeSize = C.getASTContext().getTypeSizeInChars(ToPointeeTy); local
125 if (typeSize.isZero())
128 if (regionSize % typeSize == 0)
131 if (evenFlexibleArraySize(Ctx, regionSize, typeSize, ToPointeeTy))
/external/deqp/modules/gles3/functional/
H A Des3fInstancedRenderingTests.cpp181 int typeSize = glu::getDataTypeScalarSize(m_rgbAttrType); local
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); local
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);
H A Des3fVertexArrayObjectTests.cpp269 int typeSize = 0; local
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; local
848 case GL_UNSIGNED_INT: typeSize = sizeof(GLuint); break;
849 case GL_UNSIGNED_SHORT: typeSize = sizeof(GLushort); break;
850 case GL_UNSIGNED_BYTE: typeSize
[all...]
H A Des3fUniformApiTests.cpp1876 const int typeSize = glu::getDataTypeScalarSize(uniform.type); local
1915 switch (typeSize)
1927 vector<float> buffer(valuesToAssign.size() * typeSize);
1929 buffer[i] = valuesToAssign[i / typeSize].val.floatV[i % typeSize];
1932 switch (typeSize)
1947 vector<float> buffer(valuesToAssign.size() * typeSize);
1949 buffer[i] = valuesToAssign[i / typeSize].val.floatV[i % typeSize];
1973 switch (typeSize)
[all...]
/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/deqp/modules/gles31/functional/
H A Des31fProgramUniformTests.cpp1379 const int typeSize = glu::getDataTypeScalarSize(uniform.type); local
1418 switch (typeSize)
1430 vector<float> buffer(valuesToAssign.size() * typeSize);
1432 buffer[i] = valuesToAssign[i / typeSize].val.floatV[i % typeSize];
1435 switch (typeSize)
1450 vector<float> buffer(valuesToAssign.size() * typeSize);
1452 buffer[i] = valuesToAssign[i / typeSize].val.floatV[i % typeSize];
1476 switch (typeSize)
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fUniformApiTests.cpp1505 const int typeSize = glu::getDataTypeScalarSize(uniform.type); local
1544 switch (typeSize)
1556 vector<float> buffer(valuesToAssign.size() * typeSize);
1558 buffer[i] = valuesToAssign[i / typeSize].val.floatV[i % typeSize];
1561 switch (typeSize)
1576 vector<float> buffer(valuesToAssign.size() * typeSize);
1578 buffer[i] = valuesToAssign[i / typeSize].val.floatV[i % typeSize];
1595 switch (typeSize)
[all...]
/external/clang/lib/CodeGen/
H A DCGExprCXX.cpp472 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); local
474 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity());
511 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); local
512 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity());
670 if (typeSize.isOne()) {
/external/chromium_org/third_party/icu/source/common/
H A Duloc_tag.c886 int32_t i, typeSize; local
914 typeSize = 0;
917 if (typeSize >= MAX_BCP47_SUBTAG_LEN) {
921 typeSize = 0;
923 typeSize++;
/external/icu/icu4c/source/common/
H A Duloc_tag.c886 int32_t i, typeSize; local
914 typeSize = 0;
917 if (typeSize >= MAX_BCP47_SUBTAG_LEN) {
921 typeSize = 0;
923 typeSize++;
/external/clang/lib/Sema/
H A DSemaType.cpp1074 unsigned typeSize = static_cast<unsigned>(Context.getTypeSize(Result)); local
1075 assert(typeSize > 0 && "type size for vector must be greater than 0 bits");
1081 Result = Context.getVectorType(Result, 128/typeSize, VecKind);
4664 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType)); local
4669 if (vectorSize % typeSize) {
4675 if (VectorType::isVectorSizeTooLarge(vectorSize / typeSize)) {
4690 CurType = S.Context.getVectorType(CurType, vectorSize/typeSize,
4825 unsigned typeSize = static_cast<unsigned>(S.Context.getTypeSize(CurType)); local
4827 unsigned vecSize = typeSize * numElts;
H A DSemaInit.cpp1280 unsigned typeSize = SemaRef.Context.getTypeSize(elementType); local
1295 << typeCode << typeSize; local
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLRenderingContextBase.cpp4202 unsigned typeSize = sizeInBytes(type); local
4203 ASSERT((typeSize & (typeSize - 1)) == 0); // Ensure that the value is POT.
4204 if ((stride & (typeSize - 1)) || (static_cast<GLintptr>(offset) & (typeSize - 1))) {
4208 GLsizei bytesPerElement = size * typeSize;
/external/clang/include/clang/AST/
H A DASTContext.h1960 /// \p typeDomain/\p typeSize).
1963 /// \param typeSize a real floating point or complex type.
1964 QualType getFloatingTypeOfSizeWithinDomain(QualType typeSize,
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_blit_N.c45 size_t typeSize = sizeof( result ); local
48 int err = sysctlbyname( key, &result, &typeSize, NULL, 0 );
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/chromium_org/tools/win/split_link/viz.js/
H A Dviz.js598 var i = 0, type, typeSize, previousType;
613 typeSize = Runtime.getNativeTypeSize(type);
616 i += typeSize;
[all...]
/external/chromium_org/v8/tools/profviz/
H A Dgnuplot-4.6.3-emscripten.js660 var i = 0, type, typeSize, previousType;
675 typeSize = Runtime.getNativeTypeSize(type);
678 i += typeSize;
[all...]

Completed in 2775 milliseconds