Searched refs:block (Results 51 - 75 of 468) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/ipfilter/rules/
H A DBASIC_1.FW17 block in log quick all with short
21 # By default, block and log everything. This maybe too much logging
24 block in log on ppp0 all head 100
25 block in log proto tcp all flags S/SA head 101 group 100
26 block out log on ppp0 all head 150
27 block in log on ed0 from w.x.y.z/24 to any head 200
28 block in log proto tcp all flags S/SA head 201 group 200
29 block in log proto udp all head 202 group 200
30 block out log on ed0 all head 250
36 block i
[all...]
H A Dexample.107 # block incoming connection requests to my internal network from the big bad
10 block in on le0 proto tcp from any to 10.1.0.0/16 flags S/SA
11 # to block the replies:
12 block out on le0 proto tcp from 10.1.0.0 to any flags SA/SA
/freebsd-9.3-release/contrib/libarchive/libarchive/test/
H A Dtest_tar_large.c43 * Each file is built up by duplicating the following block.
89 struct memblock *block; local
102 /* We don't need to store a block of file data. */
107 block = (struct memblock *)malloc(sizeof(*block));
108 memset(block, 0, sizeof(*block));
109 block->size = size;
110 block->buff = malloc(size);
111 memcpy(block
127 struct memblock *block; local
[all...]
/freebsd-9.3-release/release/scripts/
H A Dtar.sh105 exec cpio -it $verbose $device --block-size="$blocksize" "$@"
108 exec cpio -idmu $verbose $device --block-size="$blocksize" "$@"
116 cpio -o -H ustar $verbose $device --block-size="$blocksize"
/freebsd-9.3-release/crypto/openssl/crypto/engine/
H A Denginetest.c99 ENGINE *block[512]; local
122 memset(block, 0, 512 * sizeof(ENGINE *));
213 if (((block[loop] = ENGINE_new()) == NULL) ||
214 !ENGINE_set_id(block[loop], id) ||
215 !ENGINE_set_name(block[loop], name)) {
216 printf("Couldn't create block of ENGINE structures.\n"
222 if (!ENGINE_add(block[loop])) {
224 loop, ENGINE_get_id(block[loop]),
225 ENGINE_get_name(block[loop]));
243 OPENSSL_free((void *)ENGINE_get_id(block[loo
[all...]
/freebsd-9.3-release/contrib/bzip2/
H A Dblocksort.c9 lossless, block-sorting data compression.
195 ((UChar*)eclass) [0 .. nblock-1] holds block
199 ((UChar*)eclass) [0 .. nblock-1] holds block
253 /*-- set sentinel bits for block-end detection --*/
316 Reconstruct the original block in
321 VPrintf0 ( " reconstructing block ...\n" );
349 UChar* block,
360 c1 = block[i1]; c2 = block[i2];
364 c1 = block[i
347 mainGtU( UInt32 i1, UInt32 i2, UChar* block, UInt16* quadrant, UInt32 nblock, Int32* budget ) argument
485 mainSimpleSort( UInt32* ptr, UChar* block, UInt16* quadrant, Int32 nblock, Int32 lo, Int32 hi, Int32 d, Int32* budget ) argument
621 mainQSort3( UInt32* ptr, UChar* block, UInt16* quadrant, Int32 nblock, Int32 loSt, Int32 hiSt, Int32 dSt, Int32* budget ) argument
751 mainSort( UInt32* ptr, UChar* block, UInt16* quadrant, UInt32* ftab, Int32 nblock, Int32 verb, Int32* budget ) argument
1034 UChar* block = s->block; local
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dwrapper.h25 struct block;
30 extern int gdb_parse_exp_1 (char **, struct block *,
/freebsd-9.3-release/contrib/ofed/management/opensm/include/opensm/
H A Dosm_pkey.h130 * This objects stores temporary information on pkeys, their target block,
138 uint16_t block; member in struct:osm_pending_pkey
147 * block
148 * The block index based on the previous table extracted from the
152 * The index of the pkey within the block
155 * TRUE for new P_Keys such that the block and index are invalid
245 * Obtain the pointer to the IB PKey table block stored in the object
251 uint16_t block)
253 return ((block < cl_ptr_vector_get_size(&p_pkey_tbl->blocks)) ?
254 cl_ptr_vector_get(&p_pkey_tbl->blocks, block)
249 osm_pkey_tbl_block_get(const osm_pkey_tbl_t * p_pkey_tbl, uint16_t block) argument
280 osm_pkey_tbl_new_block_get(const osm_pkey_tbl_t * p_pkey_tbl, uint16_t block) argument
[all...]
/freebsd-9.3-release/contrib/wpa/src/utils/
H A Dbase64.c106 unsigned char dtable[256], *out, *pos, in[4], block[4], tmp; local
135 block[count] = tmp;
138 *pos++ = (block[0] << 2) | (block[1] >> 4);
139 *pos++ = (block[1] << 4) | (block[2] >> 2);
140 *pos++ = (block[2] << 6) | block[3];
/freebsd-9.3-release/sys/mips/nlm/
H A Dboard.h47 int block; member in struct:xlp_port_ivars
53 int block; member in struct:xlp_block_ivars
/freebsd-9.3-release/tools/regression/pjdfstest/tests/mkdir/
H A D10.t13 for type in regular dir fifo block char socket symlink; do
/freebsd-9.3-release/tools/regression/pjdfstest/tests/mkfifo/
H A D09.t13 for type in regular dir fifo block char socket symlink; do
/freebsd-9.3-release/tools/regression/pjdfstest/tests/symlink/
H A D08.t13 for type in regular dir fifo block char socket symlink; do
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_alloc_btree.c66 * Remove the record from its block then rebalance the tree.
76 xfs_alloc_block_t *block; /* btree block record/key lives in */ local
77 xfs_agblock_t bno; /* btree block number */
78 xfs_buf_t *bp; /* buffer for block */
81 xfs_alloc_key_t key; /* kp points here if block is level 0 */
82 xfs_agblock_t lbno; /* left block's block number */
83 xfs_buf_t *lbp; /* left block's buffer pointer */
84 xfs_alloc_block_t *left; /* left btree block */
603 xfs_alloc_block_t *block; /* btree block record/key lives in */ local
865 xfs_alloc_block_t *block; /* btree block to log from */ local
887 xfs_alloc_block_t *block; /* btree block to log from */ local
909 xfs_alloc_block_t *block; /* btree block to log from */ local
946 xfs_alloc_block_t *block=NULL; /* current btree block */ local
1749 xfs_alloc_block_t *block; /* btree block */ local
1784 xfs_alloc_block_t *block; /* btree block */ local
1904 xfs_alloc_block_t *block; /* btree block */ local
1947 xfs_alloc_block_t *block; /* btree block */ local
2145 xfs_alloc_block_t *block; /* btree block to update */ local
[all...]
H A Dxfs_dir2_block.h23 * Directory version 2, single block format structures
36 * The single block format is as follows:
43 #define XFS_DIR2_BLOCK_MAGIC 0x58443242 /* XD2B: for one block dirs */
51 * Generic single-block structure, for xfs_db.
61 * Pointer to the leaf header embedded in a data block (1-block format)
63 #define XFS_DIR2_BLOCK_TAIL_P(mp,block) xfs_dir2_block_tail_p(mp,block)
65 xfs_dir2_block_tail_p(struct xfs_mount *mp, xfs_dir2_block_t *block) argument
68 ((char *)(block)
[all...]
H A Dxfs_ialloc_btree.c58 * Remove the record from its block then rebalance the tree.
70 xfs_inobt_block_t *block; /* btree block record/key lives in */ local
71 xfs_agblock_t bno; /* btree block number */
72 xfs_buf_t *bp; /* buffer for block */
75 xfs_inobt_key_t key; /* kp points here if block is level 0 */
77 xfs_agblock_t lbno; /* left block's block number */
78 xfs_buf_t *lbp; /* left block's buffer pointer */
79 xfs_inobt_block_t *left; /* left btree block */
537 xfs_inobt_block_t *block; /* btree block record/key lives in */ local
777 xfs_inobt_block_t *block; /* btree block to log from */ local
799 xfs_inobt_block_t *block; /* btree block to log from */ local
821 xfs_inobt_block_t *block; /* btree block to log from */ local
845 xfs_inobt_block_t *block=NULL; /* current btree block */ local
1191 xfs_inobt_block_t *block; /* one half of the old root block */ local
1636 xfs_inobt_block_t *block; /* btree block */ local
1670 xfs_inobt_block_t *block; /* btree block */ local
1792 xfs_inobt_block_t *block; /* btree block */ local
1835 xfs_inobt_block_t *block; /* btree block */ local
2042 xfs_inobt_block_t *block; /* btree block to update */ local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DWorkList.h31 const CFGBlock *block; member in class:clang::ento::WorkListUnit
39 block(B),
45 block(NULL),
51 /// Returns the block counter map associated with the worklist unit.
55 const CFGBlock *getBlock() const { return block; }
/freebsd-9.3-release/sys/dev/random/
H A Drandomdev.h47 random_block_func_t *block; member in struct:random_systat
/freebsd-9.3-release/release/powerpc/
H A Dmkisoimages.sh28 uudecode -o /tmp/hfs-boot-block.bz2 `dirname $0`/hfs-boot.bz2.uu
29 bzip2 -d /tmp/hfs-boot-block.bz2
30 OFFSET=$(hd /tmp/hfs-boot-block | grep 'Loader START' | cut -f 1 -d ' ')
32 dd if=$4/boot/loader of=/tmp/hfs-boot-block seek=$OFFSET conv=notrunc
34 bootable="-o bootimage=macppc;/tmp/hfs-boot-block -o no-emul-boot"
68 rm /tmp/hfs-boot-block
/freebsd-9.3-release/sys/compat/ndis/
H A Dkern_ndis.c205 ndis_miniport_block *block; local
209 block = adapter;
210 sc = device_get_softc(block->nmb_physdeviceobj->do_devext);
220 ndis_miniport_block *block; local
224 block = adapter;
225 sc = device_get_softc(block->nmb_physdeviceobj->do_devext);
236 ndis_miniport_block *block; local
237 block = adapter;
239 block->nmb_setstat = status;
240 KeSetEvent(&block
248 ndis_miniport_block *block; local
259 ndis_miniport_block *block; local
454 ndis_miniport_block *block; local
491 ndis_miniport_block *block; local
551 ndis_miniport_block *block; local
1062 ndis_miniport_block *block; local
1170 ndis_miniport_block *block; local
1329 ndis_miniport_block *block; local
[all...]
/freebsd-9.3-release/contrib/groff/src/libs/libgroff/
H A Dsymbol.cpp31 char *symbol::block = 0; member in class:symbol
138 if (block == 0 || block_size < len) {
140 block = new char [block_size];
142 (void)strcpy(block, p);
143 s = *pp = block;
144 block += len;
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransBlockObjCVariable.cpp14 // This transformation checks whether a reference of the variable for the block
78 bool VisitBlockDecl(BlockDecl *block) { argument
82 I = block->capture_begin(), E = block->capture_end(); I != E; ++I) {
95 bool onlyValueOfVarIsNeeded = checker.TraverseStmt(block->getBody());
120 bool TraverseBlockDecl(BlockDecl *block) { argument
121 RootBlockObjCVarRewriter(VarsToChange).TraverseDecl(block);
/freebsd-9.3-release/contrib/pf/pfctl/
H A Dpfctl_optimize.c68 * A superblock is a block of adjacent rules of similar action. If there
87 BARRIER, /* the presence of the field puts the rule in it's own block */
267 struct superblock *block; local
313 TAILQ_FOREACH(block, &superblocks, sb_entry) {
314 if (optimize_superblock(pf, block))
319 while ((block = TAILQ_FIRST(&superblocks))) {
320 TAILQ_REMOVE(&superblocks, block, sb_entry);
322 while ((por = TAILQ_FIRST(&block->sb_rules))) {
323 TAILQ_REMOVE(&block->sb_rules, por, por_entry);
335 free(block);
367 optimize_superblock(struct pfctl *pf, struct superblock *block) argument
448 remove_identical_rules(struct pfctl *pf, struct superblock *block) argument
490 combine_rules(struct pfctl *pf, struct superblock *block) argument
640 reorder_rules(struct pfctl *pf, struct superblock *block, int depth) argument
814 block_feedback(struct pfctl *pf, struct superblock *block) argument
884 struct superblock *block, *blockcur; local
1012 remove_from_skipsteps(struct skiplist *head, struct superblock *block, struct pf_opt_rule *por, struct pf_skip_step *active_list) argument
1340 struct superblock *block = NULL; local
1410 superblock_inclusive(struct superblock *block, struct pf_opt_rule *por) argument
1630 superblock_free(struct pfctl *pf, struct superblock *block) argument
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dalloc-pool.c116 /* Create a pool of things of size SIZE, with NUM in each block we
142 /* Um, we can't really allocate 0 elements per block. */
187 alloc_pool_list block, next_block; local
194 /* Free each block allocated to the pool. */
195 for (block = pool->block_list; block != NULL; block = next_block)
197 next_block = block->next;
198 free (block);
226 char *block; local
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DLiveVariables.cpp39 void enqueueBlock(const CFGBlock *block);
40 void enqueueSuccessors(const CFGBlock *block);
41 void enqueuePredecessors(const CFGBlock *block);
50 void DataflowWorklist::enqueueBlock(const clang::CFGBlock *block) { argument
51 if (block && !enqueuedBlocks[block->getBlockID()]) {
52 enqueuedBlocks[block->getBlockID()] = true;
53 worklist.push_back(block);
57 void DataflowWorklist::enqueueSuccessors(const clang::CFGBlock *block) { argument
59 for (CFGBlock::const_succ_iterator I = block
70 enqueuePredecessors(const clang::CFGBlock *block) argument
461 runOnBlock(const CFGBlock *block, LiveVariables::LivenessValues val, LiveVariables::Observer *obs) argument
527 const CFGBlock *block = *it; local
[all...]

Completed in 142 milliseconds

1234567891011>>