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

1 2

  /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...]
  /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/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);
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...]
es3fUniformApiTests.cpp     [all...]
  /frameworks/rs/
rsScriptGroup.h 87 const Type ** type, size_t typeSize);
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);
  /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/deqp/modules/gles31/functional/
es31fProgramUniformTests.cpp     [all...]
  /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/gles2/functional/
es2fUniformApiTests.cpp     [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/clang/lib/Sema/
SemaType.cpp     [all...]
SemaInit.cpp     [all...]
  /frameworks/base/libs/androidfw/
ResourceTypes.cpp     [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp     [all...]
  /external/clang/include/clang/AST/
ASTContext.h     [all...]
  /external/v8/test/mjsunit/asm/embenchen/
copy.js 756 var i = 0, type, typeSize, previousType;
776 typeSize = Runtime.getNativeTypeSize(type);
779 i += typeSize;
    [all...]
corrections.js 756 var i = 0, type, typeSize, previousType;
776 typeSize = Runtime.getNativeTypeSize(type);
779 i += typeSize;
    [all...]
primes.js 756 var i = 0, type, typeSize, previousType;
776 typeSize = Runtime.getNativeTypeSize(type);
779 i += typeSize;
    [all...]
fannkuch.js 787 var i = 0, type, typeSize, previousType;
807 typeSize = Runtime.getNativeTypeSize(type);
810 i += typeSize;
    [all...]
fasta.js 766 var i = 0, type, typeSize, previousType;
786 typeSize = Runtime.getNativeTypeSize(type);
789 i += typeSize;
    [all...]
  /external/v8/test/mjsunit/wasm/embenchen/
copy.js 759 var i = 0, type, typeSize, previousType;
779 typeSize = Runtime.getNativeTypeSize(type);
782 i += typeSize;
    [all...]
corrections.js 759 var i = 0, type, typeSize, previousType;
779 typeSize = Runtime.getNativeTypeSize(type);
782 i += typeSize;
    [all...]
primes.js 759 var i = 0, type, typeSize, previousType;
779 typeSize = Runtime.getNativeTypeSize(type);
782 i += typeSize;
    [all...]

Completed in 1449 milliseconds

1 2