/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))
|
/external/mdnsresponder/mDNSPosix/ |
parselog.py | 168 typesize = 12 170 pageHeight=(len(ipList)+1) * typesize 172 leftMargin = typesize * 60 173 bottomMargin = typesize 190 #c.addArc((point[0]-minTime)*scale,point[1]*typesize+6,5,0,2*math.pi,1) 191 c.addArc((point[0]-minTime)*scale,point[1]*typesize+6,typesize/4,0,2*math.pi,1) 206 c.moveToPoint((point[0]-minTime)*scale,point[1]*typesize+6) 207 c.addLineToPoint(((plotPoints[index])[0]-minTime)*scale,(plotPoints[index])[1]*typesize+6) 213 c.selectFont ('Gill Sans', typesize, kCGEncodingMacRoman [all...] |
/frameworks/base/wifi/java/android/net/wifi/nan/ |
TlvBufferUtils.java | 68 * @param typeSize Number of bytes used for the Type (T) field. Values 75 public TlvConstructor(int typeSize, int lengthSize) { 76 if (typeSize < 0 || typeSize > 2 || lengthSize <= 0 || lengthSize > 2) { 78 "Invalid sizes - typeSize=" + typeSize + ", lengthSize=" + lengthSize); 80 mTypeSize = typeSize; 385 * @param typeSize Number of bytes used for the Type (T) field. Valid 394 public TlvIterable(int typeSize, int lengthSize, byte[] array, int length) { 395 if (typeSize < 0 || typeSize > 2 || lengthSize <= 0 || lengthSize > 2) [all...] |
/art/compiler/dex/ |
compiler_enums.h | 178 // TypeSize is an encoded field giving the element type and the vector size. 186 // could be supported by using a bit in TypeSize and arg[0] where needed. 197 // vC: TypeSize 203 // vC: TypeSize 209 // vC: TypeSize 215 // vC: TypeSize 221 // vC: TypeSize 227 // vC: TypeSize 233 // vC: TypeSize 239 // vC: TypeSize [all...] |
/external/llvm/lib/Transforms/Instrumentation/ |
AddressSanitizer.cpp | 436 uint64_t *TypeSize, unsigned *Alignment); 441 Value *Addr, uint32_t TypeSize, bool IsWrite, 444 uint32_t TypeSize, bool IsWrite, 448 Value *ShadowValue, uint32_t TypeSize); 469 uint64_t TypeSize) const; 780 static size_t TypeSizeToSizeIndex(uint32_t TypeSize) { 781 size_t Res = countTrailingZeros(TypeSize / 8); [all...] |
ThreadSanitizer.cpp | 444 const uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy); 446 if (Alignment == 0 || Alignment >= 8 || (Alignment % (TypeSize / 8)) == 0) 591 uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy); 592 if (TypeSize != 8 && TypeSize != 16 && 593 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) { 598 size_t Idx = countTrailingZeros(TypeSize / 8);
|
SanitizerCoverage.cpp | 421 uint64_t TypeSize = DL->getTypeStoreSizeInBits(A0->getType()); 425 {ConstantInt::get(Int64Ty, (TypeSize << 32) | ICMP->getPredicate()),
|
/external/deqp/modules/gles3/functional/ |
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...] |
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...] |
/frameworks/rs/ |
rsScriptGroup.cpp | 215 const Type ** type, size_t typeSize) { 218 size_t linkCount = typeSize / sizeof(Type *); 394 const RsType * type, size_t typeSize) { 402 (const Type **) type, typeSize);
|
rsScriptGroup.h | 87 const Type ** type, size_t typeSize);
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSGlobalInfoPass.cpp | 155 auto TypeSize = DL.getTypeAllocSize(GlobalType); 157 GVSizes32.push_back(TypeSize); 159 GVSizes64.push_back(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) {
|
/frameworks/base/core/jni/ |
android_hardware_camera2_CameraMetadata.cpp | 127 size_t typeSize = getTypeSize(type); 129 if (dataBytes % typeSize != 0) { 130 ALOGE("%s: Expected dataBytes (%zu) to be divisible by typeSize " 131 "(%zu)", __FUNCTION__, dataBytes, typeSize); 135 size_t dataCount = dataBytes / typeSize;
|
/external/deqp/modules/gles31/functional/ |
es31fProgramUniformTests.cpp | [all...] |
/external/deqp/modules/gles2/functional/ |
es2fUniformApiTests.cpp | [all...] |
/external/clang/lib/AST/ |
RecordLayoutBuilder.cpp | 677 void LayoutWideBitField(uint64_t FieldSize, uint64_t TypeSize, [all...] |
/external/clang/lib/CodeGen/ |
CGExprCXX.cpp | 550 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); 552 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity()); 589 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); 590 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity()); 748 if (typeSize.isOne()) { [all...] |
/external/llvm/lib/Analysis/ |
InlineCost.cpp | 285 APInt TypeSize(IntPtrWidth, DL.getTypeAllocSize(GTI.getIndexedType())); 286 Offset += OpC->getValue().sextOrTrunc(IntPtrWidth) * TypeSize; [all...] |
/external/opencv/cxcore/src/ |
cxdatastructs.cpp | 466 int typesize = CV_ELEM_SIZE(elemtype); local 469 typesize != 0 && typesize != elem_size ) 706 int typesize = CV_ELEM_SIZE(elemtype); local 709 typesize != 0 && typesize != elem_size ) [all...] |
/external/opencv3/modules/core/src/ |
datastructs.cpp | 388 int typesize = CV_ELEM_SIZE(elemtype); local 391 typesize != 0 && typesize != (int)elem_size ) 600 int typesize = CV_ELEM_SIZE(elemtype); local 603 typesize != 0 && typesize != elem_size ) [all...] |
/frameworks/base/libs/androidfw/ |
ResourceTypes.cpp | [all...] |
/external/llvm/include/llvm/IR/ |
PatternMatch.h | [all...] |
/external/opencv3/3rdparty/libtiff/ |
tif_dirread.c | 767 int typesize; local 770 typesize=TIFFDataWidth(direntry->tdir_type); 771 if ((direntry->tdir_count==0)||(typesize==0)) 783 if ((uint64)(2147483647/typesize)<direntry->tdir_count) 789 datasize=(*count)*typesize; 791 data=_TIFFCheckMalloc(tif, *count, typesize, "ReadDirEntryArray"); [all...] |