Home
last modified time | relevance | path

Searched refs:CellType (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/heap/
Dmarking.h15 typedef uint32_t CellType; typedef
17 inline MarkBit(CellType* cell, CellType mask) : cell_(cell), mask_(mask) {} in MarkBit()
26 inline CellType* cell() { return cell_; } in cell()
27 inline CellType mask() { return mask_; } in mask()
30 CellType new_mask = mask_ << 1; in Next()
42 CellType* cell_;
43 CellType mask_;
70 return sizeof(MarkBit::CellType) * cells_count; in SizeFor()
89 INLINE(MarkBit::CellType* cells()) { in INLINE()
90 return reinterpret_cast<MarkBit::CellType*>(this); in INLINE()
[all …]
Dmark-compact.h328 inline MarkBit::CellType* CurrentCell() { in CurrentCell()
358 inline MarkBit::CellType PeekNext() { in PeekNext()
367 MarkBit::CellType* cells_;
399 MarkBit::CellType current_cell_;
Dmark-compact-inl.h159 MarkBit::CellType end_index_mask = in Next()
/external/ImageMagick/coders/
Dmat.c357 static void CalcMinMax(Image *image, int endian_indicator, int SizeX, int SizeY, size_t CellType, u… in CalcMinMax() argument
380 if (CellType==miDOUBLE) in CalcMinMax()
397 if (CellType==miSINGLE) in CalcMinMax()
809 size_t CellType; in ReadMATImage() local
987 CellType = ReadBlobXXXLong(image2); /* Additional object type */ in ReadMATImage()
990 "MATLAB_HDR.CellType: %.20g",(double) CellType); in ReadMATImage()
995 switch (CellType) in ReadMATImage()
1090 if (CellType==miDOUBLE || CellType==miSINGLE) /* Find Min and Max Values for floats */ in ReadMATImage()
1092 …CalcMinMax(image2, image_info->endian, MATLAB_HDR.SizeX, MATLAB_HDR.SizeY, CellType, ldblk, BImgB… in ReadMATImage()
1116 if((CellType==miINT8 || CellType==miUINT8) && (MATLAB_HDR.StructureFlag & FLAG_LOGICAL)) in ReadMATImage()
[all …]
/external/swiftshader/third_party/LLVM/lib/CodeGen/
DRenderMachineFunction.h319 template <typename CellType>
322 const std::pair<CellType, unsigned> &rleAccumulator,
323 const std::map<CellType, std::string> &cellTypeStrs) const;
DRenderMachineFunction.cpp716 template <typename CellType>
719 const std::pair<CellType, unsigned> &rleAccumulator, in renderCellsWithRLE() argument
720 const std::map<CellType, std::string> &cellTypeStrs) const { in renderCellsWithRLE() argument
725 typename std::map<CellType, std::string>::const_iterator ctsItr = in renderCellsWithRLE()
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DXYLegendWidget.java42 private enum CellType { enum in XYLegendWidget