Home
last modified time | relevance | path

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

/trueos/lib/libc/db/hash/
HDhash_bigkey.c91 u_int16_t space, move_bytes, off; in __big_insert() local
105 move_bytes = MIN(space, key_size); in __big_insert()
106 off = OFFSET(p) - move_bytes; in __big_insert()
107 memmove(cp + off, key_data, move_bytes); in __big_insert()
108 key_size -= move_bytes; in __big_insert()
109 key_data += move_bytes; in __big_insert()
123 move_bytes = MIN(space, val_size); in __big_insert()
133 off = OFFSET(p) - move_bytes; in __big_insert()
134 memmove(cp + off, val_data, move_bytes); in __big_insert()
135 val_data += move_bytes; in __big_insert()
[all …]
/trueos/contrib/gcc/
HDmips-tfile.c2465 Size_t move_bytes; in add_bytes() local
2478 move_bytes = move_items * vp->object_size; in add_bytes()
2481 if (move_bytes >= 32) in add_bytes()
2483 (void) memcpy (ptr, input_ptr, move_bytes); in add_bytes()
2484 input_ptr += move_bytes; in add_bytes()
2488 while (move_bytes-- > 0) in add_bytes()
/trueos/contrib/gcc/config/rs6000/
HDrs6000.c9444 int move_bytes; in expand_block_move() local
9466 for (offset = 0; bytes > 0; offset += move_bytes, bytes -= move_bytes) in expand_block_move()
9479 move_bytes = 16; in expand_block_move()
9494 move_bytes = (bytes > 32) ? 32 : bytes; in expand_block_move()
9506 move_bytes = (bytes > 24) ? 24 : bytes; in expand_block_move()
9516 move_bytes = (bytes > 16) ? 16 : bytes; in expand_block_move()
9524 move_bytes = 8; in expand_block_move()
9530 move_bytes = (bytes > 8) ? 8 : bytes; in expand_block_move()
9535 move_bytes = 4; in expand_block_move()
9541 move_bytes = 2; in expand_block_move()
[all …]