Home
last modified time | relevance | path

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

/dflybsd-src/usr.sbin/burncd/
H A Dburncd.c52 int block_type; member
74 int block_size = 0, block_type = 0, cdopen = 0; in main() local
201 block_type = CDR_DB_RAW; in main()
206 block_type = CDR_DB_ROM_MODE1; in main()
211 block_type = CDR_DB_ROM_MODE2; in main()
216 block_type = CDR_DB_XA_MODE1; in main()
221 block_type = CDR_DB_XA_MODE2_F2; in main()
226 block_type = CDR_DB_XA_MODE2_F2; in main()
246 add_track(file_buf, block_size, block_type, nogap); in main()
254 add_track(argv[arg], block_size, block_type, nogap); in main()
[all …]
/dflybsd-src/contrib/wpa_supplicant/src/tls/
H A 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()
H A Dpkcs1.h15 int pkcs1_encrypt(int block_type, struct crypto_rsa_key *key,
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/tr2/
H A Ddynamic_bitset68 typedef _WordT block_type;
72 static const size_type _S_bits_per_block = __CHAR_BIT__ * sizeof(block_type);
76 std::vector<block_type, allocator_type> _M_w;
94 unsigned long long __mask = ~static_cast<block_type>(0);
96 sizeof(unsigned long long) / sizeof(block_type));
124 block_type __val = 0;
126 __val = std::numeric_limits<block_type>::max();
147 static block_type
149 { return (static_cast<block_type>(1)) << _S_whichbit(__pos); }
151 block_type&
[all …]
H A Ddynamic_bitset.tcc100 size_t __n = sizeof(unsigned long) / sizeof(block_type); in _M_do_to_ulong()
114 size_t __n = sizeof(unsigned long long) / sizeof(block_type); in _M_do_to_ullong()
/dflybsd-src/contrib/libpcap/
H A Dsf-pcapng.c54 bpf_u_int32 block_type; member
186 bpf_u_int32 block_type; member
296 bhdr.block_type = SWAPLONG(bhdr.block_type); in read_block()
384 cursor->block_type = bhdr.block_type; in read_block()
401 cursor->block_type); in get_from_block_data()
946 bhdrp->block_type = magic_int; in pcap_ng_check_header()
1012 switch (cursor.block_type) { in pcap_ng_check_header()
1129 switch (cursor.block_type) { in pcap_ng_next_packet()
/dflybsd-src/contrib/gcc-4.7/libstdc++-v3/include/tr2/
H A Ddynamic_bitset86 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 …]
/dflybsd-src/contrib/wpa_supplicant/src/crypto/
H A 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()
/dflybsd-src/sys/dev/drm/amd/amdgpu/
H A Damdgpu_dpm.h344 #define amdgpu_dpm_set_powergating_by_smu(adev, block_type, gate) \ argument
346 (adev)->powerplay.pp_handle, block_type, gate))
H A Damdgpu_device.c1095 enum amd_ip_block_type block_type, in amdgpu_device_ip_set_clockgating_state() argument
1104 if (adev->ip_blocks[i].version->type != block_type) in amdgpu_device_ip_set_clockgating_state()
1129 enum amd_ip_block_type block_type, in amdgpu_device_ip_set_powergating_state() argument
1138 if (adev->ip_blocks[i].version->type != block_type) in amdgpu_device_ip_set_powergating_state()
1185 enum amd_ip_block_type block_type) in amdgpu_device_ip_wait_for_idle() argument
1192 if (adev->ip_blocks[i].version->type == block_type) { in amdgpu_device_ip_wait_for_idle()
1213 enum amd_ip_block_type block_type) in amdgpu_device_ip_is_idle() argument
1220 if (adev->ip_blocks[i].version->type == block_type) in amdgpu_device_ip_is_idle()
H A Damdgpu.h233 enum amd_ip_block_type block_type,
236 enum amd_ip_block_type block_type,
241 enum amd_ip_block_type block_type);
243 enum amd_ip_block_type block_type);
/dflybsd-src/contrib/libarchive/libarchive/
H A Darchive_read_support_format_cab.c74 char block_type; member
2456 ds->block_type = lzx_br_bits(br, 3); in lzx_read_blocks()
2459 switch (ds->block_type) { in lzx_read_blocks()
2483 if (ds->block_type != UNCOMPRESSED_BLOCK) { in lzx_read_blocks()
2484 if (ds->block_type == VERBATIM_BLOCK) in lzx_read_blocks()
2764 char block_type = ds->block_type; in lzx_decode_blocks() local
2889 if (block_type == ALIGNED_OFFSET_BLOCK && in lzx_decode_blocks()
/dflybsd-src/sys/dev/drm/amd/include/
H A Dkgd_pp_interface.h240 uint32_t block_type, bool gate);
/dflybsd-src/contrib/gdb-7/gdb/
H A Djit.c684 struct type *block_type = arch_type (get_objfile_arch (objfile), in finalize_symtab() local
700 SYMBOL_TYPE (block_name) = lookup_function_type (block_type); in finalize_symtab()
H A Dtracepoint.c4426 char block_type; in traceframe_walk_blocks() local
4428 tfile_read (&block_type, 1); in traceframe_walk_blocks()
4432 if ((*callback) (block_type, data)) in traceframe_walk_blocks()
4435 switch (block_type) in traceframe_walk_blocks()
4457 block_type, block_type); in traceframe_walk_blocks()
H A Dmdebugread.c238 enum block_type { FUNCTION_BLOCK, NON_FUNCTION_BLOCK }; enum
240 static struct block *new_block (enum block_type);
4862 new_block (enum block_type type) in new_block()
/dflybsd-src/sys/dev/drm/amd/powerplay/
H A Damd_powerplay.c1185 uint32_t block_type, bool gate) in pp_set_powergating_by_smu() argument
1189 switch (block_type) { in pp_set_powergating_by_smu()