Home
last modified time | relevance | path

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

/external/libnfc-nxp/src/
DphFriNfc_TopazDynamicMap.c2476 uint16_t copy_length = 0; in phFriNfc_Tpz_H_RemainingReadDataCopy() local
2495 copy_length = (uint16_t)(ps_tpz_info->ReadBufferSize - in phFriNfc_Tpz_H_RemainingReadDataCopy()
2505 copy_length); in phFriNfc_Tpz_H_RemainingReadDataCopy()
2509 (void *)copy_temp_buf, copy_length); in phFriNfc_Tpz_H_RemainingReadDataCopy()
2564 uint16_t copy_length = 0; in phFriNfc_Tpz_H_CopyReadData() local
2612 copy_length = (uint16_t)(recv_length - copy_index); in phFriNfc_Tpz_H_CopyReadData()
2670 copy_length = (uint16_t) ((copy_till_address == 0) ? copy_length : in phFriNfc_Tpz_H_CopyReadData()
2676 if (0 != copy_length) in phFriNfc_Tpz_H_CopyReadData()
2682 if ((copy_length > (uint16_t) in phFriNfc_Tpz_H_CopyReadData()
2686 copy_length = (uint16_t)(exact_copy_length - in phFriNfc_Tpz_H_CopyReadData()
[all …]
/external/chromium_org/chrome/browser/extensions/api/web_request/
Dform_data_parser.cc418 size_t copy_length = literal.size(); in CreateBoundaryPatternFromLiteral() local
422 copy_length = seek_unquote.data() - copy_start; in CreateBoundaryPatternFromLiteral()
423 result.append(copy_start, copy_length); in CreateBoundaryPatternFromLiteral()
430 copy_length = (literal.data() + literal.size()) - copy_start; in CreateBoundaryPatternFromLiteral()
431 result.append(copy_start, copy_length); in CreateBoundaryPatternFromLiteral()
/external/compiler-rt/lib/asan/
Dasan_interceptors.cc422 uptr copy_length = Min(size, from_length + 1); in INTERCEPTOR() local
423 ASAN_READ_RANGE(from, copy_length); in INTERCEPTOR()
428 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1, in INTERCEPTOR()
429 from, copy_length); in INTERCEPTOR()