/third_party/ltp/tools/sparse/sparse-src/ |
D | sparse-llvm.c | 28 static LLVMTypeRef symbol_type(struct symbol *sym); 32 return symbol_type(sym->ctype.base_type); in func_return_type() 46 arg_type[idx++] = symbol_type(arg_sym); in sym_func_type() 61 elem_type = symbol_type(base_type); in sym_array_type() 88 member_type = symbol_type(member); in sym_struct_type() 122 type = symbol_type(sym->ctype.base_type); in sym_ptr_type() 175 static LLVMTypeRef symbol_type(struct symbol *sym) in symbol_type() function 181 return symbol_type(sym->ctype.base_type); in symbol_type() 192 ret = symbol_type(sym->ctype.base_type); in symbol_type() 224 return symbol_type(insn->type); in insn_symbol_type() [all …]
|
/third_party/selinux/checkpolicy/ |
D | module_compiler.h | 29 int declare_symbol(uint32_t symbol_type, 43 int require_symbol(uint32_t symbol_type, 68 int is_id_in_scope(uint32_t symbol_type, const_hashtab_key_t id);
|
D | module_compiler.c | 65 static void print_error_msg(int ret, uint32_t symbol_type) in print_error_msg() argument 72 yyerror2("Duplicate declaration of %s", flavor_str[symbol_type]); in print_error_msg() 75 yyerror2("Could not declare %s here", flavor_str[symbol_type]); in print_error_msg() 154 static int create_symbol(uint32_t symbol_type, hashtab_key_t key, hashtab_datum_t datum, in create_symbol() argument 164 ret = symtab_insert(policydbp, symbol_type, key, datum, scope, in create_symbol() 169 hashtab_search(policydbp->symtab[symbol_type].table, in create_symbol() 173 if (symbol_type == SYM_LEVELS) { in create_symbol() 196 int declare_symbol(uint32_t symbol_type, in declare_symbol() argument 201 int ret = create_symbol(symbol_type, key, datum, dest_value, SCOPE_DECL); in declare_symbol() 207 if (ebitmap_set_bit(decl->declared.scope + symbol_type, in declare_symbol() [all …]
|
/third_party/toybox/kconfig/ |
D | lkc_proto.h | 24 P(sym_type_name,const char *,(enum symbol_type type)); 26 P(sym_get_type,enum symbol_type,(struct symbol *sym));
|
D | expr.h | 62 enum symbol_type { enum 75 enum symbol_type type;
|
D | lkc.h | 56 enum symbol_type stype;
|
D | symbol.c | 80 enum symbol_type sym_get_type(struct symbol *sym) in sym_get_type() 82 enum symbol_type type = sym->type; in sym_get_type() 93 const char *sym_type_name(enum symbol_type type) in sym_type_name()
|
D | conf.c | 69 enum symbol_type type = sym_get_type(sym); in conf_askvalue()
|
/third_party/boost/boost/spirit/home/support/utree/ |
D | utree.hpp | 89 symbol_type, // An UTF-8 symbol name enumerator 115 case utree_type::symbol_type: { out << "symbol"; break; } in operator <<() 229 boost::iterator_range<char const*>, utree_type::symbol_type 232 std::string, utree_type::symbol_type
|
D | utree_traits.hpp | 457 case utree_type::symbol_type: in is_valid() 950 return d == utree_type::symbol_type; in is_compatible() 963 return d == utree_type::symbol_type; in is_compatible()
|
/third_party/boost/libs/spirit/test/qi/ |
D | utree4.cpp | 91 ut.which() == utree_type::symbol_type && check(ut, "xy")); in main() 99 ut.which() == utree_type::symbol_type && check(ut, "xy")); in main() 103 ut.which() == utree_type::symbol_type && check(ut, "xy")); in main()
|
D | utree1.cpp | 75 ut.which() == utree_type::symbol_type && check(ut, "xyz")); in main()
|
/third_party/curl/packages/vms/ |
D | generate_vax_transfer.com | 98 $ symbol_type = f$element(2, "=", line_u) - ")" 100 $ if symbol_type .nes. "PROCEDURE" 118 $ write vopt tab, symbol_type, tab, symbol_name 151 $ symbol_type = f$element(2, "=", line_u) - ")"
|
/third_party/abseil-cpp/absl/debugging/internal/ |
D | vdso_support.h | 90 int symbol_type, SymbolInfo *info_out) const;
|
D | elf_mem_image.h | 108 int symbol_type, SymbolInfo *info_out) const;
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/ |
D | vdso_support.h | 90 int symbol_type, SymbolInfo *info_out) const;
|
D | elf_mem_image.h | 108 int symbol_type, SymbolInfo *info_out) const;
|
/third_party/selinux/libsepol/src/ |
D | link.c | 76 uint32_t symbol_type; member 2002 req->symbol_type = i; in is_decl_requires_met() 2048 req->symbol_type = SYM_CLASSES; in is_decl_requires_met() 2078 if (req.symbol_type == SYM_CLASSES) { in debug_requirements() 2107 symtab_names[req.symbol_type], in debug_requirements() 2109 symbol_type][req. in debug_requirements() 2117 symtab_names[req.symbol_type], in debug_requirements() 2119 symbol_type][req. in debug_requirements() 2138 if (req->symbol_type == SYM_CLASSES) { in print_missing_requirements() 2157 symtab_names[req->symbol_type], in print_missing_requirements() [all …]
|
D | module_to_cil.c | 491 …th_start(struct policydb *pdb, struct stack *decl_stack, int start, uint32_t symbol_type, char *id) in is_id_in_scope_with_start() argument 498 scope = hashtab_search(pdb->scope[symbol_type].table, id); in is_id_in_scope_with_start() 516 …in_ancestor_scope(struct policydb *pdb, struct stack *decl_stack, char *type, uint32_t symbol_type) in is_id_in_ancestor_scope() argument 520 return is_id_in_scope_with_start(pdb, decl_stack, start, symbol_type, type); in is_id_in_ancestor_scope() 523 …nt is_id_in_scope(struct policydb *pdb, struct stack *decl_stack, char *type, uint32_t symbol_type) in is_id_in_scope() argument 527 return is_id_in_scope_with_start(pdb, decl_stack, start, symbol_type, type); in is_id_in_scope()
|
/third_party/libsoup/libsoup/ |
D | Soup-2.4.metadata | 23 .new symbol_type="function"
|
/third_party/boost/boost/spirit/home/support/utree/detail/ |
D | utree_detail2.hpp | 490 case type::symbol_type: in apply() 560 case type::symbol_type: in apply() 1279 if (t == type::symbol_type) in size() 1436 case type::symbol_type: in free() 1498 case type::symbol_type: in copy()
|
/third_party/selinux/checkpolicy/test/ |
D | dispol.c | 295 static void display_id(policydb_t *p, FILE *fp, uint32_t symbol_type, in display_id() argument 298 const char *id = p->sym_val_to_name[symbol_type][symbol_value]; in display_id()
|
D | dismod.c | 100 static void display_id(policydb_t * p, FILE * fp, uint32_t symbol_type, in display_id() argument 103 char *id = p->sym_val_to_name[symbol_type][symbol_value]; in display_id() 105 (scope_datum_t *) hashtab_search(p->scope[symbol_type].table, id); in display_id()
|
/third_party/ltp/tools/sparse/sparse-src/Documentation/release-notes/ |
D | v0.5.0.rst | 190 * sparse, llvm: Fix symbol_type() for bitfields and enums 243 * sparse, llvm: cache symbol_type() result
|
/third_party/boost/libs/spirit/example/qi/ |
D | reference.cpp | 465 BOOST_ASSERT(ut.which() == utree_type::symbol_type); in main() 470 BOOST_ASSERT(ut.which() == utree_type::symbol_type); in main()
|