Home
last modified time | relevance | path

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

/freebsd/contrib/elftoolchain/libelftc/
H A D_libelftc.h49 struct vector_str { struct
78 void vector_str_dest(struct vector_str *_vec); argument
79 int vector_str_find(const struct vector_str *_vs, const char *_str,
81 char *vector_str_get_flat(const struct vector_str *_vs, size_t *_len);
82 bool vector_str_init(struct vector_str *_vs);
83 bool vector_str_pop(struct vector_str *_vs);
84 bool vector_str_push(struct vector_str *_vs, const char *_str,
86 bool vector_str_push_vector(struct vector_str *_dst,
87 struct vector_str *_org);
88 bool vector_str_push_vector_head(struct vector_str *_dst,
[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()
89 vector_str_find(const struct vector_str *v, const char *o, size_t l) in vector_str_find()
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()
[all …]
H A Dlibelftc_dem_gnu3.c60 struct vector_str ext_name;
85 struct vector_str output; /* output string vector */
86 struct vector_str subst; /* substitution string vector */
87 struct vector_str tmpl;
88 struct vector_str class_type;
89 struct vector_str *cur_output; /* ptr to current output vec */
133 struct vector_str *);
207 struct vector_str ret_type; in cpp_demangle_gnu3()
462 cpp_demangle_push_subst_v(struct cpp_demangle_data *ddata, struct vector_str *v) in cpp_demangle_push_subst_v()
485 struct vector_str subst_v; in cpp_demangle_push_type_qualifier()
[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 *);
318 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 *);
404 push_CTDT(const char *s, size_t l, struct vector_str *v) in push_CTDT()
/freebsd/contrib/libcxxrt/
H A Dlibelftc_dem_gnu3.c48 struct vector_str { struct
74 struct vector_str ext_name; argument
99 struct vector_str output; /* output string vector */
100 struct vector_str subst; /* substitution string vector */
101 struct vector_str tmpl;
102 struct vector_str class_type;
103 struct vector_str *cur_output; /* ptr to current output vec */
134 static size_t get_strlen_sum(const struct vector_str *v);
135 static bool vector_str_grow(struct vector_str *v);
138 get_strlen_sum(const struct vector_str *v) in get_strlen_sum()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DRegisterValue.cpp247 llvm::StringRef vector_str, in ParseVectorEncoding() argument
252 vector_str = vector_str.trim(); in ParseVectorEncoding()
253 vector_str.consume_front("{"); in ParseVectorEncoding()
254 vector_str.consume_back("}"); in ParseVectorEncoding()
255 vector_str = vector_str.trim(); in ParseVectorEncoding()
263 llvm::StringRef cdr = vector_str; in ParseVectorEncoding()
264 std::tie(car, cdr) = vector_str.split(Sep); in ParseVectorEncoding()