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

  /external/clang/lib/StaticAnalyzer/Checkers/
BuiltinFunctionChecker.cpp 64 // Set the extent of the region in bytes. This enables us to use the
65 // SVal of the argument directly. If we save the extent in bits, we
71 DefinedOrUnknownSVal Extent = R->getExtent(svalBuilder);
73 svalBuilder.evalEQ(state, Extent, Size);
VLASizeChecker.cpp 12 // In addition, VLASizeChecker is responsible for defining the extent
129 // VLASizeChecker is responsible for defining the extent of the array being
131 // then matching that with the array region's extent symbol.
166 // Finally, assume that the array's extent matches the given size.
168 DefinedOrUnknownSVal Extent =
172 svalBuilder.evalEQ(state, Extent, ArraySize);
CStringChecker.cpp 298 SVal Extent =
300 DefinedOrUnknownSVal Size = Extent.castAs<DefinedOrUnknownSVal>();
    [all...]
MallocChecker.cpp     [all...]
  /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/dng_sdk/source/
dng_resample.cpp 31 real64 dng_resample_bicubic::Extent () const
171 fRadius = (uint32) (kernel.Extent () / scale + 0.9999);
317 fRadius = (uint32) (kernel.Extent () + 0.9999);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
MCCodeView.cpp 305 // Return an empty extent if there are no cv_locs for this function id.
460 // Include all child inline call sites in our .cv_loc extent.
464 auto Extent = getLineExtent(ChildId);
465 LocBegin = std::min(LocBegin, Extent.first);
466 LocEnd = std::max(LocEnd, Extent.second);
667 // Write down the range's extent.
  /external/ImageMagick/MagickCore/
widget.c 71 #define Extent(s) ((int) strlen(s))
82 ((unsigned int) XTextWidth(font_info,text,Extent(text)))
383 x,y,button_info->text,Extent(button_info->text));
390 button_info->text,Extent(button_info->text));
581 for (i=0; i < Extent(text); i++)
599 x,y,text_info->marker,Extent(text_info->marker));
614 Extent(text_info->marker));
747 triangle_info->text,Extent(triangle_info->text));
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 812 SVal Extent = Top->getExtent(SVB);
814 Extent.getAs<nonloc::ConcreteInt>()) {
    [all...]

Completed in 346 milliseconds