Home
last modified time | relevance | path

Searched refs:dir (Results 1 – 6 of 6) sorted by relevance

/CTR-SDK-1.0.0/CTR_SDK/build/runner/
Drun.sh62 dir=`dirname ${mcr}`
63 arch=`basename \`dirname ${dir}\``
65 if (debugger_available ${dir}); then
71 process_list_candidate=${dir}/${base}_process.list
73 cp -f ${process_list_candidate} ${dir}/process.list
/CTR-SDK-1.0.0/CTR_SDK/include/nn/math/
Dmath_Geometry.h81 LINE3(const VEC3& Pt, const VEC3& dir, bool isNormalized = false)
82 : P(Pt), d(dir) in P()
114 RAY3(const VEC3& Pt, const VEC3& dir, bool isNormalized = false)
115 : P(Pt), d(dir) in P()
/CTR-SDK-1.0.0/CTR_SDK/build/omake/
Dcommondefs.om94 HORIZON_INSTALL_ROOT = $(dir $"$(getenv HORIZON_INSTALL_ROOT)")
98 INSTALL_ROOT = $(dir $(HORIZON_INSTALL_ROOT))
102 INSTALL_ROOT = $(dir $(INSTALL_ROOT))
114 INSTALL_ROOT_IMAGES = $(dir $(INSTALL_ROOT)$(DIRSEP)$(INSTALL_IMAGES_DIR))
115 INSTALL_ROOT_LIBRARIES = $(dir $(INSTALL_ROOT)$(DIRSEP)$(SUBDIR_LIBRARIES))
275 INCLUDES = $(dir $(INCLUDES))
706 ROMFS_DEPENDENCIES = $(ls -R, $(dir $(ROMFS_ROOT)))
946 ARCHIVE_DEPENDENCIES = $(ls -R, $(dir $(srcdir)))
Dtargetdefs.om27 return $(dir $(HORIZON_ROOT))
33 return $(dir $(HORIZON_ROOT))
43 return $(dir .)
Dtestutil.om82 ARCHIVE_DEPENDENCIES = $(ls -R, $(dir $(srcdir)))
/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/math/
Dmath_Geometry.cpp984 VEC3 dir; in IntersectionSegment3Plane() local
985 VEC3Sub(&dir, &S->P1, &S->P0); in IntersectionSegment3Plane()
986 f32 P0P1 = FSqrt(dir.LenSq()); in IntersectionSegment3Plane()
987 LINE3 L(S->P0, dir); in IntersectionSegment3Plane()
1138 VEC3 dir; in IntersectionSegment3Sphere() local
1139 VEC3Sub(&dir, &S->P1, &S->P0); in IntersectionSegment3Sphere()
1140 f32 P0P1 = FSqrt(dir.LenSq()); in IntersectionSegment3Sphere()
1141 LINE3 L(S->P0, dir); in IntersectionSegment3Sphere()
1210 IntersectionRay3AABB_(f32 min, f32 max, f32 o, f32 dir, f32& tNear, f32& tFar) in IntersectionRay3AABB_() argument
1212 if (FAbs(dir) < internal::epsilon) in IntersectionRay3AABB_()
[all …]