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

  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
ItemLocationBox.java 158 public Item createItem(int itemId, int constructionMethod, int dataReferenceIndex, long baseOffset, List<Extent> extents) {
171 public List<Extent> extents = new LinkedList<Extent>();
191 extents.add(new Extent(in));
195 public Item(int itemId, int constructionMethod, int dataReferenceIndex, long baseOffset, List<Extent> extents) {
215 for (Extent extent : extents) {
216 size += extent.getSize();
239 for (Extent extent : extents)
    [all...]
  /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
126 // VLASizeChecker is responsible for defining the extent of the array being
128 // then matching that with the array region's extent symbol.
144 // Finally, assume that the array's extent matches the given size.
146 DefinedOrUnknownSVal Extent =
150 svalBuilder.evalEQ(state, Extent, ArraySize);
CStringChecker.cpp 281 SVal Extent =
283 DefinedOrUnknownSVal Size = Extent.castAs<DefinedOrUnknownSVal>();
    [all...]
MallocChecker.cpp 768 // Set the region's extent equal to the Size parameter.
776 DefinedOrUnknownSVal Extent = R->getExtent(svalBuilder);
778 svalBuilder.evalEQ(State, Extent, *DefinedSize);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 202 DefinedOrUnknownSVal Extent = DeclRegion::getExtent(svalBuilder);
206 if (Extent.isZeroConstant()) {
213 return Extent;
    [all...]
RegionStore.cpp 824 SVal Extent = Top->getExtent(SVB);
826 Extent.getAs<nonloc::ConcreteInt>()) {
    [all...]

Completed in 154 milliseconds