Home
last modified time | relevance | path

Searched refs:pure (Results 1 – 25 of 194) sorted by relevance

12345678

/external/llvm/test/Analysis/GlobalsModRef/
Dpurecse.ll1 ; 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/
Du_format_parse.py55 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])
Du_format_table.py117 …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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
Du_format_parse.py55 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])
Du_format_table.py117 …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/
Dstruct-passing.c11 T0 __attribute__((pure)) f1(void);
13 T1 __attribute__((pure)) f3(void);
15 void __attribute__((pure)) f5(T1 a);
D2008-01-25-ByValReadNone.c18 int g(struct S x) __attribute__ ((pure));
Dfunction-attributes.c59 void f13(void) __attribute__((pure)) __attribute__((const));
/external/clang/test/Parser/
Dattributes.c80 pure)) { // \
87 __attribute((pure)) { // \
95 __attribute__((pure)) int testFundef6(int a) { return a; }
/external/clang/test/SemaCXX/
Dcxx11-attr-print.cpp65 __attribute__((pure)) static int f() { in f()
68 [[gnu::pure]] static int g() { in g()
Dattr-print.cpp18 void foo1() __attribute__((noinline, pure));
Dcxx0x-cursory-default-delete.cpp82 S::S() __attribute((pure)) = default;
/external/bison/tests/
Dcalc.at607 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 …]
Dcxx-type.at407 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/bison/etc/
Dbench.pl.in162 - %location & %pure & %glr
163 - %location & %pure & %yacc & %parse-param. */
/external/clang/test/CodeGenCXX/
D2009-05-04-PureConstNounwind.cpp3 int p(void) __attribute__((pure));
/external/skia/
Dwhitespace.txt196 epoger added this line using a pure git checkout
/external/kernel-headers/original/linux/
Dcompiler-gcc.h31 #define __attribute_pure__ __attribute__((pure))
/external/chromium_org/third_party/pexpect/
DPKG-INFO4 Summary: Pexpect is a pure Python Expect. It allows easy control of other applications.
DREADME5 Pexpect is a pure Python module for spawning child applications; controlling
14 Pexpect is pure Python. Unlike other Expect-like modules for Python, Pexpect
DREADME.chromium12 Pexpect is a pure Python module for spawning child applications; controlling them; and responding t…
/external/llvm/test/Transforms/ADCE/
Ddce_pure_invoke.ll6 ; invoke of pure function should not be deleted!
/external/valgrind/main/callgrind/
Dfn.c560 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/SemaObjCXX/
Dabstract-class-type-ivar.mm8 …virtual void testB() = 0; // expected-note {{unimplemented pure virtual method 'testB' in 'CppConc…
/external/llvm/test/CodeGen/SystemZ/
Dfp-neg-01.ll23 ; Test f128. With the loads and stores, a pure negation would probably

12345678