Searched refs:strategy (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_entry_link_resolver.c61 /* Users pass us a format code, we translate that into a strategy here. */
84 int strategy; member in struct:archive_entry_linkresolver
127 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_NEW_CPIO;
130 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_OLD_CPIO;
135 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_MTREE;
138 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_TAR;
141 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_TAR;
190 switch (res->strategy) {
/freebsd-9.3-release/sys/ddb/
H A Ddb_sym.c384 db_search_symbol( val, strategy, offp)
386 db_strategy_t strategy;
397 sym = X_db_search_symbol(&db_symtabs[i], val, strategy, &newdiff);
436 * After matching the symbol according to the given strategy
452 db_printsym(off, strategy)
454 db_strategy_t strategy;
463 cursym = db_search_symbol(off, strategy, &d);
482 if (strategy == DB_STGY_PROC) {
H A Ddb_sym.h63 typedef int db_strategy_t; /* search strategy */
101 db_strategy_t strategy, db_expr_t *diffp);
/freebsd-9.3-release/sys/net/
H A Dzlib.h362 /* compression strategy; see deflateInit2() below for details */
598 int strategy));
620 The strategy parameter is used to tune the compression algorithm. Use the
627 between Z_DEFAULT and Z_HUFFMAN_ONLY. The strategy parameter only affects
694 compression state which can be quite large, so this strategy is slow and
714 extern int EXPORT deflateParams OF((z_streamp strm, int level, int strategy));
716 Dynamically update the compression level and compression strategy.
719 a different strategy. If the compression level is changed, the input
993 int windowBits, int memLevel, int strategy,
1001 #define deflateInit2(strm, level, method, windowBits, memLevel, strategy) \
[all...]
H A Dzlib.c204 * You may have to use the same strategy for Borland C (untested).
433 int strategy; /* favor or force Huffman coding*/ member in struct:deflate_state
738 int deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
745 int strategy;
781 strategy < 0 || strategy > Z_HUFFMAN_ONLY) {
819 s->strategy = strategy;
899 int deflateParams(strm, level, strategy)
902 int strategy;
[all...]
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzlib.h196 /* compression strategy; see deflateInit2() below for details */
487 int strategy));
519 The strategy parameter is used to tune the compression algorithm. Use the
528 Z_HUFFMAN_ONLY, but give better compression for PNG image data. The strategy
588 compression state which can be quite large, so this strategy is slow and
610 int strategy));
612 Dynamically update the compression level and compression strategy. The
613 interpretation of level and strategy is as in deflateInit2. This can be
616 strategy. If the compression level is changed, the input available so far
1074 ("wb9") or a strategy
[all...]
H A Ddeflate.c222 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
229 int strategy;
273 strategy < 0 || strategy > Z_FIXED) {
314 s->strategy = strategy;
422 int ZEXPORT deflateParams(strm, level, strategy)
425 int strategy;
439 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXE
[all...]
H A Ddeflate.h183 int strategy; /* favor or force Huffman coding*/ member in struct:internal_state
H A Dtrees.c986 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
/freebsd-9.3-release/lib/libz/
H A Dgzwrite.c46 MAX_WBITS + 16, DEF_MEM_LEVEL, state->strategy);
500 int ZEXPORT gzsetparams(file, level, strategy)
503 int strategy;
519 if (level == state->level && strategy == state->strategy)
534 deflateParams(strm, level, strategy);
537 state->strategy = strategy;
H A Ddeflate.c213 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
220 int strategy;
273 strategy < 0 || strategy > Z_FIXED) {
316 s->strategy = strategy;
490 int ZEXPORT deflateParams(strm, level, strategy)
493 int strategy;
507 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXE
[all...]
H A Dgzlib.c124 state->strategy = Z_DEFAULT_STRATEGY;
158 state->strategy = Z_FILTERED;
161 state->strategy = Z_HUFFMAN_ONLY;
164 state->strategy = Z_RLE;
167 state->strategy = Z_FIXED;
H A Dzlib.h197 /* compression strategy; see deflateInit2() below for details */
532 int strategy));
564 The strategy parameter is used to tune the compression algorithm. Use the
574 strategy parameter only affects the compression ratio but not the
640 compression state which can be quite large, so this strategy is slow and can
662 int strategy));
664 Dynamically update the compression level and compression strategy. The
665 interpretation of level and strategy is as in deflateInit2. This can be
667 to switch to a different kind of input data requiring a different strategy.
1231 a strategy
[all...]
H A Dgzguts.h183 int strategy; /* compression strategy */ member in struct:__anon5381
H A Ddeflate.h186 int strategy; /* favor or force Huffman coding*/ member in struct:internal_state
H A Dtrees.c972 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
/freebsd-9.3-release/sys/kern/
H A Dkern_gzio.c95 int strategy = Z_DEFAULT_STRATEGY; /* compression strategy */ local
137 strategy = Z_FILTERED;
139 strategy = Z_HUFFMAN_ONLY;
151 Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy);
H A Dinit_main.c163 symbol_name(vm_offset_t va, db_strategy_t strategy) argument
171 sym = db_search_symbol(va, strategy, &offset);
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjC.cpp570 /// The 'native' strategy is to use the architecture's provided
584 /// The 'expression' strategy is to emit normal assignment or
612 /// Pick an implementation strategy for the given property synthesis.
838 // Pick an implementation strategy.
839 PropertyImplStrategy strategy(CGM, propImpl);
840 switch (strategy.getKind()) {
843 if (strategy.getIvarSize().isZero())
852 getContext().toBits(strategy.getIvarSize()));
859 load->setAlignment(strategy.getIvarAlignment().getQuantity());
893 args.add(RValue::get(Builder.getInt1(strategy
[all...]
/freebsd-9.3-release/sys/dev/ixgbe/
H A Dixgbe_common.h152 int strategy);
H A Dixgbe_82598.c60 u32 headroom, int strategy);
1379 * @strategy: packet buffer allocation strategy
1382 u32 headroom, int strategy)
1392 switch (strategy) {
1381 ixgbe_set_rxpba_82598(struct ixgbe_hw *hw, int num_pb, u32 headroom, int strategy) argument
H A Dixgbe_common.c4472 * @strategy: packet buffer allocation strategy
4475 int strategy)
4488 * buffers requested using supplied strategy.
4490 switch (strategy) {
4492 /* ixgbe_dcb_pba_80_48 strategy weight first half of packet
4510 /* Only support an equally distributed Tx packet buffer strategy. */
4474 ixgbe_set_rxpba_generic(struct ixgbe_hw *hw, int num_pb, u32 headroom, int strategy) argument
/freebsd-9.3-release/contrib/llvm/lib/CodeGen/
H A DMachineTraceMetrics.cpp80 // those instructions don't depend on any given trace strategy.
281 // A trace selection strategy is implemented as a sub-class of Ensemble. The
373 // Get an Ensemble sub-class for the requested trace strategy.
375 MachineTraceMetrics::getEnsemble(MachineTraceMetrics::Strategy strategy) { argument
376 assert(strategy < TS_NumStrategies && "Invalid trace strategy enum");
377 Ensemble *&E = Ensembles[strategy];
382 switch (strategy) {
384 default: llvm_unreachable("Invalid trace strategy enum");
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DSemaDeclObjC.cpp2015 Sema::MethodMatchStrategy strategy,
2018 static bool matchTypes(ASTContext &Context, Sema::MethodMatchStrategy strategy, argument
2028 if (strategy == Sema::MMS_strict) return false;
2051 return tryMatchRecordTypes(Context, strategy, left, right);
2071 Sema::MethodMatchStrategy strategy,
2094 if (!matchTypes(Context, strategy, li->getType(), ri->getType()))
2105 MethodMatchStrategy strategy) {
2106 if (!matchTypes(Context, strategy,
2129 if (!matchTypes(Context, strategy, lparm->getType(), rparm->getType()))
2070 tryMatchRecordTypes(ASTContext &Context, Sema::MethodMatchStrategy strategy, const Type *lt, const Type *rt) argument
2103 MatchTwoMethodDeclarations(const ObjCMethodDecl *left, const ObjCMethodDecl *right, MethodMatchStrategy strategy) argument
/freebsd-9.3-release/sys/vm/
H A Dswap_pager.c2157 sw_strategy_t *strategy, sw_close_t *close, dev_t dev, int flags)
2191 sp->sw_strategy = strategy;
2156 swaponsomething(struct vnode *vp, void *id, u_long nblks, sw_strategy_t *strategy, sw_close_t *close, dev_t dev, int flags) argument

Completed in 384 milliseconds

12