31 if (entry_size == 0) {
35 data_tgt += entry_size - 1;
38 case 8: *data_tgt-- = (uint8_t)(value >> 56) & 0xff;
39 case 7: *data_tgt-- = (uint8_t)(value >> 48) & 0xff;
40 case 6: *data_tgt-- = (uint8_t)(value >> 40) & 0xff;
41 case 5: *data_tgt-- = (uint8_t)(value >> 32) & 0xff;
42 case 4: *data_tgt-- = (uint8_t)(value >> 24) & 0xff;
43 case 3: *data_tgt-- = (uint8_t)(value >> 16) & 0xff;
44 case 2: *data_tgt-- = (uint8_t)(value >> 8) & 0xff;
45 case 1: *data_tgt-- = (uint8_t)(value >> 0) & 0xff;
94 if (entry_size == 0) {
99 data += entry_size - 1;
101 switch (entry_size) {
102 case 8: ret |= ((uint64_t)(*data-- & 0xff)) << 56;
103 case 7: ret |= ((uint64_t)(*data-- & 0xff)) << 48;
104 case 6: ret |= ((uint64_t)(*data-- & 0xff)) << 40;
105 case 5: ret |= ((uint64_t)(*data-- & 0xff)) << 32;
106 case 4: ret |= ((uint64_t)(*data-- & 0xff)) << 24;
107 case 3: ret |= ((uint64_t)(*data-- & 0xff)) << 16;
108 case 2: ret |= ((uint64_t)(*data-- & 0xff)) << 8;
109 case 1: ret |= ((uint64_t)(*data-- & 0xff)) << 0;