Searched refs:block (Results 101 - 125 of 468) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/libpcap/
H A Dgencode.c171 static struct block *root;
218 static inline struct block *new_block(int);
220 static struct block *gen_retblk(int);
223 static void backpatch(struct block *, struct block *);
224 static void merge(struct block *, struct block *);
225 static struct block *gen_cmp(enum e_offrel, u_int, u_int, bpf_int32);
226 static struct block *gen_cmp_gt(enum e_offrel, u_int, u_int, bpf_int32);
227 static struct block *gen_cmp_g
[all...]
/freebsd-9.3-release/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_stream.c94 } block; member in struct:xz_dec
108 /* Number of Records (matches block.count in valid files) */
112 * Hash calculated from the Records (matches block.hash in
232 s->block.compressed += b->in_pos - s->in_start;
233 s->block.uncompressed += b->out_pos - s->out_start;
239 if (s->block.compressed > s->block_header.compressed
240 || s->block.uncompressed
251 != s->block.compressed)
256 != s->block.uncompressed)
259 s->block
[all...]
/freebsd-9.3-release/contrib/less/
H A Dch.c47 BLOCKNUM block; member in struct:buf
65 BLOCKNUM block; member in struct:filestate
73 #define ch_block thisfile->block
167 if (ch_block == bp->block && ch_offset < bp->datasize)
174 * Look for a buffer holding the desired block.
180 if (bp->block == ch_block)
195 * and read the desired block into it.
200 bufnode_buf(ch_buftail)->block != -1)
219 bp->block = ch_block;
251 * Read the block
422 BLOCKNUM block; local
[all...]
/freebsd-9.3-release/contrib/ofed/management/opensm/opensm/
H A Dosm_sa_vlarb_record.c80 IN uint8_t block)
105 cl_ntoh16(lid), osm_physp_get_port_num(p_physp), block);
111 p_rec_item->rec.block_num = block;
112 p_rec_item->rec.vl_arb_tbl = *(osm_physp_get_vla_tbl(p_physp, block));
128 uint8_t block; local
132 /* we got here with the phys port - all that's left is to get the right block */
133 for (block = 1; block <= 4; block++) {
135 || block
77 __osm_sa_vl_arb_create(IN osm_sa_t * sa, IN osm_physp_t * const p_physp, IN osm_vl_arb_search_ctxt_t * const p_ctxt, IN uint8_t block) argument
[all...]
H A Dosm_pkey_mgr.c116 &p_pending->block,
120 "Failed to obtain P_Key 0x%04x block and index for node "
171 IN const ib_pkey_table_t * block,
185 (uint8_t *) block, sizeof(*block),
261 ib_pkey_table_t *block, *new_block; local
308 block_index = p_pending->block;
335 "Failed to set PKey 0x%04x in block %u idx %u "
353 block = osm_pkey_tbl_block_get(p_pkey_tbl, block_index);
357 if (block
169 pkey_mgr_update_pkey_entry(IN osm_sm_t * sm, IN const osm_physp_t * p_physp, IN const ib_pkey_table_t * block, IN const uint16_t block_index) argument
392 ib_pkey_table_t *block, *peer_block; local
[all...]
H A Dosm_sa_lft_record.c76 IN ib_net16_t const lid, IN uint16_t const block)
95 block, cl_ntoh16(lid));
100 p_rec_item->rec.block_num = cl_hton16(block);
102 /* copy the lft block */
103 osm_switch_get_lft_block(p_sw, block, p_rec_item->rec.lft);
127 uint16_t min_block, max_block, block; local
178 for (block = min_block; block <= max_block; block++)
180 osm_port_get_base_lid(p_port), block);
73 __osm_lftr_rcv_new_lftr(IN osm_sa_t * sa, IN const osm_switch_t * const p_sw, IN cl_qlist_t * const p_list, IN ib_net16_t const lid, IN uint16_t const block) argument
[all...]
H A Dosm_sa_mft_record.c77 IN uint16_t const block, IN uint8_t const position)
97 block, position, cl_ntoh16(lid));
100 (block & IB_MCAST_BLOCK_ID_MASK_HO);
107 /* copy the mft block */
108 osm_switch_get_mft_block(p_sw, block, position, p_rec_item->rec.mft);
133 uint16_t min_block, max_block, block; local
208 for (block = min_block; block <= max_block; block++)
213 block, positio
73 __osm_mftr_rcv_new_mftr(IN osm_sa_t * sa, IN osm_switch_t * const p_sw, IN cl_qlist_t * const p_list, IN ib_net16_t const lid, IN uint16_t const block, IN uint8_t const position) argument
[all...]
/freebsd-9.3-release/sys/powerpc/mambo/
H A Dmambo_disk.c200 daddr_t block, end; local
221 for (block = bp->bio_pblkno; block < end;) {
224 (block - bp->bio_pblkno) * sz;
226 numblocks = end - block;
232 (u_long)block, (numblocks << 16) | unit);
235 (u_long)block, (numblocks << 16) | unit);
243 block += numblocks;
245 if (block < end) {
247 bp->bio_resid = (end - block) * s
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Analysis/
H A DUninitializedValues.cpp117 ValueVector &getValueVector(const CFGBlock *block) { argument
118 return vals[block->getBlockID()];
123 bool updateValueVectorWithScratch(const CFGBlock *block);
133 Value getValue(const CFGBlock *block, const CFGBlock *dstBlock, argument
137 return getValueVector(block)[idx.getValue()];
157 static void printVector(const CFGBlock *block, ValueVector &bv, argument
159 llvm::errs() << block->getBlockID() << " :";
180 bool CFGBlockValues::updateValueVectorWithScratch(const CFGBlock *block) { argument
181 ValueVector &dst = getValueVector(block);
186 printVector(block, scratc
227 enqueueSuccessors(const clang::CFGBlock *block) argument
435 const CFGBlock *block; member in class:__anon3052::TransferFunctions
442 TransferFunctions(CFGBlockValues &vals, const CFG &cfg, const CFGBlock *block, AnalysisDeclContext &ac, const ClassifyRefs &classification, UninitVariablesHandler &handler) argument
742 runOnBlock(const CFGBlock *block, const CFG &cfg, AnalysisDeclContext &ac, CFGBlockValues &vals, const ClassifyRefs &classification, llvm::BitVector &wasAnalyzed, UninitVariablesHandler &handler) argument
856 const CFGBlock *block = *BI; local
[all...]
/freebsd-9.3-release/contrib/xz/src/xz/
H A Dlist.c388 const uint32_t size = my_min(iter->block.total_size
392 if (io_pread(pair, &buf, size, iter->block.compressed_file_offset))
399 // Initialize the block structure and decode Block Header Size.
401 lzma_block block; local
402 block.version = 0;
403 block.check = iter->stream.flags->check;
404 block.filters = filters;
406 block.header_size = lzma_block_header_size_decode(buf.u8[0]);
407 if (block.header_size > size)
411 switch (lzma_block_header_decode(&block, NUL
[all...]
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_fsops.c126 xfs_btree_sblock_t *block; local
187 * AG freelist header block
219 * AG inode header block
243 * BNO btree root block
248 block = XFS_BUF_TO_SBLOCK(bp);
249 memset(block, 0, mp->m_sb.sb_blocksize);
250 block->bb_magic = cpu_to_be32(XFS_ABTB_MAGIC);
251 block->bb_level = 0;
252 block->bb_numrecs = cpu_to_be16(1);
253 block
[all...]
/freebsd-9.3-release/contrib/gcc/
H A Dxcoffout.c337 /* Output the symbols defined in block number DO_BLOCK.
340 counting blocks until it finds the desired block. */
345 xcoffout_block (tree block, int depth, tree args)
347 while (block)
350 if (TREE_USED (block))
352 /* When we reach the specified block, output its symbols. */
353 if (BLOCK_NUMBER (block) == do_block)
355 /* Output the syms of the block. */
357 dbxout_syms (BLOCK_VARS (block));
361 /* We are now done with the block
341 xcoffout_block(tree block, int depth, tree args) argument
[all...]
H A Dgcov.c27 the first if there are several which are all listed in the same block. */
41 /* Need an option to show individual block counts, and show
112 /* Describes a basic block. Contains lists of arcs to successor and
229 /* Describes a file mentioned in the block graph. Contains an array
252 /* Holds a list of function basic block graphs. */
269 /* Name and file pointer of the input file for the basic block graph. */
302 /* Output count information for every basic block, not merely those
397 fnotice (file, " -a, --all-blocks Show information for every basic block\n");
590 block_t *block;
593 for (ix = fn->num_blocks, block
589 block_t *block; local
1492 block_t *block = &fn->blocks[ix]; local
1596 block_t *block, *block_p, *block_n; local
1869 block_t *block; local
[all...]
H A Dtree-ssa-pre.c29 #include "basic-block.h"
58 any store in a block, instead of loads that occur before
72 generation of values/expressions by a given block. We use them
83 problem.An expression is anticipatable in a given block if it could
84 be generated in that block. This means that if we had to perform
85 an insertion in that block, of the value of that expression, we
102 given block.
154 able to find the leader for a value in an arbitrary block, so this
236 a basic block. */
240 basic block
1546 valid_in_set(value_set_t set, tree expr, basic_block block) argument
1646 clean(value_set_t set, basic_block block) argument
1677 compute_antic_aux(basic_block block, bool block_has_abnormal_pred_edge) argument
1751 clean (ANTIC_IN (block), block); local
1787 basic_block block; local
2203 create_component_ref_by_pieces(basic_block block, tree expr, tree stmts) argument
2286 find_or_generate_expression(basic_block block, tree expr, tree stmts) argument
2318 create_expression_by_pieces(basic_block block, tree expr, tree stmts) argument
2485 insert_into_preds_of_block(basic_block block, value_set_node_t node, tree *avail) argument
2648 insert_aux(basic_block block) argument
2875 create_value_expr_from(tree expr, basic_block block, tree stmt) argument
3003 insert_extra_phis(basic_block block, basic_block dom) argument
3094 try_look_through_load(tree lhs, tree mem_ref, tree stmt, basic_block block) argument
3232 basic_block block; local
3385 basic_block block, son; local
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dada-exp.y52 #include "block.h"
106 struct block* block;
128 static void write_object_renaming (struct block*, struct symbol*);
130 static void write_var_from_name (struct block*, struct name_info);
151 struct block *bval;
174 %type <bval> block
588 | block NAME /* GDB extension */
591 | block OBJECT_RENAMING
600 block
599 block : BLOCKNAME /* GDB extension */ label
[all...]
/freebsd-9.3-release/contrib/gdb/gdb/mi/
H A Dmi-cmd-stack.c29 #include "block.h"
232 struct block *block; local
242 block = get_frame_block (fi, 0);
246 while (block != 0)
248 ALL_BLOCK_SYMBOLS (block, iter, sym)
297 block, VAR_DOMAIN,
325 if (BLOCK_FUNCTION (block))
328 block = BLOCK_SUPERBLOCK (block);
[all...]
/freebsd-9.3-release/contrib/ipfilter/rules/
H A Dexample.32 # block all inbound packets.
4 block in from any to any
23 # block all outbound packets.
25 block out from any to any
/freebsd-9.3-release/contrib/llvm/include/llvm/Support/
H A DMD5.h45 MD5_u32plus block[16]; member in class:llvm::MD5
/freebsd-9.3-release/crypto/openssh/
H A Dmdoc2man.awk33 block=0
/freebsd-9.3-release/lib/libc/gen/
H A Dcrypt.c90 encrypt(char *block __unused, int flag __unused)
/freebsd-9.3-release/sys/cam/ctl/
H A DREADME.ctl.txt96 - To add a LUN with the block/file backend:
99 ctladm create -b block -o file=myfile
106 0 block 2147483648 512 MYSERIAL 0 MYDEVID 0
107 1 block 2147483648 512 MYSERIAL 1 MYDEVID 1
108 2 block 2147483648 512 MYSERIAL 2 MYDEVID 2
109 3 block 2147483648 512 MYSERIAL 3 MYDEVID 3
110 4 block 2147483648 512 MYSERIAL 4 MYDEVID 4
111 5 block 2147483648 512 MYSERIAL 5 MYDEVID 5
112 6 block 2147483648 512 MYSERIAL 6 MYDEVID 6
113 7 block 214748364
[all...]
/freebsd-9.3-release/sys/dev/drm/
H A Dradeon_mem.c47 /* Maybe cut off the start of an existing block */
64 /* Maybe cut off the end of an existing block */
81 /* Our block is in the middle */
227 struct mem_block *block, **heap; local
244 block = alloc_block(*heap, alloc->size, alloc->alignment, file_priv);
246 if (!block)
249 if (DRM_COPY_TO_USER(alloc->region_offset, &block->start,
262 struct mem_block *block, **heap; local
273 block = find_block(*heap, memfree->region_offset);
274 if (!block)
[all...]
/freebsd-9.3-release/sys/dev/drm2/radeon/
H A Dradeon_mem.c46 /* Maybe cut off the start of an existing block */
63 /* Maybe cut off the end of an existing block */
80 /* Our block is in the middle */
226 struct mem_block *block, **heap; local
243 block = alloc_block(*heap, alloc->size, alloc->alignment, file_priv);
245 if (!block)
248 if (DRM_COPY_TO_USER(alloc->region_offset, &block->start,
261 struct mem_block *block, **heap; local
272 block = find_block(*heap, memfree->region_offset);
273 if (!block)
[all...]
/freebsd-9.3-release/tools/regression/pjdfstest/tests/rename/
H A D08.t32 for type in regular dir fifo block char socket symlink; do
47 for type in regular dir fifo block char socket symlink; do
/freebsd-9.3-release/sys/dev/bxe/
H A Decore_init.h60 /* Returns the index of start or end of a specific block stage in ops array*/
61 #define BLOCK_OPS_IDX(block, stage, end) \
62 (2*(((block)*NUM_OF_INIT_PHASES) + (stage)) + (end))
559 /* Returns the index of start or end of a specific block stage in ops array*/
560 #define BLOCK_OPS_IDX(block, stage, end) \
561 (2*(((block)*NUM_OF_INIT_PHASES) + (stage)) + (end))
608 #define BLOCK_PRTY_INFO(block, en_mask, m1, m1h, m2, m3) \
610 block##_REG_##block##_PRTY_MASK, \
611 block##_REG
[all...]

Completed in 317 milliseconds

1234567891011>>