HomeSort by relevance Sort by last modified time
    Searched refs:fold (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
fold.hpp 14 // $Id: fold.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
31 struct fold struct in namespace:boost::mpl
41 BOOST_MPL_AUX_LAMBDA_SUPPORT(3,fold,(Sequence,State,ForwardOp))
44 BOOST_MPL_AUX_NA_SPEC(3, fold)
remove_if.hpp 18 #include <boost/mpl/fold.hpp>
49 : fold<
  /external/chromium_org/third_party/jinja2/
optimizer.py 6 The jinja optimizer is currently trying to constant fold a few expressions
54 def fold(self, node): member in class:Optimizer
67 visit_Filter = visit_Test = visit_CondExpr = fold
68 del fold
  /external/chromium_org/v8/test/mjsunit/harmony/
iteration-semantics.js 82 function fold(cons, seed, iterable) { function
178 assertEquals(45, fold(sum, 0, integers_until(10)));
180 assertEquals([1, 2, 3], fold(append, [], values(1, 2, 3)));
182 assertEquals(45, fold(sum, 0, take(integers_from(0), 10)));
184 assertEquals(90, fold(sum, 0, take(skip_every(integers_from(0), 2), 10)));
194 fold(append, [],
206 fold(append, [],
210 fold(append, [],
217 assertEquals(0, fold(sum, 0, unreachable(null)));
218 assertEquals(0, fold(sum, 0, unreachable(undefined)))
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-346587.js 5 // Flags: --fold-constants --allow-natives-syntax
regress-347543.js 5 // Flags: --allow-natives-syntax --debug-code --fold-constants
regress-351261.js 5 // Flags: --allow-natives-syntax --fold-constants
regress-crbug-347903.js 9 // Allocation folding will bail out trying to fold the elements alloc of
regress-crbug-351320.js 5 // Flags: --allow-natives-syntax --fold-constants
regress-2843.js 35 var b = x + 2; // Need another Simulate to fold the first one into.
regress-crbug-280333.js 35 var b = x + 2; // Need another Simulate to fold the first one into.
  /external/elfutils/0.153/config/
Makefile.am 44 | fold -s -w 70 | sed '1!s/^[^-]/ &/' >> $$tmpname; \
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RecurrenceSetTest.java 82 RecurrenceSet.fold(RRULE_LESS_THAN_75_CHARS));
85 RecurrenceSet.fold(RRULE_MORE_THAN_75_CHARS));
88 RecurrenceSet.fold(STRING_WITH_160_CHARS));
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
fold_impl.hpp 39 # define AUX778076_FOLD_IMPL_NAME_PREFIX fold
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/include/isl/
polynomial.h 262 isl_ctx *isl_qpolynomial_fold_get_ctx(__isl_keep isl_qpolynomial_fold *fold);
263 enum isl_fold isl_qpolynomial_fold_get_type(__isl_keep isl_qpolynomial_fold *fold);
270 __isl_keep isl_qpolynomial_fold *fold);
271 void isl_qpolynomial_fold_free(__isl_take isl_qpolynomial_fold *fold);
273 int isl_qpolynomial_fold_is_empty(__isl_keep isl_qpolynomial_fold *fold);
278 __isl_keep isl_qpolynomial_fold *fold);
285 __isl_take isl_qpolynomial_fold *fold, isl_int v);
287 __isl_take isl_qpolynomial_fold *fold, isl_int v);
290 __isl_take isl_qpolynomial_fold *fold,
295 __isl_take isl_qpolynomial_fold *fold,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/include/isl/
polynomial.h 262 isl_ctx *isl_qpolynomial_fold_get_ctx(__isl_keep isl_qpolynomial_fold *fold);
263 enum isl_fold isl_qpolynomial_fold_get_type(__isl_keep isl_qpolynomial_fold *fold);
270 __isl_keep isl_qpolynomial_fold *fold);
271 void isl_qpolynomial_fold_free(__isl_take isl_qpolynomial_fold *fold);
273 int isl_qpolynomial_fold_is_empty(__isl_keep isl_qpolynomial_fold *fold);
278 __isl_keep isl_qpolynomial_fold *fold);
285 __isl_take isl_qpolynomial_fold *fold, isl_int v);
287 __isl_take isl_qpolynomial_fold *fold, isl_int v);
290 __isl_take isl_qpolynomial_fold *fold,
295 __isl_take isl_qpolynomial_fold *fold,
    [all...]
  /external/clang/test/CXX/drs/
dr5xx.cpp 126 #define fold(x) (__builtin_constant_p(x) ? (x) : (x)) macro
127 int test[fold((int*)(void*)0) ? -1 : 1];
128 #undef fold macro
  /external/chromium_org/v8/test/mjsunit/
constant-fold-control-instructions.js 5 // Flags: --allow-natives-syntax --fold-constants
  /external/opencv/ml/src/
mlestimate.cpp 98 // it is 1 if all was correct, and it is 2 if current fold wasn't' checked.
108 int k, fold;
115 fold = ++crVal->current_fold;
117 if (fold >= crVal->folds_all)
119 if (fold == crVal->folds_all)
127 k = crVal->folds[fold + 1] - crVal->folds[fold];
128 crVal->sampleIdxTrain->data.i = crVal->sampleIdxAll + crVal->folds[fold + 1];
130 crVal->sampleIdxEval->data.i = crVal->sampleIdxAll + crVal->folds[fold];
277 // Fixing that this fold already checked
    [all...]
  /external/chromium_org/v8/test/webkit/
dfg-constant-fold-misprediction.js 31 // will not constant fold the division below, but the DFG constant folder will.
37 // If we constant fold this division, we'll have a constant node that is predicted
41 // fold that Int32ToDouble. And hence we will have an infinite loop. The correct fix
dfg-constant-fold-first-local-read-after-block-merge.js 25 "Tests that the DFG doesn't crash if we constant fold the first read of a local variable in a block that is the result of merging two blocks, where the first doesn't touch the local and the second reads it."
  /external/chromium_org/third_party/opus/src/doc/
build_draft.sh 72 cat opus_source.tar.gz| base64 | tr -d '\n' | fold -w 64 | \
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
MimeMessage.java 281 setHeader("To", MimeUtility.fold(Address.toHeader(addresses), TO_LENGTH));
289 setHeader("CC", MimeUtility.fold(Address.toHeader(addresses), CC_LENGTH));
297 setHeader("BCC", MimeUtility.fold(Address.toHeader(addresses), BCC_LENGTH));
335 setHeader("From", MimeUtility.fold(from.toHeader(), FROM_LENGTH));
359 setHeader("Reply-to", MimeUtility.fold(Address.toHeader(replyTo), REPLY_TO_LENGTH));
  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 130 bool fold(CallInst *CI, const DataLayout *TD, const TargetLibraryInfo *TLI);
  /external/chromium_org/v8/test/mjsunit/compiler/
minus-zero.js 28 // Flags: --allow-natives-syntax --no-fold-constants

Completed in 209 milliseconds

1 2 3 4