Home
last modified time | relevance | path

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

/external/mesa3d/src/compiler/glsl/
Dgl_nir_link_uniform_blocks.c108 enum block_type { enum
215 enum block_type block_type) in nir_interstage_cross_validate_uniform_blocks() argument
219 unsigned *num_blks = block_type == BLOCK_SSBO ? &prog->data->NumShaderStorageBlocks : in nir_interstage_cross_validate_uniform_blocks()
225 if (block_type == BLOCK_SSBO) { in nir_interstage_cross_validate_uniform_blocks()
247 if (block_type == BLOCK_SSBO) { in nir_interstage_cross_validate_uniform_blocks()
289 struct gl_uniform_block **sh_blks = block_type == BLOCK_SSBO ? in nir_interstage_cross_validate_uniform_blocks()
303 if (block_type == BLOCK_SSBO) in nir_interstage_cross_validate_uniform_blocks()
415 enum block_type block_type) in allocate_uniform_blocks() argument
421 if (block_type == BLOCK_UBO && !nir_variable_is_in_ubo(var)) in allocate_uniform_blocks()
424 if (block_type == BLOCK_SSBO && !nir_variable_is_in_ssbo(var)) in allocate_uniform_blocks()
[all …]
Dlink_uniform_block_active_visitor.cpp34 const glsl_type *const block_type = var->is_interface_instance() in process_block() local
46 b->type = block_type; in process_block()
64 if (b->type != block_type in process_block()
Dlink_uniform_blocks.cpp369 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.cpp8208 const glsl_type *block_type = in hir() local
8216 unsigned component_size = block_type->contains_double() ? 8 : 4; in hir()
8219 validate_xfb_offset_qualifier(&loc, state, xfb_offset, block_type, in hir()
8222 if (!state->symbols->add_interface(block_type->name, block_type, var_mode)) { in hir()
8290 process_array_type(&loc, block_type, this->array_specifier, state); in hir()
8357 var = new(state) ir_variable(block_type, in hir()
8391 earlier->reinit_interface_type(block_type); in hir()
8436 var->init_interface_type(block_type); in hir()
8477 var->reinit_interface_type(block_type); in hir()
8523 if (redeclaring_per_vertex && block_type != earlier_per_vertex) { in hir()
/external/tensorflow/tensorflow/python/keras/applications/
Dinception_resnet_v2.py151 x, scale=0.17, block_type='block35', block_idx=block_idx)
165 x, scale=0.1, block_type='block17', block_idx=block_idx)
182 x, scale=0.2, block_type='block8', block_idx=block_idx)
184 x, scale=1., activation=None, block_type='block8', block_idx=10)
275 def inception_resnet_block(x, scale, block_type, block_idx, activation='relu'): argument
315 if block_type == 'block35':
323 elif block_type == 'block17':
329 elif block_type == 'block8':
338 'but got: ' + str(block_type))
340 block_name = block_type + '_' + str(block_idx)
/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/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/lib/efi_loader/
Defi_hii.c150 switch (block->block_type) { in add_strings_package()
164 block->block_type); in add_strings_package()
193 switch (block->block_type) { in add_strings_package()
214 block->block_type); in add_strings_package()
/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()
/external/v8/src/wasm/
Dfunction-body-decoder-impl.h463 int64_t block_type = in BlockTypeImmediate() local
465 if (block_type < 0) { in BlockTypeImmediate()
467 if (block_type == kVoidCode_i64_extended) return; in BlockTypeImmediate()
472 block_type); in BlockTypeImmediate()
479 block_type); in BlockTypeImmediate()
483 sig_index = static_cast<uint32_t>(block_type); in BlockTypeImmediate()
/external/u-boot/include/
Defi_api.h798 u8 block_type; member