Home | History | Annotate | Download | only in gdb.base

Lines Matching defs:pack

32 pack (unsigned char b[MAX_BYTES], int size, int nr)
83 /* Pack Byte, Half, Word and Giant arrays with byte-ordered values.
86 pack (b, 1, 2);
87 pack (h, 2, 2);
88 pack (w, 4, 2);
89 pack (g, 8, 2);
90 pack (c, sizeof (char), 2);
91 pack (s, sizeof (short), 2);
92 pack (i, sizeof (int), 2);
93 pack (l, sizeof (long), 2);
94 pack (ll, sizeof (long long), 2);