Searched refs:base (Results 1 – 6 of 6) sorted by relevance
| /NW4C-1.3.3/include/nw/ut/ |
| D | ut_Inlines.h | 487 template <typename ValueT> ValueT RoundUp(ValueT x, unsigned int base); 491 RoundUp(ValueT* x, unsigned int base) in RoundUp() argument 494 IntPtr rounded = (value + (base - 1)) & ~(base - 1); in RoundUp() 501 RoundUp(const ValueT* x, unsigned int base) in RoundUp() argument 504 IntPtr rounded = (value + (base - 1)) & ~(base - 1); in RoundUp() 511 RoundUp(ValueT x, unsigned int base) in RoundUp() argument 513 return static_cast<ValueT>( (x + (base - 1)) & ~(base - 1) ); in RoundUp() 525 template <typename ValueT> ValueT RoundDown(ValueT x, unsigned int base); 529 RoundDown(ValueT* x, unsigned int base) in RoundDown() argument 532 IntPtr rounded = value & ~(base - 1); in RoundDown() [all …]
|
| D | ut_MovePtr.h | 91 typedef MovePtrDeleterBase<TScalar> base; typedef 94 MovePtrScalarDeleter() : base(DoDelete) { } in MovePtrScalarDeleter() 100 MovePtrScalarDeleter(os::IAllocator* allocator) : base(DoDelete, allocator) { } in MovePtrScalarDeleter() 128 typedef MovePtrDeleterBase<element_type> base; typedef 131 MovePtrArrayDeleter() : base(DoDelete) { } in MovePtrArrayDeleter() 137 MovePtrArrayDeleter(os::IAllocator* allocator) : base(DoDelete, allocator) { } in MovePtrArrayDeleter()
|
| D | ut_RuntimeTypeInfo.h | 44 #define NW_UT_RUNTIME_TYPEINFO_DEFINITION(derived,base) \ argument 45 const nw::ut::internal::RuntimeTypeInfo derived::s_TypeInfo( &base::s_TypeInfo )
|
| /NW4C-1.3.3/include/nw/demo/ |
| D | demo_GraphicsMemoryAllocator.h | 92 uptr MathRoundup(uptr x, int base) in MathRoundup() argument 94 return ((x) + ((base)-1)) & ~((base)-1); in MathRoundup()
|
| /NW4C-1.3.3/sources/libraries/font/ |
| D | font_ResFont.cpp | 35 ResolveOffset(T*& ptr, void* base) in ResolveOffset() argument 38 reinterpret_cast<u8*>(base) + reinterpret_cast<u32>(ptr) in ResolveOffset()
|
| /NW4C-1.3.3/tools/DccPlugin/Maya/scripts/ |
| D | NW4C_SetAnimRange.mel | 1891 string $base = `getAttr ($animRange + "." + "nw4c_AnimRangeName" + "[" + $idst + "]")`; 1892 string $name = $base; 1913 $name = $base + "_" + $id; 1926 //trace ("unique: " + $base + " -> " + $name);
|