Home
last modified time | relevance | path

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

/mbedtls-latest/scripts/
Dgenerate_visualc_files.pl117 open my $fh, '<:crlf', $filename or die "Could not read $filename\n";
118 my $content = <$fh>;
119 close $fh;
127 open my $fh, '>:crlf', $filename or die "Could not write to $filename\n";
128 print $fh $content;
129 close $fh;
Dmassif_max.pl17 open my $fh, '<', $ARGV[0] or die;
18 { local $/ = 'snapshot='; @snaps = <$fh>; }
19 close $fh or die;
/mbedtls-latest/tests/scripts/
Dcheck-doxy-blocks.pl31 open my $fh, '<', $fname or die "Failed to open '$fname': $!\n";
36 while (my $line = <$fh>) {
46 close $fh;
Ddepends.py372 with open('include/mbedtls/cipher.h', encoding="utf-8") as fh:
373 for line in fh:
/mbedtls-latest/library/
Daesni.c185 __m128i fh = _mm_slli_epi64(dx, 62); // d<<62:stuff in gcm_mix() local
187 __m128i hh = _mm_srli_si128(_mm_xor_si128(_mm_xor_si128(eh, fh), gh), 8); // 0:missing bits of d in gcm_mix()