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

1 2 3 4 5 6

  /external/clang/test/Analysis/
crash-trace.c 6 void inlined() { function
11 inlined();
17 // CHECK-NEXT: #0 void inlined()
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
use-after-scope-inlined.cc 10 void inlined(int arg) { function
17 inlined(argc);
22 // CHECK: {{.*}}use-after-scope-inlined.cc:[[@LINE-4]]
  /external/elfutils/libdw/
dwarf_getscopes.c 64 unsigned int inlined, nscopes; member in struct:args
98 a->inlined = depth;
105 concrete inlined instance. */
151 a->nscopes = depth + 1 - a->inlined;
165 if (a->inlined == 0)
171 /* This is the concrete inlined instance itself.
173 Dwarf_Die *const inlinedie = &a->scopes[depth - a->inlined];
186 /* We've recorded the scopes back to one that is a concrete inlined
190 assert (a->inlined);
191 if (depth >= a->inlined)
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1229.js 68 // Check that %NewObjectFromBound looks at correct frame for inlined function.
70 return f1(y, z); /* f should be inlined into g, note rotated arguments */
74 return f2(y); /* f should be inlined into g, note argument count mismatch */
78 return f3(x, y, z); /* f should be inlined into g, note argument count mismatch */
81 // Check that %NewObjectFromBound looks at correct frame for inlined function.
88 return f1(local_y, local_z); /* f should be inlined into h */
96 return f2(local_y); /* f should be inlined into h */
106 return f3(local_x, local_y, local_z); /* f should be inlined into h */
126 // Check that %_IsConstructCall returns correct value when inlined
134 var non_construct = baz(0); /* baz should be inlined */
    [all...]
regress-119925.js 28 // Test that the throw is not inlined if object literals cannot be
29 // inlined.
regress-1337.js 30 // Test that the throw is not inlined if object literals cannot be
31 // inlined.
regress-1145.js 35 // A lazily compiled function with a syntax error that is attempted inlined
51 if (x == 0) fail(); // Hope to be inlined during optimization.
regress-2261.js 55 // inlined strict mode closure after modifying an argument.
83 // deoptimizing several inlined closure after modifying an argument.
  /external/v8/test/mjsunit/regress/
regress-1229.js 68 // Check that %NewObjectFromBound looks at correct frame for inlined function.
70 return f1(y, z); /* f should be inlined into g, note rotated arguments */
74 return f2(y); /* f should be inlined into g, note argument count mismatch */
78 return f3(x, y, z); /* f should be inlined into g, note argument count mismatch */
81 // Check that %NewObjectFromBound looks at correct frame for inlined function.
88 return f1(local_y, local_z); /* f should be inlined into h */
96 return f2(local_y); /* f should be inlined into h */
106 return f3(local_x, local_y, local_z); /* f should be inlined into h */
126 // Check that %_IsConstructCall returns correct value when inlined
134 var non_construct = baz(0); /* baz should be inlined */
    [all...]
regress-119925.js 28 // Test that the throw is not inlined if object literals cannot be
29 // inlined.
regress-1337.js 30 // Test that the throw is not inlined if object literals cannot be
31 // inlined.
regress-1145.js 35 // A lazily compiled function with a syntax error that is attempted inlined
51 if (x == 0) fail(); // Hope to be inlined during optimization.
  /external/clang/test/Analysis/inlining/
false-positive-suppression.c 154 void inlinedIsDifferent(int inlined) {
159 int *p = inlined ? &i : getNull();
161 if (!inlined)
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
Makefile 387 @ echo nmake clean VCE-inlined (to build the MSVC inlined dll with C++ exception handling)
388 @ echo nmake clean VSE-inlined (to build the MSVC inlined dll with structured exception handling)
389 @ echo nmake clean VC-inlined (to build the MSVC inlined dll with C cleanup code)
394 @ echo nmake clean VCE-inlined-debug (to build the debug MSVC inlined dll with C++ exception handling)
395 @ echo nmake clean VSE-inlined-debug (to build the debug MSVC inlined dll with structured exception handling
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
alloc-object.js 30 // Test that inlined object allocation works for different layouts of
43 // Test adding a new property after allocation was inlined.
49 // Test changing the prototype after allocation was inlined.
85 // Test inlined allocation while slack tracking is still in progress.
  /external/v8/test/mjsunit/compiler/
alloc-object.js 30 // Test that inlined object allocation works for different layouts of
43 // Test adding a new property after allocation was inlined.
49 // Test changing the prototype after allocation was inlined.
85 // Test inlined allocation while slack tracking is still in progress.
  /external/chromium_org/v8/test/mjsunit/
constant-compare-nil-value.js 30 function inlined() { function
35 if ((inlined() + 0.5) == null) return "null";
  /external/chromium_org/v8/test/webkit/
dfg-create-inlined-arguments-in-closure-inline.js 25 "Tests that if the DFG tries to create inlined arguments from within a inlined call frame corresponding to a closure call, then we don't crash."
  /dalvik/vm/compiler/
InlineTransformation.cpp 309 * Analyze the basic block containing an invoke to see if it can be inlined
357 bool inlined = tryInlineSingletonCallsite(cUnit, calleeMethod, local
359 if (!inlined &&
402 bool inlined = tryInlineVirtualCallsite(cUnit, calleeMethod, local
404 if (!inlined &&
  /external/chromium_org/tools/grit/grit/format/
html_inline_unittest.py 101 '''Tests that @import directives in inlined CSS files are inlined too.
159 '''Tests that only CSS files referenced via relative URLs are inlined.'''
  /external/proguard/src/proguard/optimize/peephole/
MethodInliner.java 50 private static final int MAXIMUM_INLINED_CODE_LENGTH = Integer.parseInt(System.getProperty("maximum.inlined.code.length", "8"));
83 private boolean inlined; field in class:MethodInliner
95 * should be inlined, or, alternatively,
117 * should be inlined, or, alternatively,
120 * inlined invocation instructions.
165 // Update the code attribute if any code has been inlined.
196 // the modification of a few inlined instructions.
205 inlined = true;
393 inlined = false;
395 // Append a label, in case the invocation will be inlined
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/i686-linux/bits/
c++config.h 239 # error illegal use of multiple inlined namespaces
242 # error illegal use of multiple inlined namespaces
245 # error illegal use of multiple inlined namespaces
250 # warning currently using inlined namespace mode which may fail \
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/x86_64-linux/bits/
c++config.h 239 # error illegal use of multiple inlined namespaces
242 # error illegal use of multiple inlined namespaces
245 # error illegal use of multiple inlined namespaces
250 # warning currently using inlined namespace mode which may fail \
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/libs/armeabi/include/bits/
c++config.h 239 # error illegal use of multiple inlined namespaces
242 # error illegal use of multiple inlined namespaces
245 # error illegal use of multiple inlined namespaces
250 # warning currently using inlined namespace mode which may fail \
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/libs/armeabi-v7a/include/bits/
c++config.h 239 # error illegal use of multiple inlined namespaces
242 # error illegal use of multiple inlined namespaces
245 # error illegal use of multiple inlined namespaces
250 # warning currently using inlined namespace mode which may fail \
    [all...]

Completed in 449 milliseconds

1 2 3 4 5 6