HomeSort by relevance Sort by last modified time
    Searched full:block_type (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/dropbear/libtomcrypt/src/pk/pkcs1/
pkcs_1_v1_5_encode.c 24 * \param block_type Block type to use in padding (\sa ltc_pkcs_1_v1_5_blocks)
35 int block_type,
46 /* valid block_type? */
47 if ((block_type != LTC_PKCS_1_EMSA) &&
48 (block_type != LTC_PKCS_1_EME)) {
52 if (block_type == LTC_PKCS_1_EME) { /* encryption padding, we need a valid PRNG */
75 if (block_type == LTC_PKCS_1_EME) {
97 out[1] = (unsigned char)block_type; /* block_type 1 or 2 */
pkcs_1_v1_5_decode.c 24 * @param block_type Block type to use in padding (\sa ltc_pkcs_1_v1_5_blocks)
34 int block_type,
56 if ((msg[0] != 0x00) || (msg[1] != (unsigned char)block_type)) {
61 if (block_type == LTC_PKCS_1_EME) {
  /external/clang/test/Rewriter/
rewrite-block-literal-1.mm 12 typedef void (^BLOCK_TYPE)(void);
19 - (void) setCompletionBlock : (BLOCK_TYPE) arg;
35 - (void) setCompletionBlock : (BLOCK_TYPE) arg {}
  /external/chromium_org/net/disk_cache/v3/
block_bitmaps.cc 26 bool BlockBitmaps::CreateBlock(FileType block_type,
29 DCHECK_NE(block_type, EXTERNAL);
30 DCHECK_NE(block_type, RANKINGS);
34 int header_num = HeaderNumberForNewBlock(block_type, block_count);
42 if (!index && (block_type == BLOCK_ENTRIES || block_type == BLOCK_EVICTED) &&
48 Addr address(block_type, block_count, bitmaps_[header_num].FileId(), index);
119 int BlockBitmaps::HeaderNumberForNewBlock(FileType block_type,
121 DCHECK_GT(block_type, 0);
122 int header_num = block_type - 1
    [all...]
block_bitmaps.h 30 // Creates a new entry on a block file. block_type indicates the size of block
33 bool CreateBlock(FileType block_type, int block_count, Addr* block_address);
53 int HeaderNumberForNewBlock(FileType block_type, int block_count);
  /external/wpa_supplicant_8/src/tls/
pkcs1.h 12 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key,
pkcs1.c 16 static int pkcs1_generate_encryption_block(u8 block_type, size_t modlen,
44 *pos++ = block_type; /* BT */
46 switch (block_type) {
69 "%d", __func__, block_type);
79 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key,
87 if (pkcs1_generate_encryption_block(block_type, modlen, in, inlen,
  /external/chromium/net/disk_cache/
block_files.h 38 // Creates a new entry on a block file. block_type indicates the size of block
41 bool CreateBlock(FileType block_type, int block_count, Addr* block_address);
68 MappedFile* FileForNewBlock(FileType block_type, int block_count);
74 int CreateNextBlockFile(FileType block_type);
77 void RemoveEmptyFile(FileType block_type);
block_files.cc 241 bool BlockFiles::CreateBlock(FileType block_type, int block_count,
244 if (block_type < RANKINGS || block_type > BLOCK_4K ||
250 MappedFile* file = FileForNewBlock(block_type, block_count);
269 Addr address(block_type, block_count, header->this_file, index);
469 MappedFile* BlockFiles::FileForNewBlock(FileType block_type, int block_count) {
471 MappedFile* file = block_files_[block_type - 1];
515 int BlockFiles::CreateNextBlockFile(FileType block_type) {
517 if (CreateBlockFile(i, block_type, false))
525 void BlockFiles::RemoveEmptyFile(FileType block_type) {
    [all...]
  /external/chromium/net/base/
pem_tokenizer_unittest.cc 23 EXPECT_EQ("EXPECTED-BLOCK", tokenizer.block_type());
41 EXPECT_EQ("EXPECTED-BLOCK", tokenizer.block_type());
76 EXPECT_EQ("BLOCK-ONE", tokenizer.block_type());
81 EXPECT_EQ("BLOCK-TWO", tokenizer.block_type());
101 EXPECT_EQ("MISSING-FOOTER", tokenizer.block_type());
125 EXPECT_EQ("BLOCK-ONE", tokenizer.block_type());
163 EXPECT_EQ("BLOCK-ONE", tokenizer.block_type());
pem_tokenizer.h 37 const std::string& block_type() const { return block_type_; } function in class:net::PEMTokenizer
  /external/chromium_org/net/cert/
pem_tokenizer_unittest.cc 23 EXPECT_EQ("EXPECTED-BLOCK", tokenizer.block_type());
41 EXPECT_EQ("EXPECTED-BLOCK", tokenizer.block_type());
76 EXPECT_EQ("BLOCK-ONE", tokenizer.block_type());
81 EXPECT_EQ("BLOCK-TWO", tokenizer.block_type());
101 EXPECT_EQ("MISSING-FOOTER", tokenizer.block_type());
125 EXPECT_EQ("BLOCK-ONE", tokenizer.block_type());
163 EXPECT_EQ("BLOCK-ONE", tokenizer.block_type());
pem_tokenizer.h 37 const std::string& block_type() const { return block_type_; } function in class:net::PEMTokenizer
  /external/chromium_org/net/disk_cache/
block_files.h 103 // Creates a new entry on a block file. block_type indicates the size of block
106 bool CreateBlock(FileType block_type, int block_count, Addr* block_address);
133 MappedFile* FileForNewBlock(FileType block_type, int block_count);
139 int CreateNextBlockFile(FileType block_type);
142 bool RemoveEmptyFile(FileType block_type);
block_files.cc 317 bool BlockFiles::CreateBlock(FileType block_type, int block_count,
320 DCHECK_NE(block_type, EXTERNAL);
321 DCHECK_NE(block_type, BLOCK_FILES);
322 DCHECK_NE(block_type, BLOCK_ENTRIES);
323 DCHECK_NE(block_type, BLOCK_EVICTED);
330 MappedFile* file = FileForNewBlock(block_type, block_count);
341 Addr address(block_type, block_count, file_header.FileId(), index);
552 MappedFile* BlockFiles::FileForNewBlock(FileType block_type, int block_count) {
554 MappedFile* file = block_files_[block_type - 1];
599 int BlockFiles::CreateNextBlockFile(FileType block_type) {
    [all...]
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_pkcs.h 29 int block_type,
38 int block_type,
  /art/compiler/dex/
mir_optimization.cc 151 if (bb->block_type == kDead) {
154 DCHECK((bb->block_type == kEntryBlock) || (bb->block_type == kDalvikByteCode)
155 || (bb->block_type == kExitBlock));
157 ((bb->taken->block_type == kDalvikByteCode) || (bb->taken->block_type == kExitBlock))) {
167 DCHECK((bb->block_type == kDalvikByteCode) || (bb->block_type == kExitBlock));
213 if (bb->block_type == kDead) {
453 tk->block_type = kDead
    [all...]
mir_graph.cc 225 if (bb->block_type != kDalvikByteCode) continue;
731 if (bb->block_type == kDead) continue;
732 if (bb->block_type == kEntryBlock) {
734 } else if (bb->block_type == kExitBlock) {
736 } else if (bb->block_type == kDalvikByteCode) {
753 } else if (bb->block_type == kExceptionHandling) {
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr2/
dynamic_bitset 86 typedef _WordT block_type;
90 static const size_type _S_bits_per_block = __CHAR_BIT__ * sizeof(block_type);
94 std::vector<block_type, allocator_type> _M_w;
112 unsigned long long __mask = ~static_cast<block_type>(0);
114 sizeof(unsigned long long) / sizeof(block_type));
160 static block_type
162 { return (static_cast<block_type>(1)) << _S_whichbit(__pos); }
164 block_type&
168 block_type
172 block_type
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/tr2/
dynamic_bitset 86 typedef _WordT block_type;
90 static const size_type _S_bits_per_block = __CHAR_BIT__ * sizeof(block_type);
94 std::vector<block_type, allocator_type> _M_w;
112 unsigned long long __mask = ~static_cast<block_type>(0);
114 sizeof(unsigned long long) / sizeof(block_type));
160 static block_type
162 { return (static_cast<block_type>(1)) << _S_whichbit(__pos); }
164 block_type&
168 block_type
172 block_type
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr2/
dynamic_bitset 85 typedef _WordT block_type;
89 static const size_type _S_bits_per_block = __CHAR_BIT__ * sizeof(block_type);
93 std::vector<block_type, allocator_type> _M_w;
111 unsigned long long __mask = ~static_cast<block_type>(0);
113 sizeof(unsigned long long) / sizeof(block_type));
159 static block_type
161 { return (static_cast<block_type>(1)) << _S_whichbit(__pos); }
163 block_type&
167 block_type
171 block_type
    [all...]
  /external/wpa_supplicant_8/src/crypto/
crypto_libtomcrypt.c 486 static int pkcs1_generate_encryption_block(u8 block_type, size_t modlen,
514 *pos++ = block_type; /* BT */
516 switch (block_type) {
539 "%d", __func__, block_type);
549 static int crypto_rsa_encrypt_pkcs1(int block_type, rsa_key *key, int key_type,
558 if (pkcs1_generate_encryption_block(block_type, modlen, in, inlen,
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
pvmp3_get_side_info.cpp 165 si->ch[ch].gran[gr].block_type = (tmp << 10) >> 30; /* 2 */;
177 if (si->ch[ch].gran[gr].block_type == 0)
181 else if ((si->ch[ch].gran[gr].block_type == 2)
204 si->ch[ch].gran[gr].block_type = 0;
235 si->ch[ch].gran[0].block_type = (tmp << 10) >> 30; /* 2 */;
247 if (si->ch[ch].gran[0].block_type == 0)
251 else if ((si->ch[ch].gran[0].block_type == 2)
274 si->ch[ch].gran[0].block_type = 0;
  /art/compiler/dex/quick/
mir_to_lir.cc 690 if (bb->block_type == kDead) return false;
714 if (bb->block_type == kEntryBlock) {
718 } else if (bb->block_type == kExitBlock) {
791 if (bb->block_type == kDalvikByteCode) {
  /external/grub/stage2/
gunzip.c 147 static int block_type; variable
1084 block_type = (unsigned) b & 3;
1091 if (block_type == INFLATE_STORED)
1093 if (block_type == INFLATE_FIXED)
1095 if (block_type == INFLATE_DYNAMIC)
    [all...]

Completed in 671 milliseconds

1 2 3