Home | History | Annotate | Download | only in hprof-conv

Lines Matching refs:basicType

322 static int computeBasicLen(HprofBasicType basicType)
327 assert(basicType >= 0);
328 if (basicType >= maxSize)
330 return sizes[basicType];
354 HprofBasicType basicType;
357 basicType = buf[2];
358 basicLen = computeBasicLen(basicType);
360 DBUG("ERROR: invalid basicType %d\n", basicType);
375 HprofBasicType basicType;
378 basicType = buf[kIdentSize];
379 basicLen = computeBasicLen(basicType);
381 fprintf(stderr, "ERROR: invalid basicType %d\n", basicType);
430 HprofBasicType basicType = origBuf[kIdentSize + 8];
431 int basicLen = computeBasicLen(basicType);