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

1 2 3

  /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/es6/
iteration-semantics.js 80 function fold(cons, seed, iterable) { function
176 assertEquals(45, fold(sum, 0, integers_until(10)));
178 assertEquals([1, 2, 3], fold(append, [], values(1, 2, 3)));
180 assertEquals(45, fold(sum, 0, take(integers_from(0), 10)));
182 assertEquals(90, fold(sum, 0, take(skip_every(integers_from(0), 2), 10)));
192 fold(append, [],
204 fold(append, [],
208 fold(append, [],
215 assertThrows('fold(sum, 0, unreachable(null))', TypeError);
216 assertThrows('fold(sum, 0, unreachable(undefined))', TypeError)
    [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.
regress-embedded-cons-string.js 28 // Flags: --fold-constants --nodead-code-elimination
  /external/elfutils/0.153/config/
Makefile.am 44 | fold -s -w 70 | sed '1!s/^[^-]/ &/' >> $$tmpname; \
  /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
dr1xx.cpp 566 #define fold(x) (__builtin_constant_p(0) ? (x) : (x)) macro
568 #define fold macro
570 int check[fold(p() == 0) ? 1 : -1];
571 #undef fold macro
dr2xx.cpp 9 #define fold(x) (__builtin_constant_p(x) ? (x) : (x)) macro
11 #define fold macro
28 int arr[fold(g == &f<int>) ? 1 : -1];
834 int a[fold(intp() ? -1 : 1)];
  /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."
dfg-constant-fold-logical-not-branch.js 25 "Tests what happens if we fail to constant fold a LogicalNot that leads into a branch, when the CFA proves that the LogicalNot has a constant value."
  /external/chromium_org/third_party/opus/src/doc/
build_draft.sh 72 cat opus_source.tar.gz| base64 | tr -d '\n' | fold -w 64 | \
  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 130 bool fold(CallInst *CI, const DataLayout *TD, const TargetLibraryInfo *TLI);
  /external/chromium_org/third_party/angle/src/compiler/translator/
Intermediate.cpp 103 // See if we can fold constants.
110 leftTempConstant->fold(node->getOp(), rightTempConstant, mInfoSink);
226 TIntermTyped *newChild = childTempConstant->fold(op, 0, mInfoSink);
401 // See if all the operands are constant, then fold it otherwise not.
  /external/chromium_org/v8/test/mjsunit/compiler/
minus-zero.js 28 // Flags: --allow-natives-syntax --no-fold-constants
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
base.hpp 229 fold(F op, T a, It0 it0, It0 end0, Its... its) { function in namespace:clover
  /external/mesa3d/src/gallium/state_trackers/clover/core/
base.hpp 229 fold(F op, T a, It0 it0, It0 end0, Its... its) { function in namespace:clover

Completed in 495 milliseconds

1 2 3