HomeSort by relevance Sort by last modified time
    Searched full:temporaries (Results 1 - 25 of 345) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/lib/asan/lit_tests/TestCases/
use-after-scope-temp.cc 4 // Lifetime for temporaries is not emitted yet.
  /ndk/tests/device/test-stlport_shared-exception/jni/
new1_3.cpp 3 // Purpose: Check the lifetime of the temporaries.
5 // Lifetime of temporaries:
6 // egcs 2.92 performs cleanup for temporaries inside new expressions
eh990323-1.cpp 2 // check cleanup of template temporaries
  /ndk/tests/device/test-stlport_static-exception/jni/
new1_3.cpp 3 // Purpose: Check the lifetime of the temporaries.
5 // Lifetime of temporaries:
6 // egcs 2.92 performs cleanup for temporaries inside new expressions
eh990323-1.cpp 2 // check cleanup of template temporaries
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
random_shuffle.h 62 value_type** temporaries; member in struct:__gnu_parallel::DRandomShufflingGlobalData
138 value_type** temporaries = new value_type*[d->num_threads]; local
187 sd->temporaries[iam] = static_cast<value_type*>(
198 temporaries[t] = sd->temporaries[t];
210 ::new(&(temporaries[target_p][dist[target_bin + 1]++]))
217 delete[] temporaries;
225 sd->temporaries[iam] +
228 sd->temporaries[iam] + sd->dist[b + 1][d->num_threads];
234 ::operator delete(sd->temporaries[iam])
    [all...]
  /art/runtime/arch/mips/
registers_mips.h 38 T0 = 8, // Temporaries.
54 T8 = 24, // More temporaries.
  /bionic/libc/tzcode/
difftime.c 46 ** by using long double temporaries.
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_expression_flattening.h 29 * assignments of the leaves to temporaries, according to a predicate.
ir_expression_flattening.cpp 28 * assignments of the leaves to temporaries, according to a predicate.
  /external/mesa3d/src/glsl/
ir_expression_flattening.h 29 * assignments of the leaves to temporaries, according to a predicate.
ir_expression_flattening.cpp 28 * assignments of the leaves to temporaries, according to a predicate.
  /external/chromium_org/v8/test/webkit/
exception-try-finally-scope-error.js 55 // Just clobber any temporaries
  /external/eigen/test/
product_notemporary.cpp 31 /* This test checks the number of temporaries created
100 // Here we will get 1 temporary for each resize operation of the lhs operator; resize(r1,c1) would lead to zero temporaries
106 // Zero temporaries for lazy products ...
113 // Zero temporaries for ... CoeffBasedProductMode
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_program.c 122 /* Search a list of used temporaries for a free one
126 * @param used list of used temporaries
130 * @return -1 If there are no more free temporaries, otherwise the index of
  /external/eigen/doc/
I01_TopicLazyEvaluation.dox 5 Executive summary: Eigen has intelligent compile-time mechanisms to enable lazy evaluation and removing temporaries where appropriate.
15 A traditional math library without expression templates always evaluates all sub-expressions into temporaries. So with this code,
21 Expression-templates-based libraries can avoid evaluating sub-expressions into temporaries, which in many cases results in large speed improvements. This is called <i>lazy evaluation</i> as an expression is getting evaluated as late as possible, instead of immediately. However, most other expression-templates-based libraries <i>always</i> choose lazy evaluation. There are two problems with that: first, lazy evaluation is not always a good choice for performance; second, lazy evaluation can be very dangerous, for example with matrix products: doing <tt>matrix = matrix*matrix</tt> gives a wrong result if the matrix product is lazy-evaluated, because of the way matrix product works.
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_program.c 122 /* Search a list of used temporaries for a free one
126 * @param used list of used temporaries
130 * @return -1 If there are no more free temporaries, otherwise the index of
  /external/qemu/tcg/
README 20 block. Temporaries are allocated explicitly in each function.
23 temporaries are allocated explicitly in each function.
39 TCG instructions operate on variables which are temporaries, local
40 temporaries or globals. TCG instructions and variables are strongly
66 After the end of a basic block, the content of temporaries is
67 destroyed, but local temporaries and globals are preserved.
493 - Use temporaries. Use local temporaries only when really needed,
494 e.g. when you need to use a value after a jump. Local temporaries
498 - Free temporaries and local temporaries when they are no longer use
    [all...]
  /external/valgrind/main/VEX/pub/
libvex_guest_mips32.h 53 /* 32 */ UInt guest_r8; /* Temporaries */
61 /* 64 */ UInt guest_r16; /* Saved temporaries */
69 /* 96 */ UInt guest_r24; /* Temporaries */
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_sf.h 81 /* Temporaries, allocated after last vertex reg.
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_execute.h 63 GLfloat Temporaries[MAX_PROGRAM_TEMPS][4];
  /external/clang/test/CodeGenCXX/
cxx0x-initializer-references.cpp 10 // hiding extra temporaries.
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_sf.h 81 /* Temporaries, allocated after last vertex reg.
  /external/mesa3d/src/mesa/program/
prog_execute.h 63 GLfloat Temporaries[MAX_PROGRAM_TEMPS][4];
  /external/clang/test/CodeGenObjCXX/
literals.mm 40 // Destroy temporaries
87 // Destroy temporaries

Completed in 1747 milliseconds

1 2 3 4 5 6 7 8 91011>>