Home
last modified time | relevance | path

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

/picolibc-latest/newlib/libc/search/
Dhash_bigkey.c94 __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()
[all …]