HomeSort by relevance Sort by last modified time
    Searched refs:copy_length (Results 1 - 11 of 11) sorted by null

  /external/brotli/c/enc/
hash.h 132 size_t copy_length, size_t backward_reference_offset) {
133 return BROTLI_SCORE_BASE + BROTLI_LITERAL_BYTE_SCORE * (score_t)copy_length -
138 size_t copy_length) {
139 return BROTLI_LITERAL_BYTE_SCORE * (score_t)copy_length +
backward_references_hq.c 548 size_t copy_length = ZopfliNodeCopyLength(next); local
565 copy_length, (int)len_code - (int)copy_length, dist_code);
576 pos += copy_length;
  /system/update_engine/scripts/
update_device.py 44 def CopyFileObjLength(fsrc, fdst, buffer_size=128 * 1024, copy_length=None):
54 copy_length: maximum number of bytes to copy, or None to copy everything.
62 if copy_length is not None:
63 chunk_size = min(chunk_size, copy_length - copied)
172 CopyFileObjLength(f, self.wfile, copy_length=end_range - start_range)
  /external/brotli/c/dec/
state.h 162 int copy_length; member in struct:BrotliDecoderStateStruct
decode.c 1521 uint32_t copy_length; local
    [all...]
  /external/compiler-rt/lib/asan/
asan_interceptors.cc 519 uptr copy_length = Min(size, from_length + 1); local
520 ASAN_READ_RANGE(ctx, from, copy_length);
525 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1,
526 from, copy_length);
  /art/compiler/optimizing/
intrinsics_arm64.cc     [all...]
intrinsics_arm_vixl.cc 153 const Location& copy_length,
163 if (copy_length.IsConstant()) {
164 int32_t constant = Int32ConstantFrom(copy_length);
167 __ Add(end, base, Operand(RegisterFrom(copy_length), vixl32::LSL, element_size_shift));
    [all...]
intrinsics_x86.cc     [all...]
intrinsics_x86_64.cc     [all...]
  /external/python/cpython3/Objects/
unicodeobject.c 1028 Py_ssize_t copy_length; local
    [all...]

Completed in 281 milliseconds