/external/google-breakpad/src/client/windows/crash_generation/ |
D | client_info.cc | 140 SIZE_T bytes_count = 0; in GetClientExceptionInfo() local 145 &bytes_count)) { in GetClientExceptionInfo() 149 return bytes_count == sizeof(*ex_info); in GetClientExceptionInfo() 153 SIZE_T bytes_count = 0; in GetClientThreadId() local 158 &bytes_count)) { in GetClientThreadId() 162 return bytes_count == sizeof(*thread_id); in GetClientThreadId() 189 SIZE_T bytes_count = 0; in PopulateCustomInfo() local 209 &bytes_count)) { in PopulateCustomInfo() 214 return (bytes_count == read_count); in PopulateCustomInfo()
|
D | crash_generation_server.cc | 343 DWORD bytes_count = 0; in HandleConnectingState() local 346 &bytes_count, in HandleConnectingState() 366 DWORD bytes_count = 0; in HandleConnectedState() local 371 &bytes_count, in HandleConnectedState() 394 DWORD bytes_count = 0; in HandleReadingState() local 397 &bytes_count, in HandleReadingState() 399 if (success && bytes_count == sizeof(ProtocolMessage)) { in HandleReadingState() 469 DWORD bytes_count = 0; in HandleWritingState() local 472 &bytes_count, in HandleWritingState() 490 DWORD bytes_count = 0; in HandleWriteDoneState() local [all …]
|
D | crash_generation_client.cc | 208 DWORD bytes_count = 0; in RequestUpload() local 209 bool success = WriteFile(pipe, &msg, sizeof(msg), &bytes_count, NULL) != 0; in RequestUpload() 244 DWORD bytes_count = 0; in RegisterClient() local 253 &bytes_count, in RegisterClient() 265 if (!WriteFile(pipe, &ack_msg, sizeof(ack_msg), &bytes_count, NULL)) { in RegisterClient()
|
/external/harfbuzz_ng/test/fuzzing/ |
D | hb-subset-fuzzer.cc | 34 unsigned int bytes_count = 0; in trySubset() local 36 if (data[i]) ++bytes_count; in trySubset() 37 assert (bytes_count || !length); in trySubset()
|
/external/google-breakpad/src/client/windows/unittests/ |
D | crash_generation_server_test.cc | 184 DWORD bytes_count = 0; in DoFaultyClient() local 190 &bytes_count, in DoFaultyClient() 204 &bytes_count, in DoFaultyClient() 228 &bytes_count, in DoFaultyClient()
|
/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/table_functions/ |
D | dfs_weight_bounded.cc | 234 raw_source_ids.bytes_count); in ComputeTable() 245 raw_dest_ids.bytes_count); in ComputeTable() 256 raw_edge_weights.bytes_count); in ComputeTable() 267 raw_root_ids.bytes_count); in ComputeTable() 278 raw_root_target_weights.bytes_count); in ComputeTable()
|
/external/perfetto/src/trace_processor/db/ |
D | compare.h | 177 return compare::Bytes(a.bytes_value, a.bytes_count, b.bytes_value, in SqlValue() 178 b.bytes_count); in SqlValue()
|
/external/perfetto/include/perfetto/trace_processor/ |
D | basic_types.h | 247 value.bytes_count = size; in Bytes() 281 size_t bytes_count = 0; member
|
/external/perfetto/src/trace_processor/rpc/ |
D | query_result_serializer_unittest.cc | 43 if (a.bytes_count != b.bytes_count) in operator ==() 45 return memcmp(a.bytes_value, b.bytes_value, a.bytes_count) == 0; in operator ==() 56 return stream << "Bytes[" << v.bytes_count << "]:" in operator <<() 58 v.bytes_count) in operator <<()
|
D | query_result_serializer.cc | 176 uint32_t len = static_cast<uint32_t>(value.bytes_count); in SerializeBatch()
|
/external/perfetto/src/traceconv/ |
D | trace_to_firefox.cc | 43 static_cast<std::streamsize>(it.Get(0).bytes_count)); in ExportFirefoxProfile()
|
/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/functions/ |
D | base64.cc | 58 src_size = in.bytes_count; in Run()
|
D | pprof_functions.cc | 79 value->bytes_count); in Step()
|
D | stack_functions.cc | 93 stack->AppendRawProtoBytes(value.bytes_value, value.bytes_count); in RunImpl()
|
/external/perfetto/src/trace_processor/ |
D | iterator_impl.h | 107 value.bytes_count = in Get()
|
/external/perfetto/src/trace_processor/sqlite/ |
D | sqlite_utils.h | 108 sql_value.bytes_count = static_cast<size_t>(sqlite3_value_bytes(value)); in SqliteValueToSqlValue() 147 static_cast<int>(value.bytes_count),
|
/external/scapy/scapy/layers/ |
D | dns.py | 754 bytes_count = 1 757 bytes_count = int(math.ceil(max // 8)) + 1 # use at least 1 byte 758 if bytes_count > 32: # Don't encode more than 256 bits / values 759 bytes_count = 32 761 bitmap += struct.pack("BB", wb, bytes_count) 773 ) for tmp in range(bytes_count)
|
/external/perfetto/src/trace_processor/metrics/ |
D | metrics.cc | 143 size_t size = value.bytes_count; in AppendSqlValue() 416 value.bytes_count); in AddSqlValue() 698 size_t size = proto.bytes_count; in Run()
|
/external/perfetto/src/trace_processor/perfetto_sql/engine/ |
D | created_function.cc | 85 PERFETTO_DCHECK(result.bytes_count == 0); in EvaluateScalarStatement() 131 ptr + value.bytes_count); in StoredSqlValue()
|
/external/python/cpython3/Objects/clinic/ |
D | bytesobject.c.h | 615 {"count", _PyCFunction_CAST(bytes_count), METH_FASTCALL, bytes_count__doc__}, 622 bytes_count(PyBytesObject *self, PyObject *const *args, Py_ssize_t nargs) in bytes_count() function
|
/external/mesa3d/src/imgui/ |
D | imgui_widgets.cpp | 3014 void ImGuiInputTextCallbackData::DeleteChars(int pos, int bytes_count) in DeleteChars() argument 3016 IM_ASSERT(pos + bytes_count <= BufTextLen); in DeleteChars() 3018 const char* src = Buf + pos + bytes_count; in DeleteChars() 3023 if (CursorPos + bytes_count >= pos) in DeleteChars() 3024 CursorPos -= bytes_count; in DeleteChars() 3029 BufTextLen -= bytes_count; in DeleteChars()
|
D | imgui.h | 1443 IMGUI_API void DeleteChars(int pos, int bytes_count);
|
D | imgui.cpp | 1739 int bytes_count = 0; in ImTextCountUtf8BytesFromStr() local 1744 bytes_count++; in ImTextCountUtf8BytesFromStr() 1746 bytes_count += ImTextCountUtf8BytesFromChar(c); in ImTextCountUtf8BytesFromStr() 1748 return bytes_count; in ImTextCountUtf8BytesFromStr()
|