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 61 // Set the extent of the region in bytes. This enables us to use the
62 // SVal of the argument directly. If we save the extent in bits, we
68 DefinedOrUnknownSVal Extent = R->getExtent(svalBuilder);
70 svalBuilder.evalEQ(state, Extent, Size);
VLASizeChecker.cpp 12 // In addition, VLASizeChecker is responsible for defining the extent
127 // VLASizeChecker is responsible for defining the extent of the array being
129 // then matching that with the array region's extent symbol.
145 // Finally, assume that the array's extent matches the given size.
147 DefinedOrUnknownSVal Extent =
151 svalBuilder.evalEQ(state, Extent, ArraySize);
MallocChecker.cpp     [all...]
CStringChecker.cpp 285 SVal Extent =
287 DefinedOrUnknownSVal Size = Extent.castAs<DefinedOrUnknownSVal>();
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
MemRegion.cpp 202 DefinedOrUnknownSVal Extent = DeclRegion::getExtent(svalBuilder);
206 if (Extent.isZeroConstant()) {
213 return Extent;
    [all...]
RegionStore.cpp 826 SVal Extent = Top->getExtent(SVB);
828 Extent.getAs<nonloc::ConcreteInt>()) {
    [all...]

Completed in 820 milliseconds