Home
last modified time | relevance | path

Searched refs:temporaries (Results 1 – 18 of 18) sorted by relevance

/external/v8/test/unittests/interpreter/
Dbytecode-register-allocator-unittest.cc30 BytecodeRegisterAllocator temporaries(&builder); in TEST_F() local
31 first = temporaries.NewRegister().index(); in TEST_F()
32 temporaries.NewRegister(); in TEST_F()
33 temporaries.NewRegister(); in TEST_F()
34 temporaries.NewRegister(); in TEST_F()
39 BytecodeRegisterAllocator temporaries(&builder); in TEST_F() local
40 second = temporaries.NewRegister().index(); in TEST_F()
53 BytecodeRegisterAllocator temporaries(&builder); in TEST_F() local
54 temporaries.PrepareForConsecutiveAllocations(4); in TEST_F()
55 Register reg0 = temporaries.NextConsecutiveRegister(); in TEST_F()
[all …]
Dbytecode-array-builder-unittest.cc321 BytecodeRegisterAllocator temporaries(&builder); in TEST_F() local
323 builder.StoreAccumulatorInRegister(temporaries.NewRegister()); in TEST_F()
/external/eigen/doc/
DTopicLazyEvaluation.dox5 …lligent compile-time mechanisms to enable lazy evaluation and removing temporaries where appropria…
15 …without expression templates always evaluates all sub-expressions into temporaries. So with this c…
21 Expression-templates-based libraries can avoid evaluating sub-expressions into temporaries, which i…
DFunctionsTakingEigenTypes.dox124 …u do not care about temporary objects. Why is that the case? Where are temporaries involved? How c…
131 …taking \e const references to Matrix (or Array) can process expressions at the cost of temporaries.
211 …ary objects in your code. In order to avoid evaluating parameters into temporaries, pass them as (…
DInsideEigenExample.dox274 …xpressions have this flag which makes them automatically evaluate into temporaries before assignin…
/external/clang/test/CodeGenObjCXX/
Dliterals.mm43 // Destroy temporaries
95 // Destroy temporaries
/external/llvm/test/CodeGen/X86/
Dmem-intrin-base-reg.ll12 ; it forces creation of an aligned stack temporary. Perhaps such temporaries
/external/v8/test/webkit/
Dcodegen-temporaries-expected.txt24 Tests whether bytecode codegen properly handles temporaries.
/external/eigen/unsupported/Eigen/
DMPRealSupport135 …// This also permits to directly call mpfr's routines and avoid many temporaries produced by mpreal
/external/llvm/lib/Target/ARM/
DREADME-Thumb.txt18 temporaries to spill values into.
/external/llvm/docs/
DFAQ.rst74 reference. In fact, the names of dummy numbered temporaries like ``%1`` are
DTestingGuide.rst418 if you need multiple temporaries. This is useful as the destination of
DCodingStandards.rst559 initialization. These allow you to easily construct aggregate temporaries in
743 (without any type for temporaries) when doing aggregate initialization or
DProgrammersManual.rst1023 ... because the temporaries are destroyed before the call. That said, Twine's
1024 are much more efficient than intermediate std::string temporaries, and they work
DLangRef.rst129 #. Unnamed temporaries are created when the result of a computation is
131 #. Unnamed temporaries are numbered sequentially (using a per-function
683 unnamed temporaries (:ref:`see above<identifiers>`). For example, if a function
/external/clang/test/SemaObjC/
Darc.m111 // Okay because of magic temporaries.
/external/clang/include/clang/Driver/
DOptions.td2071 defm check_array_temporaries : BooleanFFlag<"check-array-temporaries">, Group<gfortran_Group>;
/external/v8/
DChangeLog9740 Made sure that names of temporaries do not clash with real variables.