Home
last modified time | relevance | path

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

/third_party/ffmpeg/libavformat/
Drtpdec_rfc4175.c191 int copy_offset; in rfc4175_handle_packet() local
209 copy_offset = (line * data->width + offset) * data->pgroup / data->xinc; in rfc4175_handle_packet()
210 if (copy_offset + length > data->frame_size) in rfc4175_handle_packet()
213 dest = data->frame + copy_offset; in rfc4175_handle_packet()
/third_party/icu/icu4c/source/i18n/
Ddouble-conversion-bignum.cpp390 const int copy_offset = used_bigits_; in Square() local
392 RawBigit(copy_offset + i) = RawBigit(i); in Square()
402 const Chunk chunk1 = RawBigit(copy_offset + bigit_index1); in Square()
403 const Chunk chunk2 = RawBigit(copy_offset + bigit_index2); in Square()
417 const Chunk chunk1 = RawBigit(copy_offset + bigit_index1); in Square()
418 const Chunk chunk2 = RawBigit(copy_offset + bigit_index2); in Square()
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
Dbignum.cc376 const int copy_offset = used_bigits_; in Square() local
378 RawBigit(copy_offset + i) = RawBigit(i); in Square()
388 const Chunk chunk1 = RawBigit(copy_offset + bigit_index1); in Square()
389 const Chunk chunk2 = RawBigit(copy_offset + bigit_index2); in Square()
403 const Chunk chunk1 = RawBigit(copy_offset + bigit_index1); in Square()
404 const Chunk chunk2 = RawBigit(copy_offset + bigit_index2); in Square()
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion-bignum.cpp376 int copy_offset = used_digits_; in Square() local
378 bigits_[copy_offset + i] = bigits_[i]; in Square()
388 Chunk chunk1 = bigits_[copy_offset + bigit_index1]; in Square()
389 Chunk chunk2 = bigits_[copy_offset + bigit_index2]; in Square()
403 Chunk chunk1 = bigits_[copy_offset + bigit_index1]; in Square()
404 Chunk chunk2 = bigits_[copy_offset + bigit_index2]; in Square()
/third_party/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion-bignum.cpp390 const int copy_offset = used_bigits_; in Square() local
392 RawBigit(copy_offset + i) = RawBigit(i); in Square()
402 const Chunk chunk1 = RawBigit(copy_offset + bigit_index1); in Square()
403 const Chunk chunk2 = RawBigit(copy_offset + bigit_index2); in Square()
417 const Chunk chunk1 = RawBigit(copy_offset + bigit_index1); in Square()
418 const Chunk chunk2 = RawBigit(copy_offset + bigit_index2); in Square()
/third_party/node/deps/icu-small/source/i18n/
Ddouble-conversion-bignum.cpp390 const int copy_offset = used_bigits_; in Square() local
392 RawBigit(copy_offset + i) = RawBigit(i); in Square()
402 const Chunk chunk1 = RawBigit(copy_offset + bigit_index1); in Square()
403 const Chunk chunk2 = RawBigit(copy_offset + bigit_index2); in Square()
417 const Chunk chunk1 = RawBigit(copy_offset + bigit_index1); in Square()
418 const Chunk chunk2 = RawBigit(copy_offset + bigit_index2); in Square()
/third_party/libffi/src/mips/
Dffi.c641 int copy_offset = 0; in ffi_call_int() local
658 copy_offset = 4; in ffi_call_int()
664 memcpy(ecif.rvalue, rvalue_copy + copy_offset, cif->rtype->size); in ffi_call_int()
/third_party/lwip/src/core/ipv6/
Dnd6.c761 u16_t copy_offset = offset + SIZEOF_RDNSS_OPTION_BASE; in nd6_input() local
769 …for (n = 0; (rdnss_server_idx < DNS_MAX_SERVERS) && (n < num); n++, copy_offset += sizeof(ip6_addr… in nd6_input()
773 …if (pbuf_copy_partial(p, &rdnss_address, sizeof(ip6_addr_p_t), copy_offset) == sizeof(ip6_addr_p_t… in nd6_input()
/third_party/mesa3d/src/compiler/glsl/
Dir_constant_expression.cpp1121 store->copy_offset(value, offset); in constant_expression_evaluate_expression_list()
Dir.h2313 void copy_offset(ir_constant *src, int offset);
Dir.cpp1370 ir_constant::copy_offset(ir_constant *src, int offset) in copy_offset() function in ir_constant