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

  /external/clang/lib/StaticAnalyzer/Checkers/
BuiltinFunctionChecker.cpp 63 // Set the extent of the region in bytes. This enables us to use the
64 // SVal of the argument directly. If we save the extent in bits, we
70 DefinedOrUnknownSVal Extent = R->getExtent(svalBuilder);
72 svalBuilder.evalEQ(state, Extent, Size);
VLASizeChecker.cpp 12 // In addition, VLASizeChecker is responsible for defining the extent
101 // VLASizeChecker is responsible for defining the extent of the array being
103 // then matching that with the array region's extent symbol.
119 // Finally, assume that the array's extent matches the given size.
121 DefinedOrUnknownSVal Extent =
125 svalBuilder.evalEQ(state, Extent, ArraySize);
MallocChecker.cpp 234 // Set the region's extent equal to the Size parameter.
236 DefinedOrUnknownSVal Extent = R->getExtent(svalBuilder);
239 svalBuilder.evalEQ(state, Extent, DefinedSize);
CStringChecker.cpp 268 SVal Extent =
270 DefinedOrUnknownSVal Size = cast<DefinedOrUnknownSVal>(Extent);
    [all...]
  /external/webrtc/src/modules/audio_processing/aecm/main/matlab/
waitbar_j.m 190 tExtent=get(tHandle,'Extent');
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 195 DefinedOrUnknownSVal Extent = DeclRegion::getExtent(svalBuilder);
199 if (Extent.isZeroConstant()) {
206 return Extent;

Completed in 66 milliseconds