Lines Matching refs:move_bytes
94 __uint16_t space, move_bytes, off; in __big_insert() local
108 move_bytes = MIN(space, key_size); in __big_insert()
109 off = OFFSET(p) - move_bytes; in __big_insert()
110 memmove(cp + off, key_data, move_bytes); in __big_insert()
111 key_size -= move_bytes; in __big_insert()
112 key_data += move_bytes; in __big_insert()
125 move_bytes = MIN(FREESPACE(p), val_size); in __big_insert()
126 off = OFFSET(p) - move_bytes; in __big_insert()
128 memmove(cp + off, val_data, move_bytes); in __big_insert()
129 val_data += move_bytes; in __big_insert()
130 val_size -= move_bytes; in __big_insert()
132 FREESPACE(p) = FREESPACE(p) - move_bytes; in __big_insert()
145 move_bytes = MIN(space, val_size); in __big_insert()
151 move_bytes--; in __big_insert()
152 off = OFFSET(p) - move_bytes; in __big_insert()
153 memmove(cp + off, val_data, move_bytes); in __big_insert()
154 val_size -= move_bytes; in __big_insert()
155 val_data += move_bytes; in __big_insert()