Searched refs:block (Results 1 - 25 of 625) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/mips/nlm/hal/
H A Dinterlaken.h39 #define ILK_TX_CONTROL(block) NAE_REG(block, 5, 0x00)
40 #define ILK_TX_RATE_LIMIT(block) NAE_REG(block, 5, 0x01)
41 #define ILK_TX_META_CTRL(block) NAE_REG(block, 5, 0x02)
42 #define ILK_RX_CTRL(block) NAE_REG(block, 5, 0x03)
43 #define ILK_RX_STATUS1(block) NAE_REG(block,
[all...]
H A Dxaui.h38 #define XAUI_CONFIG0(block) NAE_REG(block, 4, 0x00)
39 #define XAUI_CONFIG1(block) NAE_REG(block, 4, 0x01)
40 #define XAUI_CONFIG2(block) NAE_REG(block, 4, 0x02)
41 #define XAUI_CONFIG3(block) NAE_REG(block, 4, 0x03)
43 #define XAUI_MAC_ADDR0_LO(block) NAE_REG(block,
[all...]
H A Dsgmii.h40 #define SGMII_MAC_CONF1(block, i) NAE_REG(block, i, 0x00)
41 #define SGMII_MAC_CONF2(block, i) NAE_REG(block, i, 0x01)
42 #define SGMII_IPG_IFG(block, i) NAE_REG(block, i, 0x02)
43 #define SGMII_HLF_DUP(block, i) NAE_REG(block, i, 0x03)
44 #define SGMII_MAX_FRAME(block, i) NAE_REG(block,
[all...]
/freebsd-11-stable/contrib/xz/src/liblzma/common/
H A Dblock_util.c18 lzma_block_compressed_size(lzma_block *block, lzma_vli unpadded_size)
21 if (lzma_block_unpadded_size(block) == 0)
24 const uint32_t container_size = block->header_size
25 + lzma_check_size(block->check);
35 if (block->compressed_size != LZMA_VLI_UNKNOWN
36 && block->compressed_size != compressed_size)
39 block->compressed_size = compressed_size;
46 lzma_block_unpadded_size(const lzma_block *block)
54 if (block == NULL || block
[all...]
H A Dblock_header_encoder.c18 lzma_block_header_size(lzma_block *block)
20 if (block->version > 1)
27 if (block->compressed_size != LZMA_VLI_UNKNOWN) {
28 const uint32_t add = lzma_vli_size(block->compressed_size);
29 if (add == 0 || block->compressed_size == 0)
36 if (block->uncompressed_size != LZMA_VLI_UNKNOWN) {
37 const uint32_t add = lzma_vli_size(block->uncompressed_size);
45 if (block->filters == NULL || block->filters[0].id == LZMA_VLI_UNKNOWN)
48 for (size_t i = 0; block
[all...]
H A Dblock_header_decoder.c18 free_properties(lzma_block *block, const lzma_allocator *allocator) argument
24 lzma_free(block->filters[i].options, allocator);
25 block->filters[i].id = LZMA_VLI_UNKNOWN;
26 block->filters[i].options = NULL;
34 lzma_block_header_decode(lzma_block *block,
45 block->filters[i].id = LZMA_VLI_UNKNOWN;
46 block->filters[i].options = NULL;
51 if (block->version > 1)
52 block->version = 1;
58 block
[all...]
H A Dblock_decoder.h20 const lzma_allocator *allocator, lzma_block *block);
H A Dblock_buffer_encoder.c89 block_encode_uncompressed(lzma_block *block, const uint8_t *in, size_t in_size, argument
104 // Set the above filter options to *block temporarily so that we can
106 lzma_filter *filters_orig = block->filters;
107 block->filters = filters;
109 if (lzma_block_header_size(block) != LZMA_OK) {
110 block->filters = filters_orig;
115 // set block->compressed_size to what lzma2_bound() has returned,
119 assert(block->compressed_size == lzma2_bound(in_size));
121 < block->header_size + block
167 block_encode_normal(lzma_block *block, const lzma_allocator *allocator, const uint8_t *in, size_t in_size, uint8_t *out, size_t *out_pos, size_t out_size) argument
224 block_buffer_encode(lzma_block *block, const lzma_allocator *allocator, const uint8_t *in, size_t in_size, uint8_t *out, size_t *out_pos, size_t out_size, bool try_to_compress) argument
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dblock.c23 #include "block.h"
29 /* This is used by struct block to store namespace-related info for
39 static void block_initialize_namespace (struct block *block,
42 /* Return Nonzero if block a is lexically nested within block b,
47 contained_in (const struct block *a, const struct block *b)
57 lexical block, described by a struct block B
167 block_scope(const struct block *block) argument
184 block_set_scope(struct block *block, const char *scope, struct obstack *obstack) argument
202 block_using(const struct block *block) argument
218 block_set_using(struct block *block, struct using_direct *using, struct obstack *obstack) argument
231 block_initialize_namespace(struct block *block, struct obstack *obstack) argument
246 block_static_block(const struct block *block) argument
261 block_global_block(const struct block *block) argument
[all...]
H A Dblock.h35 are represented by `struct block' objects.
38 Each block represents one name scope.
39 Each lexical context has its own block.
48 Each block records a range of core addresses for the code that
49 is in the scope of the block. The STATIC_BLOCK and GLOBAL_BLOCK
60 struct block struct
63 /* Addresses in the executable code that are in this block. */
68 /* The symbol that names this block, if the block is the body of a
73 /* The `struct block' fo
134 struct block *block[1]; member in struct:blockvector
[all...]
H A Dcp-support.h35 struct block;
69 struct block *block);
85 extern void cp_finalize_namespace (struct block *static_block,
89 struct block *block,
96 const struct block *block,
103 const struct block *block,
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Dumodsi3.S48 // This depends on the fixed instruction size of block.
51 // block(shift) implements the test-and-update-quotient core.
95 // Last block, no need to update r2 or r3.
104 #define block(shift) \ define
109 block(31)
110 block(30)
111 block(29)
112 block(28)
113 block(27)
114 block(2
[all...]
H A Dudivmodsi4.S49 // This depends on the fixed instruction size of block.
52 // block(shift) implements the test-and-update-quotient core.
100 // Last block, no need to update r3 or r4.
112 #define block(shift) \ define
118 block(31)
119 block(30)
120 block(29)
121 block(28)
122 block(27)
123 block(2
[all...]
H A Dudivsi3.S72 // This depends on the fixed instruction size of block.
75 // block(shift) implements the test-and-update-quotient core.
160 // Last block, no need to update r2 or r3.
185 // block closer
198 #define block(shift) \ define
208 // Label div0block must be word-aligned. First align block 31
213 #define block(shift) \ define
220 block(31)
221 block(30)
222 block(2
[all...]
/freebsd-11-stable/contrib/libpcap/
H A Dgencode.h205 struct slist *jt; /*only for relative jump in block*/
206 struct slist *jf; /*only for relative jump in block*/
238 struct block *succ;
239 struct block *pred;
243 struct block { struct
255 struct block *head;
256 struct block *link; /* link field used by optimizer */
273 struct block *b; /* protocol checks */
295 void gen_and(struct block *, struct block *);
[all...]
/freebsd-11-stable/libexec/tftpd/
H A Dtftp-transfer.h29 void tftp_send(int peer, uint16_t *block, struct tftp_stats *tp);
30 void tftp_receive(int peer, uint16_t *block, struct tftp_stats *tp,
H A Dtftp-transfer.c53 tftp_send(int peer, uint16_t *block, struct tftp_stats *ts) argument
62 *block = 1;
66 tftp_log(LOG_DEBUG, "Sending block %d", *block);
76 n_data = send_data(peer, *block, sendbuffer, size);
81 "giving up", *block);
86 *block);
97 "giving up", try, *block);
102 try, *block);
114 if (rp->th_block == *block) {
158 tftp_receive(int peer, uint16_t *block, struct tftp_stats *ts, struct tftphdr *firstblock, size_t fb_size) argument
[all...]
/freebsd-11-stable/contrib/ntp/lib/isc/
H A Dmutexblock.c28 isc_mutexblock_init(isc_mutex_t *block, unsigned int count) { argument
33 result = isc_mutex_init(&block[i]);
37 DESTROYLOCK(&block[i]);
47 isc_mutexblock_destroy(isc_mutex_t *block, unsigned int count) { argument
52 result = isc_mutex_destroy(&block[i]);
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-nand.c405 cvmx_dprintf("%s: Defaults: page size: %d, OOB size: %d, pages per block %d, blocks: %d, timing mode: %d\n",
746 cvmx_dprintf("%s: Defaults: page size: %d, OOB size: %d, pages per block %d, part size: %d MBytes, timing mode: %d\n",
977 * This include column bits, padding, page bits, and block bits.
1452 * Erase a NAND block. A single block contains multiple pages.
1664 * Get the number of pages per NAND block
1668 * @return Number of pages in each block or a negative cvmx_nand_status_t error
1742 * @param block pointer to 256 bytes of data
1745 void cvmx_nand_compute_boot_ecc(unsigned char *block, unsigned char *eccp) argument
1753 pd0 ^= (block[
1856 cvmx_nand_correct_boot_ecc(uint8_t *block) argument
[all...]
/freebsd-11-stable/sys/mips/nlm/dev/net/
H A Dmdio.c45 nlm_int_gmac_mdio_read(uint64_t nae_base, int bus, int block, argument
62 NAE_REG(block, intf_type, (INT_MDIO_CTRL + bus * 4)));
65 NAE_REG(block, intf_type, (INT_MDIO_CTRL + bus*4)),
70 NAE_REG(block, intf_type, (INT_MDIO_CTRL + bus * 4)),
75 NAE_REG(block, intf_type, (INT_MDIO_CTRL + bus * 4)),
80 NAE_REG(block, intf_type, (INT_MDIO_RD_STAT + bus * 4))) &
85 NAE_REG(block, intf_type, (INT_MDIO_CTRL + bus * 4)),
90 NAE_REG(block, intf_type, (INT_MDIO_RD_STAT + bus * 4)));
95 nlm_int_gmac_mdio_write(uint64_t nae_base, int bus, int block, argument
112 NAE_REG(block, intf_typ
146 nlm_int_gmac_mdio_reset(uint64_t nae_base, int bus, int block, int intf_type) argument
178 nlm_gmac_mdio_read(uint64_t nae_base, int bus, int block, int intf_type, int phyaddr, int regidx) argument
239 nlm_gmac_mdio_write(uint64_t nae_base, int bus, int block, int intf_type, int phyaddr, int regidx, uint16_t val) argument
301 nlm_gmac_mdio_reset(uint64_t nae_base, int bus, int block, int intf_type) argument
[all...]
/freebsd-11-stable/sbin/fsck_msdosfs/
H A Dboot.c50 u_char block[DOSBOOTBLOCKSIZE]; local
54 if ((size_t)read(dosfs, block, sizeof block) != sizeof block) {
55 perr("could not read boot block");
59 if (block[510] != 0x55 || block[511] != 0xaa) {
60 pfatal("Invalid signature in boot block: %02x%02x",
61 block[511], block[51
[all...]
/freebsd-11-stable/contrib/ipfilter/rules/
H A Dipmon.conf11 match { protocol = udp, result = block; }
12 do { file("file:///var/log/udp-block"); };
14 match { protocol = tcp, result = block, dstport = 25; }
22 rule = 12, logtag = 101, direction = in, result = block,
/freebsd-11-stable/sys/modules/virtio/
H A DMakefile26 SUBDIR= virtio pci network block balloon scsi random console
/freebsd-11-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_environment.h41 kmp_env_blk_t block;
42 __kmp_env_blk_init( & block, NULL ); // Initialize block from process
45 __kmp_env_blk_init( & block, "KMP_WARNING=1|KMP_AFFINITY=none" ); // from string
46 __kmp_env_blk_sort( & block ); // Optionally, sort list.
47 for ( i = 0; i < block.count; ++ i ) {
48 // Process block.vars[ i ].name and block.vars[ i ].value...
50 __kmp_env_block_free( & block );
66 void __kmp_env_blk_init(kmp_env_blk_t *block, cha
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dbit_array.c36 /* Number of bits in each block.
51 * As long as no bit got set in a particular block, the respective entry in
52 * BLOCKS entry will be NULL, implying that all block contents is 0.
57 * Every block may be NULL, though. */
104 unsigned char *block; local
106 /* Index within ARRAY->BLOCKS for the block containing bit IDX. */
109 /* Within that block, index of the byte containing IDX. */
131 /* Grow block list to cover IDX.
144 /* Get the block that contains IDX. Auto-allocate it if missing. */
145 block
171 unsigned char *block; local
[all...]

Completed in 324 milliseconds

1234567891011>>