Searched refs:ndest (Results 1 - 3 of 3) sorted by relevance

/external/elfutils/libelf/
H A Dversion_xlate.h161 GElf_Verneed *ndest; local
183 ndest = (GElf_Verneed *) ((char *) dest + need_offset);
189 ndest->vn_version = bswap_16 (nsrc->vn_version);
190 ndest->vn_cnt = bswap_16 (nsrc->vn_cnt);
191 ndest->vn_file = bswap_32 (nsrc->vn_file);
192 ndest->vn_aux = bswap_32 (nsrc->vn_aux);
193 ndest->vn_next = bswap_32 (nsrc->vn_next);
195 aux_offset = need_offset + ndest->vn_aux;
231 ndest->vn_version = bswap_16 (nsrc->vn_version);
232 ndest
[all...]
/external/valgrind/main/include/
H A Dpub_tool_libcbase.h90 extern Char* VG_(strncpy) ( Char* dest, const Char* src, SizeT ndest );
112 /* Like strncpy(), but if 'src' is longer than 'ndest' inserts a '\0' as the
114 extern void VG_(strncpy_safely) ( Char* dest, const Char* src, SizeT ndest );
/external/valgrind/main/coregrind/
H A Dm_libcbase.c277 void VG_(strncpy_safely) ( Char* dest, const Char* src, SizeT ndest )
283 if (i >= ndest-1) return;
289 Char* VG_(strncpy) ( Char* dest, const Char* src, SizeT ndest )
293 if (i >= ndest) return dest; /* reached limit */
297 while (i < ndest) dest[i++] = 0;

Completed in 209 milliseconds