Searched refs:current_ptr (Results 1 – 3 of 3) sorted by relevance
/external/libcxxabi/src/ |
D | private_typeinfo.cpp | 726 const void* current_ptr, in process_static_type_above_dst() argument 731 if (current_ptr == info->static_ptr) in process_static_type_above_dst() 772 const void* current_ptr, in process_static_type_below_dst() argument 775 if (current_ptr == info->static_ptr) in process_static_type_below_dst() 839 const void* current_ptr, in search_below_dst() argument 845 process_static_type_below_dst(info, current_ptr, path_below); in search_below_dst() 850 if (current_ptr == info->dst_ptr_leading_to_static_ptr || in search_below_dst() 851 current_ptr == info->dst_ptr_not_leading_to_static_ptr) in search_below_dst() 887 p->search_above_dst(info, current_ptr, current_ptr, public_path, use_strcmp); in search_below_dst() 929 info->dst_ptr_not_leading_to_static_ptr = current_ptr; in search_below_dst() [all …]
|
/external/perfetto/src/trace_processor/ |
D | fuchsia_trace_utils.cc | 34 base::StringView ReadInlineString(const uint64_t** current_ptr, in ReadInlineString() argument 39 base::StringView s(reinterpret_cast<const char*>(*current_ptr), len); in ReadInlineString() 40 *current_ptr += len_words; in ReadInlineString() 48 ThreadInfo ReadInlineThread(const uint64_t** current_ptr) { in ReadInlineThread() argument 50 ret.pid = **current_ptr; in ReadInlineThread() 51 (*current_ptr)++; in ReadInlineThread() 52 ret.tid = **current_ptr; in ReadInlineThread() 53 (*current_ptr)++; in ReadInlineThread() 57 int64_t ReadTimestamp(const uint64_t** current_ptr, uint64_t ticks_per_second) { in ReadTimestamp() argument 58 uint64_t ticks = **current_ptr; in ReadTimestamp() [all …]
|
/external/toybox/lib/ |
D | password.c | 157 char *current_ptr = NULL; in update_password() local 162 current_ptr = get_nextcolon(line, 2); //past passwd in update_password() 165 current_ptr = get_nextcolon(current_ptr, 1); in update_password() 166 fprintf(newfp, "%s\n",current_ptr); in update_password() 167 } else fprintf(newfp, "%s\n",current_ptr); in update_password() 172 current_ptr = get_nextcolon(line, 3); //past gid/admin list in update_password() 173 *current_ptr = '\0'; in update_password()
|