HomeSort by: relevance | last modified time | path
    Searched defs:unpacked (Results 1 - 5 of 5) sorted by relevancy

  /src/external/gpl3/gdb.old/dist/gdb/arch/
aarch64-mte-linux.c 36 for (int unpacked = 0, packed = 0; unpacked < tags.size ();
37 unpacked += 2, packed++)
38 tags[packed] = (tags[unpacked + 1] << 4) | tags[unpacked];
53 /* An unpacked MTE tags vector will have twice the number of elements
54 compared to an unpacked one. */
57 int unpacked = 0, packed = 0; local
61 /* We are not interested in the first unpacked element, just discard
63 unpacked_tags[unpacked] = (tags[packed] >> 4) & 0xf
    [all...]
  /src/external/gpl3/gdb/dist/gdb/arch/
aarch64-mte-linux.c 36 for (int unpacked = 0, packed = 0; unpacked < tags.size ();
37 unpacked += 2, packed++)
38 tags[packed] = (tags[unpacked + 1] << 4) | tags[unpacked];
53 /* An unpacked MTE tags vector will have twice the number of elements
54 compared to an unpacked one. */
57 int unpacked = 0, packed = 0; local
61 /* We are not interested in the first unpacked element, just discard
63 unpacked_tags[unpacked] = (tags[packed] >> 4) & 0xf
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_stack_store.cpp 257 state = State::Unpacked;
259 case State::Unpacked:
273 uptr *unpacked = local
279 unpacked_end = UncompressDelta(header->data, ptr + header->size, unpacked,
280 unpacked + kBlockSizeFrames);
283 unpacked_end = UncompressLzw(header->data, ptr + header->size, unpacked,
284 unpacked + kBlockSizeFrames);
291 CHECK_EQ(kBlockSizeFrames, unpacked_end - unpacked);
293 MprotectReadOnly(reinterpret_cast<uptr>(unpacked), kBlockSizeBytes);
294 atomic_store(&data_, reinterpret_cast<uptr>(unpacked), memory_order_release)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
ada-lang.c 2157 computed based on the unpacked element size. */
2624 unpack that data into UNPACKED. UNPACKED_LEN is the size in bytes of
2625 the unpacked buffer.
2627 The size of the unpacked buffer (UNPACKED_LEN) is expected to be large
2639 gdb_byte *unpacked, int unpacked_len,
2650 int unpacked_idx; /* Index into the unpacked buffer */
2651 int unpacked_bytes_left; /* Number of bytes left to set in unpacked. */
2661 /* Make sure that unpacked is large enough to receive the BIT_SIZE
2727 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT);
2741 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT)
2762 gdb_byte *unpacked; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
ada-lang.c 2155 computed based on the unpacked element size. */
2622 unpack that data into UNPACKED. UNPACKED_LEN is the size in bytes of
2623 the unpacked buffer.
2625 The size of the unpacked buffer (UNPACKED_LEN) is expected to be large
2637 gdb_byte *unpacked, int unpacked_len,
2648 int unpacked_idx; /* Index into the unpacked buffer */
2649 int unpacked_bytes_left; /* Number of bytes left to set in unpacked. */
2659 /* Make sure that unpacked is large enough to receive the BIT_SIZE
2725 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT);
2739 unpacked[unpacked_idx] = accum & ~(~0UL << HOST_CHAR_BIT)
2760 gdb_byte *unpacked; local
    [all...]

Completed in 26 milliseconds