Searched refs:pure (Results 1 – 25 of 141) sorted by relevance
123456
/external/llvm/test/Analysis/GlobalsModRef/ |
D | purecse.ll | 1 ; Test that pure functions are cse'd away 5 define i32 @pure(i32 %X) { 11 %A = call i32 @pure( i32 %X ) ; <i32> [#uses=1] 12 %B = call i32 @pure( i32 %X ) ; <i32> [#uses=1] 18 %A = call i32 @pure( i32 %X ) ; <i32> [#uses=1] 19 store i32 %X, i32* %P ;; Does not invalidate 'pure' call. 20 %B = call i32 @pure( i32 %X ) ; <i32> [#uses=1]
|
/external/clang/test/CodeGen/ |
D | struct-passing.c | 11 T0 __attribute__((pure)) f1(void); 13 T1 __attribute__((pure)) f3(void); 15 void __attribute__((pure)) f5(T1 a);
|
D | 2008-01-25-ByValReadNone.c | 15 int g(struct S x) __attribute__ ((pure));
|
D | function-attributes.c | 54 void f13(void) __attribute__((pure)) __attribute__((const));
|
D | pragma-weak.c | 150 __attribute((pure,noinline,const,fastcall)) void __xxx(void) { } in __xxx()
|
/external/bison/tests/ |
D | local.at | 60 [m4_bmatch([$3], [%pure-parser], [$1], [$2])]) 62 [m4_bmatch([$3], [%locations.*%pure-parser\|%pure-parser.*%locations], 70 # yyerror receives the location if %location & %pure & (%glr or %parse-param). 75 # yacc & pure & !param. 82 # The interface is pure: either because %pure-parser, or because we
|
D | cxx-type.at | 425 AT_SETUP([GLR: Resolve ambiguity, pure, no locations]) 426 _AT_TEST_GLR_CXXTYPES([%pure-parser], 432 AT_SETUP([GLR: Resolve ambiguity, pure, locations]) 433 _AT_TEST_GLR_CXXTYPES([%pure-parser %locations], 453 AT_SETUP([GLR: Merge conflicting parses, pure, no locations]) 454 _AT_TEST_GLR_CXXTYPES([%pure-parser], 459 AT_SETUP([GLR: Merge conflicting parses, pure, locations]) 460 _AT_TEST_GLR_CXXTYPES([%pure-parser %locations],
|
D | calc.at | 84 - %location & %pure & %glr 85 - %location & %pure & %yacc & %parse-param. */ 559 AT_CHECK_CALC_LALR([%pure-parser %locations]) 567 AT_CHECK_CALC_LALR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %ver… 569 AT_CHECK_CALC_LALR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %ver… 595 AT_CHECK_CALC_GLR([%pure-parser %locations]) 603 AT_CHECK_CALC_GLR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verb… 605 AT_CHECK_CALC_GLR([%pure-parser %error-verbose %debug %locations %defines %name-prefix="calc" %verb… 626 AT_CHECK_CALC_LALR1_CC([%pure-parser %error-verbose %debug %name-prefix="calc" %verbose %yacc]) 628 AT_CHECK_CALC_LALR1_CC([%pure-parser %error-verbose %debug %name-prefix="calc" %verbose %yacc %pars… [all …]
|
/external/clang/test/Parser/ |
D | attributes.c | 80 pure)) { // \ 87 __attribute((pure)) { // \ 95 __attribute__((pure)) int testFundef6(int a) { return a; }
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
D | TileTexture.h | 78 void setPure(bool pure) { m_isPureColor = pure; } in setPure() argument
|
/external/clang/test/CodeGenCXX/ |
D | 2009-05-04-PureConstNounwind.cpp | 3 int p(void) __attribute__((pure));
|
/external/kernel-headers/original/linux/ |
D | compiler-gcc.h | 31 #define __attribute_pure__ __attribute__((pure))
|
/external/llvm/test/Transforms/ADCE/ |
D | dce_pure_invoke.ll | 6 ; invoke of pure function should not be deleted!
|
/external/valgrind/main/callgrind/ |
D | fn.c | 560 fn_node* pure[2]; in CLG_() local 561 pure[0] = 0; in CLG_() 562 pure[1] = fn; in CLG_() 563 fn->pure_cxt = CLG_(get_cxt)(pure+1); in CLG_()
|
/external/clang/test/SemaCXX/ |
D | cxx0x-cursory-default-delete.cpp | 74 S::S() __attribute((pure)) = default;
|
/external/clang/test/Sema/ |
D | unused-expr.c | 84 int fn2() __attribute__ ((pure));
|
/external/webkit/Tools/android/flex-2.5.4a/MISC/MVS/ |
D | MVS.todo | 19 which I made the changes was pure brute force, and there might be a
|
/external/ganymed-ssh2/ |
D | README.txt | 7 Ganymed SSH-2 for Java is a library which implements the SSH-2 protocol in pure Java
|
/external/liblzf/ |
D | README | 2 LZF is an extremely fast (not that much slower than a pure memcpy)
|
/external/bison/data/ |
D | glr.cc | 24 # skeleton is clean and pure enough so that there are no real 49 # We require a pure interface using locations.
|
/external/llvm/tools/ |
D | CMakeLists.txt | 15 # on pure Win32.
|
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/ |
D | AssignTokenTypesWalker.g | 41 * CASE 1 : pure parser grammar 45 * CASE 2 : pure lexer grammar 70 * no token rules implies pure parser.
|
/external/stlport/ |
D | README | 22 that aren't pure template code
|
/external/linux-tools-perf/scripts/perl/Perf-Trace-Util/ |
D | README | 6 Core.pm and Util.pm are pure Perl modules; Core.pm contains routines
|
/external/webkit/Source/WebKit/chromium/ |
D | README | 33 unless the methods are defined inline, marked pure virtual, or contained
|
123456