Home
last modified time | relevance | path

Searched refs:type_size (Results 1 – 13 of 13) sorted by relevance

/src/usr.bin/dtc/
H A Dinput_buffer.hh234 int type_size = sizeof(T); in consume_binary() local
235 if (cursor % type_size != 0) in consume_binary()
237 align = type_size - (cursor % type_size); in consume_binary()
239 if (size < cursor + align + type_size) in consume_binary()
244 assert(cursor % type_size == 0); in consume_binary()
246 for (int i=0 ; i<type_size ; ++i) in consume_binary()
/src/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp324 std::optional<uint64_t> type_size = ast_type.GetByteSize( in GetValueAsData() local
327 if (type_size && *type_size == 0) in GetValueAsData()
343 if (type_size) in GetValueAsData()
344 limit_byte_size = *type_size; in GetValueAsData()
/src/sys/kern/
H A Dkern_environment.c755 int type_size, bool allow_signed) in getenv_array() argument
773 size /= type_size; in getenv_array()
841 switch (type_size) { in getenv_array()
880 *psize = n * type_size; in getenv_array()
/src/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_dispatch_hier.h613 int type_size; member
638 traits_t<T>::type_size != type_size || n != num_layers) in need_to_reallocate()
671 type_size = traits_t<T>::type_size; in allocate_hier()
H A Dkmp_os.h248 static const int type_size = sizeof(signed_t);
258 static const int type_size = sizeof(unsigned_t);
266 static const int type_size = sizeof(signed_t);
276 static const int type_size = sizeof(signed_t);
286 static const int type_size = sizeof(unsigned_t);
H A Dkmp_dispatch.h145 kmp_uint32 type_size; member
H A Dkmp_dispatch.cpp248 pr->type_size = traits_t<T>::type_size; // remember the size of variables in __kmp_dispatch_init_algorithm()
446 if (traits_t<T>::type_size > 4) { in __kmp_dispatch_init_algorithm()
1378 if (traits_t<T>::type_size > 4) { in __kmp_dispatch_next_algorithm()
2378 if (traits_t<T>::type_size > 4) { in __kmp_dispatch_next()
H A Dkmp.h2029 kmp_int32 type_size; /* the size of types in private_info */ member
/src/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp154 size_t type_size = m_target_data.getTypeStoreSize(type); in AssignToMatchType() local
156 if (type_size > 8) in AssignToMatchType()
159 if (type_size != 1) in AssignToMatchType()
160 type_size = PowerOf2Ceil(type_size); in AssignToMatchType()
162 scalar = value.zextOrTrunc(type_size * 8); in AssignToMatchType()
/src/sys/contrib/dev/rtw89/
H A Dser.c81 u32 type_size; \
88 p->type_size = sizeof(p->data); \
/src/contrib/llvm-project/lldb/source/Target/
H A DThread.cpp2056 std::optional<uint64_t> type_size = type.GetByteSize(nullptr); in GetSiginfoValue() local
2057 assert(type_size); in GetSiginfoValue()
2059 GetSiginfo(*type_size); in GetSiginfoValue()
/src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp773 size_t type_size = GetSizeOfType(result.type, index.tpi()); in GetVariableLocationInfo() local
910 offset_to_size, type_size, module); in GetVariableLocationInfo()
/src/sys/sys/
H A Dsystm.h418 int type_size, bool allow_signed);