Searched refs:block (Results 151 - 175 of 468) sorted by relevance

1234567891011>>

/freebsd-9.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-flash.c63 #define MAX_NUM_REGIONS 8 /* Maximum number of block regions per chip */
83 int num_regions; /**< Number of block regions */
213 /* Get the number of different sized block regions from 0x2c */
228 /* The size of each block is a 16 bit little endian endian field. It
272 cvmx_dprintf(" Region %d: offset 0x%x, %d blocks, %d bytes/block\n",
357 * Erase a block on the flash chip
359 * @param chip_id Chip to erase a block on
360 * @param region Region to erase a block in
361 * @param block Block number to erase
364 int cvmx_flash_erase_block(int chip_id, int region, int block) argument
487 cvmx_flash_write_block(int chip_id, int region, int block, const void *data) argument
642 int block = (address - region_base) / flash->region[region].block_size; local
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_bmap_btree.c153 * Add a trace buffer entry for arguments, for 3 block-length args
324 xfs_bmbt_block_t *block; /* bmap btree block */ local
325 xfs_fsblock_t bno; /* fs-relative block number */
326 xfs_buf_t *bp; /* buffer for block */
335 xfs_fsblock_t lbno; /* left sibling block number */
337 xfs_bmbt_block_t *left; /* left btree block */
343 xfs_bmbt_ptr_t *pp; /* pointer to bmap block addr */
345 xfs_fsblock_t rbno; /* right sibling block number */
347 xfs_bmbt_block_t *right; /* right btree block */
700 xfs_bmbt_block_t *block; local
741 xfs_bmbt_block_t *block; /* bmap btree block */ local
926 xfs_bmbt_block_t *block; local
1035 xfs_bmbt_block_t *block; local
1074 xfs_bmbt_block_t *block; local
1103 xfs_bmbt_block_t *block=NULL; local
1692 xfs_bmbt_block_t *block; local
1765 xfs_bmbt_block_t *block; local
2088 xfs_bmbt_block_t *block; local
2270 xfs_bmbt_block_t *block; local
2330 xfs_bmbt_block_t *block; /* bmap btree block */ local
2720 xfs_bmbt_block_t *block; local
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dblockframe.c40 #include "block.h"
226 /* Return the innermost lexical block in execution
230 address we used to choose the block. We use this to find a source
237 be the very last instruction in the block. So the address we use
238 to choose the block is actually one byte before the return address
242 struct block *
256 struct block *bl;
288 struct block *bl = get_frame_block (frame, 0);
302 struct block *b = block_for_pc_sect (pc, section);
541 block_innermost_frame (struct block *bloc
540 block_innermost_frame(struct block *block) argument
[all...]
H A Dada-lang.h28 struct block;
225 extern int ada_lookup_symbol_list (const char *, struct block *,
227 struct block ***);
231 extern struct symbol *ada_lookup_symbol (const char *, struct block *,
238 extern int ada_resolve_function (struct symbol **, struct block **, int,
244 extern int user_select_syms (struct symbol **, struct block **, int, int);
/freebsd-9.3-release/contrib/ofed/management/opensm/opensm/
H A Dosm_pkey.c131 IN uint16_t block, IN ib_pkey_table_t * p_tbl)
138 /* make sure the block is allocated */
139 if (cl_ptr_vector_get_size(&p_pkey_tbl->blocks) > block)
142 block);
152 cl_ptr_vector_set(&p_pkey_tbl->blocks, block, p_pkey_block);
155 /* sets the block values */
202 Also, make sure the regular block exists.
268 ib_pkey_table_t *block; local
275 block = osm_pkey_tbl_block_get(p_pkey_tbl, block_index);
276 if ((block
130 osm_pkey_tbl_set(IN osm_pkey_tbl_t * p_pkey_tbl, IN uint16_t block, IN ib_pkey_table_t * p_tbl) argument
[all...]
H A Dosm_sa_pkey_record.c73 IN uint16_t block)
98 cl_ntoh16(lid), osm_physp_get_port_num(p_physp), block);
103 p_rec_item->rec.block_num = block;
106 *(osm_pkey_tbl_block_get(osm_physp_get_pkey_tbl(p_physp), block));
122 uint16_t block, num_blocks; local
126 /* we got here with the phys port - all is left is to get the right block */
133 for (block = 0; block < num_blocks; block++) {
134 __osm_sa_pkey_create(sa, p_physp, p_ctxt, block);
70 __osm_sa_pkey_create(IN osm_sa_t * sa, IN osm_physp_t * const p_physp, IN osm_pkey_search_ctxt_t * const p_ctxt, IN uint16_t block) argument
[all...]
H A Dosm_qos.c76 ib_vl_arb_table_t block; local
83 memset(&block, 0, sizeof(block));
84 memcpy(&block, table_block, block_length * sizeof(block.vl_entry[0]));
86 block.vl_entry[i].vl &= vl_mask;
89 !memcmp(&p->vl_arb[block_num], &block,
90 block_length * sizeof(block.vl_entry[0])))
100 (uint8_t *) & block, sizeof(block),
[all...]
/freebsd-9.3-release/sys/crypto/aesni/
H A Daesni_wrap.c91 const uint64_t *from, uint64_t *to, uint64_t *block, int do_encrypt)
95 block[0] = from[0] ^ tweak[0];
96 block[1] = from[1] ^ tweak[1];
99 aesni_enc(rounds - 1, key_schedule, (uint8_t *)block, (uint8_t *)to, NULL);
101 aesni_dec(rounds - 1, key_schedule, (uint8_t *)block, (uint8_t *)to, NULL);
124 uint64_t block[AES_XTS_BLOCKSIZE / 8]; local
130 * of a 64-bit block number which we allow to be passed in directly.
144 (const uint64_t *)from, (uint64_t *)to, block, do_encrypt);
150 bzero(block, sizeof(block));
90 aesni_crypt_xts_block(int rounds, const void *key_schedule, uint64_t *tweak, const uint64_t *from, uint64_t *to, uint64_t *block, int do_encrypt) argument
[all...]
/freebsd-9.3-release/crypto/openssl/ssl/
H A Ds3_cbc.c69 * MAX_HASH_BLOCK_SIZE is the maximum hash block size that we'll support.
70 * Currently SHA-384/512 has a 128-byte block size and that's the largest
79 * block_size: the block size of the cipher used to encrypt the record.
115 * block_size: the block size of the cipher used to encrypt the record.
424 void (*md_transform) (void *ctx, const unsigned char *block);
455 (void (*)(void *ctx, const unsigned char *block))MD5_Transform;
464 (void (*)(void *ctx, const unsigned char *block))SHA1_Transform;
472 (void (*)(void *ctx, const unsigned char *block))SHA256_Transform;
479 (void (*)(void *ctx, const unsigned char *block))SHA256_Transform;
488 (void (*)(void *ctx, const unsigned char *block))SHA512_Transfor
668 unsigned char block[MAX_HASH_BLOCK_SIZE]; local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i86xpv/xdt/
H A Dtst.schedargs.ksh51 xdt:sched::block,
H A Dtst.schedenable.ksh59 xdt:sched::block,
/freebsd-9.3-release/contrib/gcc/
H A Ddebug.c75 debug_true_tree (tree block ATTRIBUTE_UNUSED)
/freebsd-9.3-release/contrib/groff/src/include/
H A Dsymbol.h29 static char *block; member in class:symbol
/freebsd-9.3-release/crypto/openssl/util/
H A Dmkstack.pl54 if (m|^/\* This block of defines is updated by util/mkstack.pl, please do not touch! \*/|) {
57 if (m|^/\* End of util/mkstack.pl block, you may now edit :-\) \*/|) {
63 $new_stackfile .= "/* This block of defines is updated by util/mkstack.pl, please do not touch! */";
111 $new_stackfile .= "/* End of util/mkstack.pl block, you may now edit :-) */\n";
/freebsd-9.3-release/lib/libufs/
H A DMakefile7 SRCS= block.c cgroup.c inode.c sblock.c type.c ffs_subr.c ffs_tables.c
/freebsd-9.3-release/sys/boot/powerpc/boot1.chrp/
H A Dgenerate-hfs.sh10 # template (e.g. because the boot block or the CHRP script have grown),
33 echo 'Bootinfo START' | dd of=bootinfo.txt.tmp cbs=$CHRPBOOT_SIZE count=1 conv=block
34 echo 'Boot1 START' | dd of=boot1.elf.tmp cbs=$BOOT1_SIZE count=1 conv=block
/freebsd-9.3-release/tools/regression/pjdfstest/tests/rename/
H A D07.t32 for type in regular dir fifo block char socket symlink; do
50 for type in regular dir fifo block char socket symlink; do
H A D15.t22 for type in regular dir fifo block char socket symlink; do
/freebsd-9.3-release/usr.sbin/bsdinstall/distfetch/
H A Ddistfetch.c102 uint8_t block[4096]; local
166 while ((chunk = fread(block, 1, sizeof(block), fetch_out))
168 if (fwrite(block, 1, chunk, file_out) < chunk)
/freebsd-9.3-release/libexec/tftpd/
H A Dtftp-io.c54 static int send_packet(int peer, uint16_t block, char *pkt, int size);
101 send_packet(int peer, uint16_t block, char *pkt, int size) argument
113 "%s block %d, attempt %d successful",
115 (pkt))->th_opcode)), block, i);
119 "%s block %d, attempt %d failed (Error %d: %s)",
121 block, i, errno, strerror(errno));
321 send_ack(int fp, uint16_t block) argument
328 tftp_log(LOG_DEBUG, "Sending ACK for block %d", block);
335 tp->th_block = htons((u_short)block);
351 send_data(int peer, uint16_t block, char *data, int size) argument
[all...]
/freebsd-9.3-release/contrib/cvs/src/
H A Dbuffer.h21 * network. We do not want to block on writing to the network, so we
70 int (*block) PROTO ((void *closure, int block)); member in struct:buffer
/freebsd-9.3-release/crypto/heimdal/lib/krb5/
H A Dkeyblock.c92 krb5_keyblock_get_enctype(const krb5_keyblock *block) argument
94 return block->keytype;
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dalloca.c37 client code use a block of preprocessor code to be safe (see the Autoconf
251 long sstcpt:32; /* Pointer to task common address block. */
289 long extends; /* Number of block extensions. */
311 long this_address; /* Address of this block. */
312 long this_size; /* Size of this block (does not include
316 long link; /* Address of trailer block of previous
342 long *block, size; local
348 $LM00 common block, but I know that this works. */
368 block = (long *) trailer->this_address;
370 if (block
[all...]
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dalloca.c37 client code use a block of preprocessor code to be safe (see the Autoconf
251 long sstcpt:32; /* Pointer to task common address block. */
289 long extends; /* Number of block extensions. */
311 long this_address; /* Address of this block. */
312 long this_size; /* Size of this block (does not include
316 long link; /* Address of trailer block of previous
342 long *block, size; local
348 $LM00 common block, but I know that this works. */
368 block = (long *) trailer->this_address;
370 if (block
[all...]
/freebsd-9.3-release/contrib/ipfilter/perl/
H A Dipfmeta.pl162 block in from UNWANTED to any
174 # block in from UNWANTED to any
176 block in from 10.0.0.0/8 to any
178 block in from 127.0.0.0/8 to any
180 block in from 172.16.0.0/12 to any
182 block in from 192.168.0.0/16 to any
184 block in from 224.0.0.0/4 to any

Completed in 325 milliseconds

1234567891011>>