Searched refs:base (Results 1 – 6 of 6) sorted by relevance
| /NW4C-2.0.3/include/nw/ut/ |
| D | ut_Inlines.h | 489 template <typename ValueT> ValueT RoundUp(ValueT x, unsigned int base); 493 RoundUp(ValueT* x, unsigned int base) in RoundUp() argument 496 IntPtr rounded = (value + (base - 1)) & ~(base - 1); in RoundUp() 503 RoundUp(const ValueT* x, unsigned int base) in RoundUp() argument 506 IntPtr rounded = (value + (base - 1)) & ~(base - 1); in RoundUp() 513 RoundUp(ValueT x, unsigned int base) in RoundUp() argument 515 return static_cast<ValueT>( (x + (base - 1)) & ~(base - 1) ); in RoundUp() 527 template <typename ValueT> ValueT RoundDown(ValueT x, unsigned int base); 531 RoundDown(ValueT* x, unsigned int base) in RoundDown() argument 534 IntPtr rounded = value & ~(base - 1); in RoundDown() [all …]
|
| D | ut_MovePtr.h | 93 typedef MovePtrDeleterBase<TScalar> base; typedef 96 MovePtrScalarDeleter() : base(DoDelete) { } in MovePtrScalarDeleter() 102 MovePtrScalarDeleter(os::IAllocator* allocator) : base(DoDelete, allocator) { } in MovePtrScalarDeleter() 130 typedef MovePtrDeleterBase<element_type> base; typedef 133 MovePtrArrayDeleter() : base(DoDelete) { } in MovePtrArrayDeleter() 139 MovePtrArrayDeleter(os::IAllocator* allocator) : base(DoDelete, allocator) { } in MovePtrArrayDeleter()
|
| D | ut_RuntimeTypeInfo.h | 46 #define NW_UT_RUNTIME_TYPEINFO_DEFINITION(derived,base) \ argument 47 const nw::ut::internal::RuntimeTypeInfo derived::s_TypeInfo( &base::s_TypeInfo )
|
| /NW4C-2.0.3/include/nw/demo/ |
| D | demo_GraphicsMemoryAllocator.h | 94 uptr MathRoundup(uptr x, int base) in MathRoundup() argument 96 return ((x) + ((base)-1)) & ~((base)-1); in MathRoundup()
|
| /NW4C-2.0.3/sources/libraries/font/ |
| D | font_ResFont.cpp | 37 ResolveOffset(T*& ptr, void* base) in ResolveOffset() argument 40 reinterpret_cast<u8*>(base) + reinterpret_cast<u32>(ptr) in ResolveOffset()
|
| /NW4C-2.0.3/tools/DccPlugin/Maya/scripts/ |
| D | NW4C_SetAnimRange.mel | 1890 string $base = `getAttr ($animRange + "." + "nw4c_AnimRangeName" + "[" + $idst + "]")`; 1891 string $name = $base; 1912 $name = $base + "_" + $id; 1925 //trace ("unique: " + $base + " -> " + $name);
|