Home
last modified time | relevance | path

Searched refs:block_type (Results 1 – 11 of 11) sorted by relevance

/external/wpa_supplicant_8/src/tls/
Dpkcs1.c18 static int pkcs1_generate_encryption_block(u8 block_type, size_t modlen, in pkcs1_generate_encryption_block() argument
46 *pos++ = block_type; /* BT */ in pkcs1_generate_encryption_block()
48 switch (block_type) { in pkcs1_generate_encryption_block()
71 "%d", __func__, block_type); in pkcs1_generate_encryption_block()
81 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key, in pkcs1_encrypt() argument
89 if (pkcs1_generate_encryption_block(block_type, modlen, in, inlen, in pkcs1_encrypt()
Dpkcs1.h15 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key,
/external/libpcap/
Dsf-pcapng.c54 bpf_u_int32 block_type; member
185 bpf_u_int32 block_type; member
289 bhdr.block_type = SWAPLONG(bhdr.block_type); in read_block()
357 cursor->block_type = bhdr.block_type; in read_block()
374 cursor->block_type); in get_from_block_data()
911 bhdrp->block_type = magic; in pcap_ng_check_header()
963 switch (cursor.block_type) { in pcap_ng_check_header()
1092 switch (cursor.block_type) { in pcap_ng_next_packet()
/external/mesa3d/src/compiler/glsl/
Dlink_uniform_block_active_visitor.cpp33 const glsl_type *const block_type = var->is_interface_instance() in process_block() local
45 b->type = block_type; in process_block()
63 if (b->type != block_type in process_block()
Dlink_uniform_blocks.cpp368 const glsl_type *block_type = b->type; in create_buffer_blocks() local
376 block_type->without_array()->name); in create_buffer_blocks()
385 process_block_array_leaf(block_type->name, blocks, &parcel, in create_buffer_blocks()
Dast_to_hir.cpp7946 const glsl_type *block_type = in hir() local
7954 unsigned component_size = block_type->contains_double() ? 8 : 4; in hir()
7957 validate_xfb_offset_qualifier(&loc, state, xfb_offset, block_type, in hir()
7960 if (!state->symbols->add_interface(block_type->name, block_type, var_mode)) { in hir()
8028 process_array_type(&loc, block_type, this->array_specifier, state); in hir()
8095 var = new(state) ir_variable(block_type, in hir()
8129 earlier->reinit_interface_type(block_type); in hir()
8174 var->init_interface_type(block_type); in hir()
8215 var->reinit_interface_type(block_type); in hir()
8261 if (redeclaring_per_vertex && block_type != earlier_per_vertex) { in hir()
/external/wpa_supplicant_8/src/crypto/
Dcrypto_libtomcrypt.c490 static int pkcs1_generate_encryption_block(u8 block_type, size_t modlen, in pkcs1_generate_encryption_block() argument
518 *pos++ = block_type; /* BT */ in pkcs1_generate_encryption_block()
520 switch (block_type) { in pkcs1_generate_encryption_block()
543 "%d", __func__, block_type); in pkcs1_generate_encryption_block()
553 static int crypto_rsa_encrypt_pkcs1(int block_type, rsa_key *key, int key_type, in crypto_rsa_encrypt_pkcs1() argument
562 if (pkcs1_generate_encryption_block(block_type, modlen, in, inlen, in crypto_rsa_encrypt_pkcs1()
/external/brotli/c/dec/
Ddecode.c1119 uint32_t block_type; in DecodeBlockTypeAndLength() local
1126 block_type = ReadSymbol(type_tree, br); in DecodeBlockTypeAndLength()
1131 if (!SafeReadSymbol(type_tree, br, &block_type)) return BROTLI_FALSE; in DecodeBlockTypeAndLength()
1139 if (block_type == 1) { in DecodeBlockTypeAndLength()
1140 block_type = ringbuffer[1] + 1; in DecodeBlockTypeAndLength()
1141 } else if (block_type == 0) { in DecodeBlockTypeAndLength()
1142 block_type = ringbuffer[0]; in DecodeBlockTypeAndLength()
1144 block_type -= 2; in DecodeBlockTypeAndLength()
1146 if (block_type >= max_block_type) { in DecodeBlockTypeAndLength()
1147 block_type -= max_block_type; in DecodeBlockTypeAndLength()
[all …]
/external/brotli/c/enc/
Dbrotli_bit_stream.c750 const uint8_t block_type, in StoreBlockSwitch() argument
754 size_t typecode = NextBlockTypeCode(&code->type_code_calculator, block_type); in StoreBlockSwitch()
894 uint8_t block_type = self->block_types_[block_ix]; in StoreSymbol() local
896 self->entropy_ix_ = block_type * self->histogram_length_; in StoreSymbol()
897 StoreBlockSwitch(&self->block_split_code_, block_len, block_type, 0, in StoreSymbol()
916 uint8_t block_type = self->block_types_[block_ix]; in StoreSymbolWithContext() local
918 self->entropy_ix_ = (size_t)block_type << context_bits; in StoreSymbolWithContext()
919 StoreBlockSwitch(&self->block_split_code_, block_len, block_type, 0, in StoreSymbolWithContext()
/external/u-boot/fs/zfs/
Dzfs.c1036 uint64_t block_type; in zap_lookup() local
1048 block_type = zfs_to_cpu64(*((uint64_t *) zapbuf), endian); in zap_lookup()
1050 if (block_type == ZBT_MICRO) { in zap_lookup()
1054 } else if (block_type == ZBT_HEADER) { in zap_lookup()
1072 uint64_t block_type; in zap_iterate() local
1084 block_type = zfs_to_cpu64(*((uint64_t *) zapbuf), endian); in zap_iterate()
1086 if (block_type == ZBT_MICRO) { in zap_iterate()
1090 } else if (block_type == ZBT_HEADER) { in zap_iterate()
/external/webrtc/webrtc/modules/rtp_rtcp/source/
Drtcp_utility.cc950 uint8_t block_type = *_ptrRTCPData++; in ParseXrItem() local
956 switch (block_type) { in ParseXrItem()