Home
last modified time | relevance | path

Searched refs:vector_str (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/elftoolchain/libelftc/
H A D_libelftc.h49 struct vector_str { struct
77 void vector_str_dest(struct vector_str *_vec); argument
78 int vector_str_find(const struct vector_str *_vs, const char *_str,
81 bool vector_str_init(struct vector_str *_vs);
82 bool vector_str_pop(struct vector_str *_vs);
83 bool vector_str_push(struct vector_str *_vs, const char *_str,
85 bool vector_str_push_vector(struct vector_str *_dst,
86 struct vector_str *_org);
87 bool vector_str_push_vector_head(struct vector_str *_dst,
88 struct vector_str *_org);
[all …]
H A Dlibelftc_vstr.c45 static size_t get_strlen_sum(const struct vector_str *v);
46 static bool vector_str_grow(struct vector_str *v);
49 get_strlen_sum(const struct vector_str *v) in get_strlen_sum()
68 vector_str_dest(struct vector_str *v) in vector_str_dest()
112 vector_str_get_flat(const struct vector_str *v, size_t *l) in vector_str_get_flat()
145 vector_str_grow(struct vector_str *v) in vector_str_grow()
178 vector_str_init(struct vector_str *v) in vector_str_init()
202 vector_str_pop(struct vector_str *v) in vector_str_pop()
224 vector_str_push(struct vector_str *v, const char *str, size_t len) in vector_str_push()
248 vector_str_push_vector_head(struct vector_str *dst, struct vector_str *org) in vector_str_push_vector_head()
[all …]
H A Dlibelftc_dem_gnu3.c60 struct vector_str ext_name;
87 struct vector_str tmpl;
88 struct vector_str class_type;
133 struct vector_str *);
207 struct vector_str ret_type; in cpp_demangle_gnu3()
485 struct vector_str subst_v; in cpp_demangle_push_type_qualifier()
1222 struct vector_str *output; in cpp_demangle_read_expression_flat()
1807 struct vector_str *output; in cpp_demangle_read_name_flat()
2341 struct vector_str *output; in cpp_demangle_read_subst_stdtmpl()
2407 struct vector_str *v; in cpp_demangle_read_tmpl_args()
[all …]
H A Dlibelftc_dem_arm.c66 struct vector_str vec;
67 struct vector_str arg;
78 static bool push_CTDT(const char *, size_t, struct vector_str *);
317 push_CTDT(const char *s, size_t l, struct vector_str *v) in push_CTDT()
H A Dlibelftc_dem_gnu2.c64 struct vector_str vec;
65 struct vector_str arg;
76 static bool push_CTDT(const char *, size_t, struct vector_str *);
403 push_CTDT(const char *s, size_t l, struct vector_str *v) in push_CTDT()
/freebsd-12.1/contrib/libcxxrt/
H A Dlibelftc_dem_gnu3.c47 struct vector_str { struct
68 struct vector_str ext_name; argument
83 struct vector_str output_tmp;
85 struct vector_str tmpl;
86 struct vector_str class_type;
309 vector_str_push_vector_head(struct vector_str *dst, struct vector_str *org) in vector_str_push_vector_head()
393 struct vector_str *);
679 struct vector_str subst_v; in cpp_demangle_push_type_qualifier()
1350 struct vector_str *output; in cpp_demangle_read_expression_flat()
1836 struct vector_str *output; in cpp_demangle_read_name_flat()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DRegisterValue.cpp295 llvm::StringRef vector_str, in ParseVectorEncoding() argument
300 vector_str = vector_str.trim(); in ParseVectorEncoding()
301 vector_str.consume_front("{"); in ParseVectorEncoding()
302 vector_str.consume_back("}"); in ParseVectorEncoding()
303 vector_str = vector_str.trim(); in ParseVectorEncoding()
311 llvm::StringRef cdr = vector_str; in ParseVectorEncoding()
312 std::tie(car, cdr) = vector_str.split(Sep); in ParseVectorEncoding()