uint_least16_t uint_least32_t uint_least64_t分别是宽度至少有 8、16、32 和 64 位的最小的无符号整数类型 uintmax_t最大宽度的无符号整数类型 uintptr_t足以保有指针的无符号整数类型 实现可在N不是 8、 16、 32 或 64 时定义 typedef 名intN_t、int_fastN_t、int_leastN_t、uintN_t、uint...
uintptr_t (可选) 足以保有指向void的指针的无符号整数类型 (typedef) 实现可在N不是 8、 16、 32 或 64 时定义 typedef 名intN_t、int_fastN_t、int_leastN_t、uintN_t、uint_fastN_t及uint_leastN_t。形为intN_t的 typedef 名只有在实现支持有该宽度而无填充的整数类型才可以定义。从而std::...
uintptr_t (optional) unsigned integer type capable of holding a pointer tovoid (typedef) Macros Signed integers : minimum value INT8_MININT16_MININT32_MININT64_MIN (optional) minimum value ofstd::int8_t,std::int16_t,std::int32_tandstd::int64_trespectively ...
atomic_int_least32_t (自 C++11 起) std::atomicstd::int_least32_t (typedef) atomic_uint_least32_t (自 C++11 起) std::atomicstd::uint_least32_t (typedef) atomic_int_least64_t (自 C++11 起) std::atomicstd::int_least64_t (typedef) atomic_uint_least64_t (自 C++11 起) std:...
uint_least64_tsmallest unsigned integer type with width of at least 8, 16, 32 and 64 bits respectively uintmax_tmaximum width unsigned integer type uintptr_tunsigned integer type capable of holding a pointer The implementation may define typedef namesintN_t,int_fastN_t,int_leastN_t,uintN...
push_back(new ScopedT(mEnv, buffer)); 310 jbyte* ptr = const_cast<jbyte*>(mScopedBuffers.back()->get()); 311 if (ptr == NULL) { 312 return false; 313 } 314 struct iovec iov; 315 iov.iov_base = reinterpret_cast<void*>(ptr + offsets[i]); 316 iov.iov_len = byteCounts[...
typedef FbxUInt* FbxUIntPtr Definition at line 50 of file fbxtypes.h.◆ FbxFloatPtrtypedef FbxFloat* FbxFloatPtr Definition at line 51 of file fbxtypes.h.◆ FbxDoublePtrtypedef FbxDouble* FbxDoublePtr Definition at line 52 of file fbxtypes.h....
atomic_intptr_t (C++11)(可选) std::atomic<std::intptr_t> (typedef) atomic_uintptr_t (C++11)(可选) std::atomic<std::uintptr_t> (typedef) atomic_size_t (C++11) std::atomic<std::size_t> (typedef) atomic_ptrdiff_t (C++11) std::atomic<std::ptrdiff_t> (typed...
atomic_int_fast32_t(C11)_Atomicint_fast32_t atomic_uint_fast32_t(C11)_Atomicuint_fast32_t atomic_int_fast64_t(C11)_Atomicint_fast64_t atomic_uint_fast64_t(C11)_Atomicuint_fast64_t atomic_intptr_t(C11)_Atomicintptr_t atomic_uintptr_t(C11)_Atomicuintptr_t ...
Fastest integer types with at least given width (int_fastN_tanduint_fastN_t) Smallest integer types with at least given width (int_leastN_tanduint_leastN_t) Integer types capable for cast between object pointers (intptr_tanduintptr_t) ...