Home
last modified time | relevance | path

Searched refs:maxwords (Results 1 – 5 of 5) sorted by relevance

/external/tcpdump/
Dprint-smb.c486 const u_char *maxwords; in print_lockingandx() local
502 maxwords = min(words + 1 + wct * 2, maxbuf); in print_lockingandx()
504 smb_fdata(ndo, words + 1, f1, maxwords, unicodestr); in print_lockingandx()
801 const u_char *words, *maxwords, *data; in print_smb() local
852 maxwords = min(data, maxbuf); in print_smb()
872 for (i = 0; &words[1 + 2 * i] < maxwords; i++) { in print_smb()
/external/elfutils/src/
Delflint.c2084 uint64_t maxwords = shdr->sh_size / sizeof (Elf64_Xword); in check_sysv_hash64() local
2085 if (maxwords < 2 in check_sysv_hash64()
2086 || maxwords - 2 < nbucket in check_sysv_hash64()
2087 || maxwords - 2 - nbucket < nchain) in check_sysv_hash64()
2531 uint64_t maxwords = hash_data->d_size / sizeof (Elf64_Xword); in compare_hash_gnu_hash() local
2532 if (maxwords < 2 in compare_hash_gnu_hash()
2533 || maxwords - 2 < nbucket in compare_hash_gnu_hash()
2534 || maxwords - 2 - nbucket < nchain) in compare_hash_gnu_hash()
Dstrip.c2343 uint64_t maxwords = hashd->d_size / sizeof (Elf64_Xword); in handle_elf() local
2344 elf_assert (maxwords >= 2 in handle_elf()
2345 && maxwords - 2 >= nbucket in handle_elf()
2346 && maxwords - 2 - nbucket >= nchain); in handle_elf()
Dreadelf.c3318 uint64_t maxwords = data->d_size / sizeof (Elf64_Xword); in handle_sysv_hash64() local
3319 if (maxwords < 2 in handle_sysv_hash64()
3320 || maxwords - 2 < nbucket in handle_sysv_hash64()
3321 || maxwords - 2 - nbucket < nchain) in handle_sysv_hash64()
DChangeLog622 (check_sysv_hash64): Calculate maxwords used separately before