OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:BoxType
(Results
1 - 3
of
3
) sorted by null
/external/eigen/test/
geo_alignedbox.cpp
18
template<typename
BoxType
> void alignedbox(const
BoxType
& _box)
23
typedef typename
BoxType
::Index Index;
24
typedef typename
BoxType
::Scalar Scalar;
26
typedef Matrix<Scalar,
BoxType
::AmbientDimAtCompileTime, 1> VectorType;
36
BoxType
b0(dim);
37
BoxType
b1(VectorType::Random(dim),VectorType::Random(dim));
38
BoxType
b2;
51
BoxType
*bp0 = new
BoxType
(dim)
[
all
...]
/external/eigen/unsupported/test/
BVH.cpp
46
typedef AlignedBox<double, Dim>
BoxType
;
52
bool intersectVolume(const
BoxType
&r) { ++calls; return r.contains(p); }
60
bool intersectVolumeVolume(const
BoxType
&r1, const
BoxType
&r2) { ++calls; return !(r1.intersection(r2)).isNull(); }
61
bool intersectVolumeObject(const
BoxType
&r, const BallType &b) { ++calls; return r.squaredExteriorDistance(b.center) < SQR(b.radius); }
62
bool intersectObjectVolume(const BallType &b, const
BoxType
&r) { ++calls; return r.squaredExteriorDistance(b.center) < SQR(b.radius); }
69
bool intersectVolumeObject(const
BoxType
&r, const VectorType &v) { ++calls; return r.contains(v); }
77
double minimumOnVolume(const
BoxType
&r) { ++calls; return r.squaredExteriorDistance(p); }
79
double minimumOnVolumeVolume(const
BoxType
&r1, const
BoxType
&r2) { ++calls; return r1.squaredExteriorDistance(r2);
[
all
...]
/external/chromium_org/media/mp4/
box_definitions.cc
16
FourCC FileType::
BoxType
() const { return FOURCC_FTYP; }
26
FourCC ProtectionSystemSpecificHeader::
BoxType
() const { return FOURCC_PSSH; }
44
FourCC SampleAuxiliaryInformationOffset::
BoxType
() const { return FOURCC_SAIO; }
70
FourCC SampleAuxiliaryInformationSize::
BoxType
() const { return FOURCC_SAIZ; }
86
FourCC OriginalFormat::
BoxType
() const { return FOURCC_FRMA; }
94
FourCC SchemeType::
BoxType
() const { return FOURCC_SCHM; }
107
FourCC TrackEncryption::
BoxType
() const { return FOURCC_TENC; }
127
FourCC SchemeInfo::
BoxType
() const { return FOURCC_SCHI; }
135
FourCC ProtectionSchemeInfo::
BoxType
() const { return FOURCC_SINF; }
159
FourCC MovieHeader::
BoxType
() const { return FOURCC_MVHD;
[
all
...]
Completed in 223 milliseconds