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

12

/freebsd-10-stable/crypto/openssh/regress/unittests/test_helper/
H A Dfuzz.c61 int strategy; member in struct:fuzz
108 switch (fuzz->strategy) {
111 fuzz_ntop(fuzz->strategy),
116 fuzz_ntop(fuzz->strategy),
123 fuzz_ntop(fuzz->strategy),
128 fuzz_ntop(fuzz->strategy),
135 fuzz_ntop(fuzz->strategy),
140 fuzz_ntop(fuzz->strategy),
146 fuzz_ntop(fuzz->strategy),
263 FUZZ_DBG(("fuzz = %p, strategy
[all...]
/freebsd-10-stable/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
131 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_OLD_CPIO;
137 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_NEW_CPIO;
140 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_OLD_CPIO;
145 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_MTREE;
151 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_TAR;
154 res->strategy = ARCHIVE_ENTRY_LINKIFY_LIKE_OLD_CPIO;
200 switch (res->strategy) {
/freebsd-10-stable/sys/ddb/
H A Ddb_sym.h63 typedef int db_strategy_t; /* search strategy */
101 db_strategy_t strategy, db_expr_t *diffp);
H A Ddb_sym.c367 db_search_symbol(db_addr_t val, db_strategy_t strategy, db_expr_t *offp) argument
377 sym = X_db_search_symbol(&db_symtabs[i], val, strategy, &newdiff);
413 * After matching the symbol according to the given strategy
429 db_printsym(db_expr_t off, db_strategy_t strategy) argument
438 cursym = db_search_symbol(off, strategy, &d);
457 if (strategy == DB_STGY_PROC) {
/freebsd-10-stable/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.c211 * You may have to use the same strategy for Borland C (untested).
440 int strategy; /* favor or force Huffman coding*/ member in struct:deflate_state
745 int deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
752 int strategy;
788 strategy < 0 || strategy > Z_HUFFMAN_ONLY) {
826 s->strategy = strategy;
906 int deflateParams(strm, level, strategy)
909 int strategy;
[all...]
/freebsd-10-stable/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-10-stable/contrib/zlib/
H A Dgzwrite.c48 MAX_WBITS + 16, DEF_MEM_LEVEL, state->strategy);
588 int ZEXPORT gzsetparams(file, level, strategy)
591 int strategy;
607 if (level == state->level && strategy == state->strategy)
622 deflateParams(strm, level, strategy);
625 state->strategy = strategy;
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.h201 /* compression strategy; see deflateInit2() below for details */
543 int strategy));
588 The strategy parameter is used to tune the compression algorithm. Use the
598 strategy parameter only affects the compression ratio but not the
686 compression state which can be quite large, so this strategy is slow and can
708 int strategy));
710 Dynamically update the compression level and compression strategy. The
711 interpretation of level and strategy is as in deflateInit2(). This can be
713 to switch to a different kind of input data requiring a different strategy.
715 strategy i
[all...]
H A Dgzguts.h192 int strategy; /* compression strategy */ member in struct:__anon489
H A Ddeflate.c240 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
247 int strategy;
300 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
344 s->strategy = strategy;
568 int ZEXPORT deflateParams(strm, level, strategy)
571 int strategy;
584 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXE
[all...]
H A Ddeflate.h189 int strategy; /* favor or force Huffman coding*/ member in struct:internal_state
H A Dtrees.c976 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
/freebsd-10-stable/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.c174 symbol_name(vm_offset_t va, db_strategy_t strategy) argument
182 sym = db_search_symbol(va, strategy, &offset);
/freebsd-10-stable/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-10-stable/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-10-stable/sys/dev/ixgbe/
H A Dixgbe_common.h159 int strategy);
H A Dixgbe_82598.c67 u32 headroom, int strategy);
1391 * @strategy: packet buffer allocation strategy
1394 u32 headroom, int strategy)
1404 switch (strategy) {
1393 ixgbe_set_rxpba_82598(struct ixgbe_hw *hw, int num_pb, u32 headroom, int strategy) argument
/freebsd-10-stable/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-10-stable/sys/vm/
H A Dswap_pager.c2183 sw_strategy_t *strategy, sw_close_t *close, dev_t dev, int flags)
2217 sp->sw_strategy = strategy;
2182 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 179 milliseconds

12