Lines Matching refs:move_bytes
90 uint16_t space, move_bytes, off; in __big_insert() local
112 move_bytes = (uint16_t)kspace; in __big_insert()
113 off = OFFSET(p) - move_bytes; in __big_insert()
114 memmove(cp + off, key_data, (size_t)move_bytes); in __big_insert()
115 key_size -= move_bytes; in __big_insert()
116 key_data += move_bytes; in __big_insert()
134 move_bytes = (uint16_t)vspace; in __big_insert()
144 off = OFFSET(p) - move_bytes; in __big_insert()
145 memmove(cp + off, val_data, (size_t)move_bytes); in __big_insert()
146 val_data += move_bytes; in __big_insert()
147 val_size -= move_bytes; in __big_insert()
150 FREESPACE(p) = FREESPACE(p) - move_bytes; in __big_insert()
172 move_bytes = (uint16_t)vspace; in __big_insert()
178 move_bytes--; in __big_insert()
179 off = OFFSET(p) - move_bytes; in __big_insert()
180 memmove(cp + off, val_data, (size_t)move_bytes); in __big_insert()
181 val_size -= move_bytes; in __big_insert()
182 val_data += move_bytes; in __big_insert()