Searched refs:pure (Results 1 – 25 of 186) sorted by relevance
12345678
/external/llvm/test/Analysis/GlobalsModRef/ |
D | purecse.ll | 1 ; Test that pure functions are cse'd away 4 define i32 @pure(i32 %X) { 10 ; CHECK: %A = call i32 @pure(i32 %X) 12 %A = call i32 @pure( i32 %X ) ; <i32> [#uses=1] 13 %B = call i32 @pure( i32 %X ) ; <i32> [#uses=1] 19 ; CHECK: %A = call i32 @pure(i32 %X) 22 %A = call i32 @pure( i32 %X ) ; <i32> [#uses=1] 23 store i32 %X, i32* %P ;; Does not invalidate 'pure' call. 24 %B = call i32 @pure( i32 %X ) ; <i32> [#uses=1]
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_format_parse.py | 55 def __init__(self, type, norm, pure, size, name = ''): argument 58 self.pure = pure 67 if self.pure: 73 …return self.type == other.type and self.norm == other.norm and self.pure == other.pure and self.si… 164 if channel.pure != ref_channel.pure: 283 pure = False 286 pure = True 291 pure = False 296 pure = False 298 channel = Channel(type, norm, pure, size, names[i])
|
D | u_format_table.py | 117 …s */" % (type_map[channel.type], bool_map(channel.norm), bool_map(channel.pure), channel.size, sep… 135 if format.colorspace != ZS and format.channels[0].pure == False: 168 …if format.colorspace != ZS and format.channels[0].pure == True and format.channels[0].type == UNSI… 175 …elif format.colorspace != ZS and format.channels[0].pure == True and format.channels[0].type == SI…
|
/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 | 16 int g(struct S x) __attribute__ ((pure));
|
D | builtin-assume.c | 6 int ispure(void) __attribute__((pure));
|
D | function-attributes.c | 60 void f13(void) __attribute__((pure)) __attribute__((const));
|
/external/clang/test/Parser/ |
D | attributes.c | 80 pure)) { // \ 87 __attribute((pure)) { // \ 95 __attribute__((pure)) int testFundef6(int a) { return a; }
|
/external/bison/tests/ |
D | calc.at | 607 AT_CHECK_CALC_LALR([%define api.pure full %locations]) 608 AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure full %locations]) 618 AT_CHECK_CALC_LALR([%define api.pure full %verbose %debug %locations %defines %name-prefix "calc" %… 619 AT_CHECK_CALC_LALR([%define api.push-pull both %define api.pure full %verbose %debug %locations %de… 621 AT_CHECK_CALC_LALR([%define api.pure %error-verbose %debug %locations %defines %define api.prefix "… 648 AT_CHECK_CALC_GLR([%define api.pure %locations]) 657 AT_CHECK_CALC_GLR([%define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %… 659 AT_CHECK_CALC_GLR([%define api.pure %error-verbose %debug %locations %defines %name-prefix "calc" %… 660 AT_CHECK_CALC_GLR([%define api.pure %error-verbose %debug %locations %defines %define api.prefix "c… 685 AT_CHECK_CALC_LALR1_CC([%pure-parser %error-verbose %debug %define api.prefix "calc" %verbose %yacc… [all …]
|
D | cxx-type.at | 407 AT_SETUP([GLR: Resolve ambiguity, pure, no locations]) 408 _AT_TEST_GLR_CXXTYPES([%define api.pure], 414 AT_SETUP([GLR: Resolve ambiguity, pure, locations]) 415 _AT_TEST_GLR_CXXTYPES([%define api.pure %locations], 435 AT_SETUP([GLR: Merge conflicting parses, pure, no locations]) 436 _AT_TEST_GLR_CXXTYPES([%define api.pure], 441 AT_SETUP([GLR: Merge conflicting parses, pure, locations]) 442 _AT_TEST_GLR_CXXTYPES([%define api.pure %locations],
|
/external/clang/test/SemaCXX/ |
D | cxx11-attr-print.cpp | 62 __attribute__((pure)) static int f() { in f() 65 [[gnu::pure]] static int g() { in g()
|
D | attr-print.cpp | 18 void foo1() __attribute__((noinline, pure));
|
/external/selinux/libselinux/utils/ |
D | Makefile | 19 -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure -Wtrampolines \ 24 -fipa-pure-const -Wno-suggest-attribute=pure -Wno-suggest-attribute=const \
|
/external/bison/etc/ |
D | bench.pl.in | 162 - %location & %pure & %glr 163 - %location & %pure & %yacc & %parse-param. */
|
/external/jemalloc/include/jemalloc/ |
D | jemalloc_protos_jet.h | 37 int flags) JEMALLOC_ATTR(pure); 42 JEMALLOC_ATTR(pure);
|
D | jemalloc_protos.h | 37 int flags) JEMALLOC_ATTR(pure); 42 JEMALLOC_ATTR(pure);
|
D | jemalloc_protos.h.in | 37 int flags) JEMALLOC_ATTR(pure); 42 JEMALLOC_ATTR(pure);
|
/external/clang/test/CodeGenCXX/ |
D | 2009-05-04-PureConstNounwind.cpp | 3 int p(void) __attribute__((pure));
|
/external/clang/test/Index/ |
D | attributes.c | 7 void pure_fn() __attribute__((pure));
|
/external/selinux/libselinux/src/ |
D | Makefile | 68 -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure -Wtrampolines \ 73 -fipa-pure-const -Wno-suggest-attribute=pure -Wno-suggest-attribute=const \
|
/external/clang/test/Sema/ |
D | builtin-assume.c | 6 int ispure(int) __attribute__((pure));
|
/external/llvm/test/Transforms/ADCE/ |
D | dce_pure_invoke.ll | 6 ; invoke of pure function should not be deleted!
|
/external/skia/ |
D | whitespace.txt | 8 epoger added this line using a pure git checkout
|
/external/valgrind/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/chromium-trace/catapult/third_party/html5lib-python/ |
D | tox.ini | 17 # (it's slower than the pure-python version)
|
12345678