/system/keymaster/ |
kdf1_test.cpp | 47 size_t output_len = expected_output.size(); local 48 uint8_t output[output_len]; 53 ASSERT_TRUE(kdf1.GenerateKey(nullptr, 0, output, output_len)); 54 EXPECT_EQ(0, memcmp(output, expected_output.data(), output_len));
|
kdf2_test.cpp | 72 size_t output_len = expected_output.size(); local 73 uint8_t output[output_len]; 79 output, output_len)); 80 EXPECT_EQ(0, memcmp(output, expected_output.data(), output_len));
|
hkdf_test.cpp | 66 size_t output_len = expected.size(); local 67 uint8_t output[output_len]; 72 output, output_len)); 73 EXPECT_EQ(0, memcmp(output, expected.data(), output_len));
|
iso18033kdf.cpp | 31 size_t output_len) { 36 if ((0xFFFFFFFFULL + start_counter_) * digest_size_ < (uint64_t)output_len) 43 size_t num_blocks = (output_len + digest_size_ - 1) / digest_size_; 79 size_t block_length = min(digest_size_, output_len - block_start);
|
hkdf.cpp | 28 size_t output_len) { 62 const size_t num_blocks = (output_len + digest_size_ - 1) / digest_size_; 88 size_t block_output_len = digest_size_ < output_len - i * digest_size_ 90 : output_len - i * digest_size_;
|
hkdf.h | 45 size_t output_len) override;
|
iso18033kdf.h | 57 size_t output_len) override;
|
kdf.h | 38 size_t output_len) = 0;
|
android_keymaster_test_utils.h | 120 int output_len = 0; local 123 output_len = printf("DEBUG: "); 126 output_len = printf("INFO: "); 129 output_len = printf("WARNING: "); 132 output_len = printf("ERROR: "); 135 output_len = printf("SEVERE: "); 139 output_len += vprintf(fmt, args); 140 output_len += printf("\n"); 141 return output_len;
|
/external/freetype/include/ |
ftgzip.h | 119 * output_len :: 123 * known in advance). After calling the function, `output_len' is the 136 FT_ULong* output_len,
|
/external/pdfium/third_party/freetype/include/freetype/ |
ftgzip.h | 119 * output_len :: 123 * known in advance). After calling the function, `output_len' is the 136 FT_ULong* output_len,
|
/external/wpa_supplicant_8/src/crypto/ |
sha1-tprf.c | 36 u8 output_len[2]; local 46 addr[3] = output_len; 51 output_len[0] = (buf_len >> 8) & 0xff; 52 output_len[1] = buf_len & 0xff;
|
/prebuilts/misc/darwin-x86_64/freetype/include/freetype2/ |
ftgzip.h | 119 * output_len :: 123 * known in advance). After calling the function, `output_len' is the 136 FT_ULong* output_len,
|
/external/libchrome/crypto/ |
openssl_util.h | 26 ScopedOpenSSLSafeSizeBuffer(unsigned char* output, size_t output_len) 28 output_len_(output_len) {
|
hmac_win.cc | 48 unsigned char* output, size_t output_len) { 85 SHA256_End(&ctx, output, NULL, (unsigned int) output_len);
|
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
audio_encoder_ilbc.cc | 117 const int output_len = WebRtcIlbcfix_Encode( local 122 RTC_CHECK_GE(output_len, 0); 124 info.encoded_bytes = static_cast<size_t>(output_len);
|
/external/wpa_supplicant_8/src/eap_common/ |
eap_pax_common.c | 24 * @output_len: Output len in bytes (W) 33 size_t output_len, u8 *output) 41 num_blocks = (output_len + EAP_PAX_MAC_LEN - 1) / EAP_PAX_MAC_LEN; 57 left = output_len;
|
eap_pax_common.h | 83 size_t output_len, u8 *output);
|
/frameworks/base/core/java/android/util/ |
Base64.java | 513 int output_len = len / 3 * 4; local 518 output_len += 4; 523 case 1: output_len += 2; break; 524 case 2: output_len += 3; break; 530 output_len += (((len-1) / (3 * Encoder.LINE_GROUPS)) + 1) * 534 encoder.output = new byte[output_len]; 537 assert encoder.op == output_len; local
|
/system/security/keystore/tests/ |
auth_token_table_test.cpp | 38 int output_len = 0; local 41 output_len = printf("DEBUG: "); 44 output_len = printf("INFO: "); 47 output_len = printf("WARNING: "); 50 output_len = printf("ERROR: "); 53 output_len = printf("SEVERE: "); 57 output_len += vprintf(fmt, args); 58 output_len += printf("\n"); 59 return output_len;
|
/external/freetype/src/gzip/ |
ftgzip.c | 702 FT_ULong* output_len, 712 if ( !memory || ! output_len || !output ) 721 stream.avail_out = (uInt)*output_len; 740 *output_len = stream.total_out; 774 FT_ULong* output_len, 780 FT_UNUSED( output_len );
|
/external/libpng/ |
pngwutil.c | 474 png_uint_32 output_len; /* Final compressed length */ member in struct:__anon16801 484 comp->output_len = 0; 518 png_uint_32 output_len; local 526 output_len = png_ptr->zstream.avail_out; 546 if (output_len + prefix_len > PNG_UINT_31_MAX) 574 output_len += png_ptr->zstream.avail_out; 593 * be subtracted from output_len. 595 output_len -= png_ptr->zstream.avail_out; 597 comp->output_len = output_len; 640 png_uint_32 output_len = comp->output_len; local [all...] |
/external/pdfium/third_party/lpng_v163/ |
pngwutil.c | 473 png_uint_32 output_len; /* Final compressed length */
member in struct:__anon22297 483 comp->output_len = 0;
517 png_uint_32 output_len;
local 525 output_len = png_ptr->zstream.avail_out;
545 if (output_len + prefix_len > PNG_UINT_31_MAX)
573 output_len += png_ptr->zstream.avail_out;
592 * be subtracted from output_len.
594 output_len -= png_ptr->zstream.avail_out;
596 comp->output_len = output_len;
638 png_uint_32 output_len = comp->output_len; local [all...] |
/external/ppp/pppd/plugins/ |
winbind.c | 214 size_t output_len = 4 * ((len + 2) / 3) + 2; local 216 char *result = malloc(output_len); /* get us plenty of space */
|
/external/libchrome/base/strings/ |
string_number_conversions_unittest.cc | 678 size_t output_len; member in struct:base::__anon15225 706 for (size_t j = 0; j < cases[i].output_len; ++j)
|