Searched defs:block_type (Results 1 - 13 of 13) sorted by relevance

/external/mesa3d/src/compiler/glsl/
H A Dlink_uniform_block_active_visitor.cpp33 const glsl_type *const block_type = var->is_interface_instance() local
45 b->type = block_type;
63 if (b->type != block_type
H A Dlink_uniform_blocks.cpp365 const glsl_type *block_type = b->type; local
373 block_type->without_array()->name);
382 process_block_array_leaf(block_type->name, blocks, &parcel,
H A Dast_to_hir.cpp7581 const glsl_type *block_type = local
7589 unsigned component_size = block_type->contains_double() ? 8 : 4;
7592 validate_xfb_offset_qualifier(&loc, state, xfb_offset, block_type,
7595 if (!state->symbols->add_interface(block_type->name, block_type, var_mode)) {
7663 process_array_type(&loc, block_type, this->array_specifier, state);
7730 var = new(state) ir_variable(block_type,
7764 earlier->reinit_interface_type(block_type);
7809 var->init_interface_type(block_type);
7848 earlier->reinit_interface_type(block_type);
[all...]
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dpkcs1.c18 static int pkcs1_generate_encryption_block(u8 block_type, size_t modlen, argument
46 *pos++ = block_type; /* BT */
48 switch (block_type) {
71 "%d", __func__, block_type);
81 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key, argument
89 if (pkcs1_generate_encryption_block(block_type, modlen, in, inlen,
/external/wpa_supplicant_8/src/tls/
H A Dpkcs1.c18 static int pkcs1_generate_encryption_block(u8 block_type, size_t modlen, argument
46 *pos++ = block_type; /* BT */
48 switch (block_type) {
71 "%d", __func__, block_type);
81 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key, argument
89 if (pkcs1_generate_encryption_block(block_type, modlen, in, inlen,
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dpkcs1.c18 static int pkcs1_generate_encryption_block(u8 block_type, size_t modlen, argument
46 *pos++ = block_type; /* BT */
48 switch (block_type) {
71 "%d", __func__, block_type);
81 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key, argument
89 if (pkcs1_generate_encryption_block(block_type, modlen, in, inlen,
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_libtomcrypt.c487 static int pkcs1_generate_encryption_block(u8 block_type, size_t modlen, argument
515 *pos++ = block_type; /* BT */
517 switch (block_type) {
540 "%d", __func__, block_type);
550 static int crypto_rsa_encrypt_pkcs1(int block_type, rsa_key *key, int key_type, argument
559 if (pkcs1_generate_encryption_block(block_type, modlen, in, inlen,
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_libtomcrypt.c487 static int pkcs1_generate_encryption_block(u8 block_type, size_t modlen, argument
515 *pos++ = block_type; /* BT */
517 switch (block_type) {
540 "%d", __func__, block_type);
550 static int crypto_rsa_encrypt_pkcs1(int block_type, rsa_key *key, int key_type, argument
559 if (pkcs1_generate_encryption_block(block_type, modlen, in, inlen,
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_libtomcrypt.c487 static int pkcs1_generate_encryption_block(u8 block_type, size_t modlen, argument
515 *pos++ = block_type; /* BT */
517 switch (block_type) {
540 "%d", __func__, block_type);
550 static int crypto_rsa_encrypt_pkcs1(int block_type, rsa_key *key, int key_type, argument
559 if (pkcs1_generate_encryption_block(block_type, modlen, in, inlen,
/external/libpcap/
H A Dsf-pcap-ng.c71 bpf_u_int32 block_type; member in struct:block_header
202 bpf_u_int32 block_type; member in struct:block_cursor
272 bhdr.block_type = SWAPLONG(bhdr.block_type);
335 cursor->block_type = bhdr.block_type;
352 cursor->block_type);
875 bhdrp->block_type = magic;
927 switch (cursor.block_type) {
1048 switch (cursor.block_type) {
[all...]
/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtcp_utility.cc950 uint8_t block_type = *_ptrRTCPData++; local
956 switch (block_type) {
/external/brotli/c/dec/
H A Ddecode.c1068 uint32_t block_type; local
1072 block_type = ReadSymbol(type_tree, br);
1077 if (!SafeReadSymbol(type_tree, br, &block_type)) return BROTLI_FALSE;
1085 if (block_type == 1) {
1086 block_type = ringbuffer[1] + 1;
1087 } else if (block_type == 0) {
1088 block_type = ringbuffer[0];
1090 block_type -= 2;
1092 if (block_type >= max_block_type) {
1093 block_type
1121 uint32_t block_type = s->block_type_rb[1]; local
[all...]
/external/brotli/c/enc/
H A Dbrotli_bit_stream.c748 const uint8_t block_type,
752 size_t typecode = NextBlockTypeCode(&code->type_code_calculator, block_type);
891 uint8_t block_type = self->block_types_[block_ix]; local
893 self->entropy_ix_ = block_type * self->alphabet_size_;
894 StoreBlockSwitch(&self->block_split_code_, block_len, block_type, 0,
913 uint8_t block_type = self->block_types_[block_ix]; local
915 self->entropy_ix_ = (size_t)block_type << context_bits;
916 StoreBlockSwitch(&self->block_split_code_, block_len, block_type, 0,
746 StoreBlockSwitch(BlockSplitCode* code, const uint32_t block_len, const uint8_t block_type, BROTLI_BOOL is_first_block, size_t* storage_ix, uint8_t* storage) argument

Completed in 343 milliseconds