/external/boringssl/src/crypto/bio/ |
D | pair.c | 274 size_t write_offset; in bio_write() local 279 write_offset = b->offset + b->len; in bio_write() 280 if (write_offset >= b->size) { in bio_write() 281 write_offset -= b->size; in bio_write() 285 if (write_offset + rest <= b->size) { in bio_write() 289 chunk = b->size - write_offset; in bio_write() 292 OPENSSL_memcpy(b->buf + write_offset, buf, chunk); in bio_write()
|
/external/ltp/testcases/kernel/syscalls/fallocate/ |
D | fallocate01.c | 229 loff_t write_offset, lseek_offset; in runtest() local 260 write_offset = random() % len; in runtest() 261 lseek_offset = lseek(fd, write_offset, SEEK_CUR); in runtest() 262 if (lseek_offset != offset + write_offset) { in runtest()
|
/external/libchrome/base/strings/ |
D | string_util.cc | 743 size_t write_offset = offset; in DoReplaceSubstringsAfterOffset() local 746 str->replace(write_offset, replace_length, in DoReplaceSubstringsAfterOffset() 748 write_offset += replace_length; in DoReplaceSubstringsAfterOffset() 756 memmove(&(*str)[write_offset], &(*str)[read_offset], in DoReplaceSubstringsAfterOffset() 758 write_offset += length; in DoReplaceSubstringsAfterOffset() 761 str->resize(write_offset); in DoReplaceSubstringsAfterOffset() 788 for (size_t prev_match = str_length, write_offset = final_length; ; in DoReplaceSubstringsAfterOffset() local 794 write_offset -= length; in DoReplaceSubstringsAfterOffset() 795 memmove(&(*str)[write_offset], &(*str)[read_offset], in DoReplaceSubstringsAfterOffset() 798 write_offset -= replace_length; in DoReplaceSubstringsAfterOffset() [all …]
|
/external/syslinux/core/lwip/src/api/ |
D | api_msg.c | 625 conn->write_offset = 0; 852 msg->conn->write_offset == 0); 1210 conn->write_offset < conn->current_msg->msg.w.len); 1212 dataptr = (u8_t*)conn->current_msg->msg.w.dataptr + conn->write_offset; 1213 diff = conn->current_msg->msg.w.len - conn->write_offset; 1237 …LWIP_ASSERT("do_writemore: invalid length!", ((conn->write_offset + len) <= conn->current_msg->msg… 1260 conn->write_offset += len; 1261 if (conn->write_offset == conn->current_msg->msg.w.len) { 1264 conn->write_offset = 0; 1327 msg->conn->write_offset == 0); [all …]
|
/external/libmojo/mojo/edk/system/ |
D | data_pipe_producer_dispatcher.cc | 38 uint32_t write_offset; member 324 state->write_offset = write_offset_; in EndSerialize() 402 dispatcher->write_offset_ = state->write_offset; in Deserialize()
|
/external/mesa3d/src/mesa/drivers/dri/i915/ |
D | intel_buffer_objects.c | 639 GLintptr read_offset, GLintptr write_offset, in intel_bufferobj_copy_subdata() argument 661 memmove(ptr + write_offset, ptr + read_offset, size); in intel_bufferobj_copy_subdata() 672 memcpy(dst_ptr + write_offset, src_ptr + read_offset, size); in intel_bufferobj_copy_subdata() 686 dst_bo, write_offset, in intel_bufferobj_copy_subdata()
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
D | intel_buffer_objects.c | 639 GLintptr read_offset, GLintptr write_offset, in intel_bufferobj_copy_subdata() argument 661 memmove(ptr + write_offset, ptr + read_offset, size); in intel_bufferobj_copy_subdata() 672 memcpy(dst_ptr + write_offset, src_ptr + read_offset, size); in intel_bufferobj_copy_subdata() 686 dst_bo, write_offset, in intel_bufferobj_copy_subdata()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_buffer_objects.c | 639 GLintptr read_offset, GLintptr write_offset, in intel_bufferobj_copy_subdata() argument 661 memmove(ptr + write_offset, ptr + read_offset, size); in intel_bufferobj_copy_subdata() 672 memcpy(dst_ptr + write_offset, src_ptr + read_offset, size); in intel_bufferobj_copy_subdata() 686 dst_bo, write_offset, in intel_bufferobj_copy_subdata()
|
/external/syslinux/gpxe/src/drivers/net/ |
D | atl1e.c | 764 u32 packet_size, write_offset; in atl1e_clean_rx_irq() local 767 write_offset = *(rx_page->write_offset_addr); in atl1e_clean_rx_irq() 768 if (rx_page->read_offset >= write_offset) in atl1e_clean_rx_irq() 834 write_offset = *(rx_page->write_offset_addr); in atl1e_clean_rx_irq() 835 } while (rx_page->read_offset < write_offset); in atl1e_clean_rx_irq()
|
/external/syslinux/core/lwip/src/include/lwip/ |
D | api.h | 181 size_t write_offset; member
|