| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | ProgramStateTrait.h | 155 return p ? data_type((typename data_type::TreeTy *) *p) 167 static data_type Set(data_type B, key_type K, value_type E, 172 static data_type Remove(data_type B, key_type K, context_type F) { 201 return p ? data_type((typename data_type::TreeTy *) *p) 209 static data_type Add(data_type B, key_type K, context_type F) { 213 static data_type Remove(data_type B, key_type K, context_type F) { 241 static data_type Add(data_type L, key_type K, context_type F) { 273 using data_type = bool; 277 : data_type(); 291 : data_type(); [all …]
|
| H A D | ProgramState.h | 56 typedef typename T::data_type data_type; typedef 57 static inline void *MakeVoidPtr(data_type D) { return (void*) D; } in MakeVoidPtr() 58 static inline data_type MakeData(void *const* P) { in MakeData() 59 return P ? (data_type) *P : (data_type) 0; in MakeData() 414 typename ProgramStateTrait<T>::data_type 442 set(typename ProgramStateTrait<T>::data_type D) const; 620 ProgramStateRef set(ProgramStateRef st, typename ProgramStateTrait<T>::data_type D) { in set() 853 ProgramStateRef ProgramState::set(typename ProgramStateTrait<T>::data_type D) const { in set()
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | c-aux-info.c | 379 data_type = concat (data_type, "; ", NULL); in gen_type() 381 data_type = concat ("{ ", data_type, "}", NULL); in gen_type() 383 data_type = concat ("struct ", data_type, NULL); in gen_type() 398 data_type = concat (data_type, "; ", NULL); in gen_type() 400 data_type = concat ("{ ", data_type, "}", NULL); in gen_type() 402 data_type = concat ("union ", data_type, NULL); in gen_type() 414 data_type = concat (data_type, in gen_type() 418 data_type = concat (data_type, ", ", NULL); in gen_type() 420 data_type = concat ("{ ", data_type, " }", NULL); in gen_type() 422 data_type = concat ("enum ", data_type, NULL); in gen_type() [all …]
|
| H A D | ddg.h | 93 dep_data_type data_type; member
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderInternals.h | 54 using data_type = SmallVector<DeclID, 4>; variable 57 data_type &Data; 60 data_type_builder(data_type &D) : Data(D) {} in data_type_builder() 111 static void MergeDataInto(const data_type &From, data_type_builder &To) { in MergeDataInto() 170 using data_type = IdentifierInfo *; 176 data_type ReadData(const internal_key_type& k, 197 struct data_type { struct 229 data_type ReadData(Selector, const unsigned char* d, unsigned DataLen); 263 using data_type = HeaderFileInfo; variable 280 data_type ReadData(internal_key_ref,const unsigned char *d, unsigned DataLen);
|
| H A D | MultiOnDiskHashTable.h | 51 using data_type = typename Info::data_type; variable 76 llvm::DenseMap<internal_key_type, data_type> Data; 229 data_type find(const external_key_type &EKey) { in find() 230 data_type Result; in find() 262 data_type findAll() { in findAll() 263 data_type Result; in findAll()
|
| H A D | GlobalModuleIndex.cpp | 75 typedef SmallVector<unsigned, 2> data_type; typedef in __anon2d7d61850311::IdentifierIndexReaderTrait 105 static data_type ReadData(const internal_key_type& k, in ReadData() 110 data_type Result; in ReadData() 497 typedef std::pair<StringRef, bool> data_type; typedef in __anon2d7d61850511::InterestingASTIdentifierLookupTrait 499 data_type ReadData(const internal_key_type& k, in ReadData() 694 typedef SmallVector<unsigned, 2> data_type; typedef in __anon2d7d61850711::IdentifierIndexWriterTrait
|
| /freebsd-12.1/contrib/binutils/gas/config/ |
| H A D | tc-score.c | 1017 switch (data_type) in validate_immediate() 1083 if (data_type == _SIMM14_NEG || data_type == _IMM16_NEG) in validate_immediate() 1207 switch (data_type) in data_op2() 1260 if ((data_type != _SIMM14_NEG) && (data_type != _SIMM16_NEG) && (data_type != _IMM16_NEG)) in data_op2() 1279 if ((score_df_range[data_type].range[0] != 0) || (data_type == _IMM5_RANGE_8_31)) in data_op2() 2592 else if ((data_type == _IMM5_RSHIFT_2) || (data_type == _IMM10_RSHIFT_2)) in validate_immediate_align() 2618 && (data_type != _IMM4) in exp_ldst_offset() 2619 && (data_type != _IMM5) in exp_ldst_offset() 2620 && (data_type != _IMM8) in exp_ldst_offset() 2626 data_type += 24; in exp_ldst_offset() [all …]
|
| /freebsd-12.1/sys/cddl/compat/opensolaris/kern/ |
| H A D | opensolaris_kstat.c | 116 KASSERT(ksent->data_type == KSTAT_DATA_UINT64, in kstat_install() 117 ("data_type=%d", ksent->data_type)); in kstat_install() 142 kstat_named_init(kstat_named_t *knp, const char *name, uchar_t data_type) in kstat_named_init() argument 146 knp->data_type = data_type; in kstat_named_init()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | ImmutableMap.h | 33 using data_type = const S; member 69 using data_type = typename ValInfo::data_type; variable 119 TreeTy *T = F.add(Old.Root, std::pair<key_type,data_type>(K,D)); in add() 224 data_type* lookup(key_type_ref K) const { in lookup() 264 using data_type = typename ValInfo::data_type; variable 330 TreeTy *NewT = Factory->add(Root, std::pair<key_type, data_type>(K, D)); in add() 384 data_type *lookup(key_type_ref K) const { in lookup()
|
| /freebsd-12.1/contrib/llvm/include/llvm/Support/ |
| H A D | OnDiskHashTable.h | 64 typename Info::data_type Data; 285 typedef typename Info::data_type data_type; typedef 333 data_type operator*() const { return InfoObj->ReadData(Key, Data, Len); } 438 typedef typename base_type::data_type data_type; typedef 551 typedef data_type value_type;
|
| /freebsd-12.1/sys/dev/bhnd/nvram/ |
| H A D | bhnd_nvram_value.c | 130 bhnd_nvram_type data_type; /**< data type */ variable 139 .data_type = BHND_NVRAM_TYPE_NULL, 1396 *otype = value->data_type; in bhnd_nvram_val_bytes() 1451 return (value->data_type); in bhnd_nvram_val_type() 1462 return (bhnd_nvram_base_type(value->data_type)); in bhnd_nvram_val_elem_type() 1727 value->data_type = itype; in bhnd_nvram_val_set() 1770 value->data_type = itype; \ in bhnd_nvram_val_set_inline() 1917 value->data_type = itype; in bhnd_nvram_val_alloc_bytes() 1933 value->data_type = itype; in bhnd_nvram_val_alloc_bytes()
|
| H A D | bhnd_nvram_value.h | 224 bhnd_nvram_type data_type; /**< data type */ member
|
| /freebsd-12.1/sys/dev/fb/ |
| H A D | splash.c | 68 if (decoder->data_type == NULL) in splash_find_data() 71 image_module = preload_search_by_type(decoder->data_type); in splash_find_data()
|
| H A D | splashreg.h | 43 char *data_type; member
|
| H A D | splash_txt.c | 61 .data_type = SPLASH_IMAGE,
|
| H A D | splash_pcx.c | 59 .data_type = SPLASH_IMAGE,
|
| /freebsd-12.1/contrib/llvm/lib/ProfileData/ |
| H A D | InstrProfReader.cpp | 502 using data_type = InstrProfLookupTrait::data_type; typedef 519 data_type InstrProfLookupTrait::ReadData(StringRef K, const unsigned char *D, in ReadData() 525 return data_type(); in ReadData() 534 return data_type(); in ReadData() 542 return data_type(); in ReadData() 547 return data_type(); in ReadData() 560 return data_type(); in ReadData()
|
| /freebsd-12.1/sys/netinet/libalias/ |
| H A D | alias_cuseeme.c | 158 u_int16_t data_type; member 222 if (ntohs(cu->data_type) == 101) in AliasHandleCUSeeMeIn()
|
| /freebsd-12.1/sys/cddl/compat/opensolaris/sys/ |
| H A D | kstat.h | 71 uchar_t data_type; member
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ |
| H A D | BlockCounter.cpp | 61 CountMap::data_type* T = M.lookup(CountKey(CallSite, BlockID)); in getNumVisited()
|
| /freebsd-12.1/contrib/libstdc++/include/debug/ |
| H A D | hash_multimap.h | 60 typedef typename _Base::data_type data_type; typedef
|
| H A D | hash_map.h | 60 typedef typename _Base::data_type data_type; typedef
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | Disassembler.cpp | 765 OptionValue::Type data_type) { in ReadArray() argument 769 auto option_value_sp = std::make_shared<OptionValueArray>(1u << data_type); in ReadArray() 805 switch (data_type) { in ReadArray() 830 OptionValue::Type data_type = OptionValue::eTypeInvalid; in ReadDictionary() local 893 value_sp = ReadArray(in_file, out_stream, data_type); in ReadDictionary() 900 data_type = OptionValue::eTypeInvalid; in ReadDictionary() 917 data_type = OptionValue::eTypeUInt64; in ReadDictionary()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ProfileData/ |
| H A D | InstrProfReader.h | 294 using data_type = ArrayRef<NamedInstrProfRecord>; variable 322 data_type ReadData(StringRef K, const unsigned char *D, offset_type N);
|