Lines Matching defs:unpacked
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);
2767 gdb_byte *unpacked;
2850 unpacked = v->contents_writeable ().data ();
2854 memset (unpacked, 0, type->length ());
2860 /* Small short-cut: If we've unpacked the data into a buffer
2863 memcpy (unpacked, staging.data (), staging.size ());
2867 unpacked, type->length (),