Searched refs:fh (Results 1 – 5 of 5) sorted by relevance
/mbedtls-latest/scripts/ |
D | generate_visualc_files.pl | 117 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;
|
D | massif_max.pl | 17 open my $fh, '<', $ARGV[0] or die; 18 { local $/ = 'snapshot='; @snaps = <$fh>; } 19 close $fh or die;
|
/mbedtls-latest/tests/scripts/ |
D | check-doxy-blocks.pl | 31 open my $fh, '<', $fname or die "Failed to open '$fname': $!\n"; 36 while (my $line = <$fh>) { 46 close $fh;
|
D | depends.py | 372 with open('include/mbedtls/cipher.h', encoding="utf-8") as fh: 373 for line in fh:
|
/mbedtls-latest/library/ |
D | aesni.c | 185 __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()
|