Searched refs:copy_length (Results 1 - 6 of 6) sorted by relevance

/openbsd-current/gnu/usr.bin/perl/
H A Dsv_inline.h190 #define copy_length(type, last_member) \ macro
216 copy_length(XPV, xpv_len) - STRUCT_OFFSET(XPV, xpv_cur),
222 copy_length(XINVLIST, is_offset) - STRUCT_OFFSET(XPV, xpv_cur),
228 copy_length(XPVIV, xiv_u) - STRUCT_OFFSET(XPV, xpv_cur),
234 copy_length(XPVNV, xnv_u) - STRUCT_OFFSET(XPV, xpv_cur),
239 { sizeof(XPVMG), copy_length(XPVMG, xnv_u), 0, SVt_PVMG, FALSE, HADNV,
256 copy_length(XPVAV, xav_alloc),
262 copy_length(XPVHV, xhv_max),
286 copy_length(XPVOBJ, xobject_fields),
355 copy_length(XPVH
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_interceptors.cpp431 uptr copy_length = Min(size, from_length + 1); local
432 ASAN_READ_RANGE(ctx, from, copy_length);
437 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1,
438 from, copy_length);
/openbsd-current/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_interceptors.cpp216 uptr copy_length = Min(size, from_length + 1); local
217 MEMPROF_READ_RANGE(from, copy_length);
/openbsd-current/gnu/gcc/gcc/
H A Dprotoize.c2835 size_t copy_length = (size_t) (p - clean_read_ptr);
2838 if (copy_length == 0)
2841 output_bytes (copy_start, copy_length);
2816 size_t copy_length = (size_t) (p - clean_read_ptr); local
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dprotoize.c2958 size_t copy_length = (size_t) (p - clean_read_ptr);
2961 if (copy_length == 0)
2964 output_bytes (copy_start, copy_length);
2938 size_t copy_length = (size_t) (p - clean_read_ptr); local
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc359 uptr copy_length = internal_strnlen(s, size); \
360 char *new_mem = (char *)WRAP(malloc)(copy_length + 1); \
362 COMMON_INTERCEPTOR_READ_STRING(ctx, s, Min(size, copy_length + 1)); \
365 COMMON_INTERCEPTOR_COPY_STRING(ctx, new_mem, s, copy_length); \
366 internal_memcpy(new_mem, s, copy_length); \
367 new_mem[copy_length] = '\0'; \

Completed in 333 milliseconds