Home
last modified time | relevance | path

Searched refs:move_bytes (Results 1 – 1 of 1) sorted by relevance

/src/lib/libc/db/hash/
H A Dhash_bigkey.c87 u_int16_t space, move_bytes, off; in __big_insert() local
101 move_bytes = MIN(space, key_size); in __big_insert()
102 off = OFFSET(p) - move_bytes; in __big_insert()
103 memmove(cp + off, key_data, move_bytes); in __big_insert()
104 key_size -= move_bytes; in __big_insert()
105 key_data += move_bytes; in __big_insert()
119 move_bytes = MIN(space, val_size); in __big_insert()
129 off = OFFSET(p) - move_bytes; in __big_insert()
130 memmove(cp + off, val_data, move_bytes); in __big_insert()
131 val_data += move_bytes; in __big_insert()
[all …]