Home
last modified time | relevance | path

Searched refs:slice_length (Results 1 - 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/objects/
H A Dfixed-array-inl.h575 void ByteArray::copy_in(int index, const byte* buffer, int slice_length) { in copy_in() argument
577 DCHECK_GE(slice_length, 0); in copy_in()
578 DCHECK_LE(slice_length, kMaxInt - index); in copy_in()
579 DCHECK_LE(index + slice_length, length()); in copy_in()
581 memcpy(reinterpret_cast<void*>(dst_addr), buffer, slice_length); in copy_in() local
584 void ByteArray::copy_out(int index, byte* buffer, int slice_length) { in copy_out() argument
586 DCHECK_GE(slice_length, 0); in copy_out()
587 DCHECK_LE(slice_length, kMaxInt - index); in copy_out()
588 DCHECK_LE(index + slice_length, length()); in copy_out()
590 memcpy(buffer, reinterpret_cast<void*>(src_addr), slice_length); in copy_out()
[all...]
H A Dfixed-array.h527 inline void copy_out(int index, byte* buffer, int slice_length);
528 inline void copy_in(int index, const byte* buffer, int slice_length);
/third_party/ffmpeg/libavcodec/
H A Dsvq3.c1023 int slice_bits, slice_bytes, slice_length; in svq3_decode_slice_header() local
1026 slice_length = show_bits(&s->gb, 8 * length); in svq3_decode_slice_header()
1027 slice_bits = slice_length * 8; in svq3_decode_slice_header()
1028 slice_bytes = slice_length + length - 1; in svq3_decode_slice_header()
1049 memmove(s->slice_buf, &s->slice_buf[slice_length], length - 1); in svq3_decode_slice_header()
/third_party/protobuf/python/google/protobuf/pyext/
H A Dmessage.cc1006 Py_ssize_t length, from, to, step, slice_length; in DeleteRepeatedField() local
1013 from = to = step = slice_length = 0; in DeleteRepeatedField()
1017 length, &from, &to, &step, &slice_length); in DeleteRepeatedField() local
1021 length, &from, &to, &step, &slice_length); in DeleteRepeatedField()

Completed in 9 milliseconds