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

1234567891011>>

/freebsd-11.0-release/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.0-release/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.0-release/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.0-release/sbin/fsck_msdosfs/
H A Dboot.c45 u_char block[DOSBOOTBLOCKSIZE]; local
51 if ((size_t)read(dosfs, block, sizeof block) != sizeof block) {
52 perr("could not read boot block");
56 if (block[510] != 0x55 || block[511] != 0xaa) {
57 pfatal("Invalid signature in boot block: %02x%02x",
58 block[511], block[51
[all...]
/freebsd-11.0-release/contrib/libpcap/
H A Dgencode.h209 struct slist *jt; /*only for relative jump in block*/
210 struct slist *jf; /*only for relative jump in block*/
242 struct block *succ;
243 struct block *pred;
247 struct block { struct
259 struct block *head;
260 struct block *link; /* link field used by optimizer */
272 struct block *b; /* protocol checks */
290 void gen_and(struct block *, struct block *);
[all...]
/freebsd-11.0-release/contrib/compiler-rt/lib/builtins/arm/
H A Dudivmodsi4.S57 * This depends on the fixed instruction size of block.
60 * block(shift) implements the test-and-update-quotient core.
109 /* Last block, no need to update r3 or r4. */
121 #define block(shift) \ define
127 block(31)
128 block(30)
129 block(29)
130 block(28)
131 block(27)
132 block(2
[all...]
H A Dudivsi3.S57 * This depends on the fixed instruction size of block.
60 * block(shift) implements the test-and-update-quotient core.
107 /* Last block, no need to update r2 or r3. */
118 #define block(shift) \ define
124 block(31)
125 block(30)
126 block(29)
127 block(28)
128 block(27)
129 block(2
[all...]
H A Dumodsi3.S55 * This depends on the fixed instruction size of block.
58 * block(shift) implements the test-and-update-quotient core.
103 /* Last block, no need to update r2 or r3. */
112 #define block(shift) \ define
117 block(31)
118 block(30)
119 block(29)
120 block(28)
121 block(27)
122 block(2
[all...]
/freebsd-11.0-release/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.0-release/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.0-release/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.0-release/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.0-release/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.0-release/sys/modules/virtio/
H A DMakefile26 SUBDIR= virtio pci network block balloon scsi random console
/freebsd-11.0-release/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...]
/freebsd-11.0-release/contrib/ntp/lib/isc/include/isc/
H A Dmutexblock.h32 isc_mutexblock_init(isc_mutex_t *block, unsigned int count);
34 * Initialize a block of locks. If an error occurs all initialized locks
39 *\li block != NULL
50 isc_mutexblock_destroy(isc_mutex_t *block, unsigned int count);
52 * Destroy a block of locks.
56 *\li block != NULL
60 *\li Each lock in the block be initialized via isc_mutex_init() or
61 * the whole block was initialized via isc_mutex_initblock().

Completed in 213 milliseconds

1234567891011>>