Searched refs:oct_str (Results 1 – 6 of 6) sorted by relevance
/external/perfetto/tools/proto_filter/ |
D | proto_filter.cc | 227 std::string oct_str; in Main() local 228 oct_str.reserve(filter_data.size() * 4 + 64); in Main() 229 oct_str.append("trace_filter{\n bytecode: \""); in Main() 237 oct_str.append(buf); in Main() 239 oct_str.append("\"\n}\n"); in Main() 240 PERFETTO_LOG("Writing filter bytecode (%zu bytes) into %s", oct_str.size(), in Main() 242 base::WriteAll(*fd, oct_str.data(), oct_str.size()); in Main()
|
/external/strace/tests/ |
D | process_vm_readv_writev.c | 99 static const char oct_str[] = "01234567"; in print_iov() local 110 oct_str + (c >> 6) : "", in print_iov() 112 oct_str + ((c >> 3) & 7) : "", in print_iov()
|
/external/strace/tests-m32/ |
D | process_vm_readv_writev.c | 99 static const char oct_str[] = "01234567"; in print_iov() local 110 oct_str + (c >> 6) : "", in print_iov() 112 oct_str + ((c >> 3) & 7) : "", in print_iov()
|
/external/strace/tests-mx32/ |
D | process_vm_readv_writev.c | 99 static const char oct_str[] = "01234567"; in print_iov() local 110 oct_str + (c >> 6) : "", in print_iov() 112 oct_str + ((c >> 3) & 7) : "", in print_iov()
|
/external/llvm-project/lldb/source/Utility/ |
D | Args.cpp | 497 char oct_str[5] = {'\0', '\0', '\0', '\0', '\0'}; in EncodeEscapeSequences() local 501 oct_str[i] = p[i]; in EncodeEscapeSequences() 507 unsigned long octal_value = ::strtoul(oct_str, nullptr, 8); in EncodeEscapeSequences()
|
/external/llvm-project/lldb/source/Core/ |
D | FormatEntity.cpp | 2108 char oct_str[5] = {0, 0, 0, 0, 0}; in ParseInternal() local 2112 oct_str[i] = format[i]; in ParseInternal() 2118 unsigned long octal_value = ::strtoul(oct_str, nullptr, 8); in ParseInternal()
|