/external/llvm-project/clang/lib/Headers/ |
D | __clang_hip_libdevice_declares.h | 19 __device__ __attribute__((pure)) float __ocml_acosh_f32(float); 21 __device__ __attribute__((pure)) float __ocml_asinh_f32(float); 24 __device__ __attribute__((pure)) float __ocml_atanh_f32(float); 25 __device__ __attribute__((pure)) float __ocml_cbrt_f32(float); 31 __device__ __attribute__((pure)) __device__ float __ocml_cosh_f32(float); 35 __device__ __attribute__((pure)) float __ocml_erfc_f32(float); 36 __device__ __attribute__((pure)) float __ocml_erfcinv_f32(float); 37 __device__ __attribute__((pure)) float __ocml_erfcx_f32(float); 38 __device__ __attribute__((pure)) float __ocml_erf_f32(float); 39 __device__ __attribute__((pure)) float __ocml_erfinv_f32(float); [all …]
|
/external/llvm-project/flang/lib/Parser/ |
D | io-parsers.cpp | 65 "ACCESS =" >> pure(ConnectSpec::CharExpr::Kind::Access), 68 "ACTION =" >> pure(ConnectSpec::CharExpr::Kind::Action), 71 "ASYNCHRONOUS =" >> pure(ConnectSpec::CharExpr::Kind::Asynchronous), 74 "BLANK =" >> pure(ConnectSpec::CharExpr::Kind::Blank), 77 "DECIMAL =" >> pure(ConnectSpec::CharExpr::Kind::Decimal), 80 "DELIM =" >> pure(ConnectSpec::CharExpr::Kind::Delim), 83 "ENCODING =" >> pure(ConnectSpec::CharExpr::Kind::Encoding), 90 "FORM =" >> pure(ConnectSpec::CharExpr::Kind::Form), 97 "PAD =" >> pure(ConnectSpec::CharExpr::Kind::Pad), 100 "POSITION =" >> pure(ConnectSpec::CharExpr::Kind::Position), [all …]
|
D | openmp-parsers.cpp | 29 "PRIVATE" >> pure(OmpDefaultClause::Type::Private) || 30 "FIRSTPRIVATE" >> pure(OmpDefaultClause::Type::Firstprivate) || 31 "SHARED" >> pure(OmpDefaultClause::Type::Shared) || 32 "NONE" >> pure(OmpDefaultClause::Type::None))) 36 "CLOSE" >> pure(OmpProcBindClause::Type::Close) || 37 "MASTER" >> pure(OmpProcBindClause::Type::Master) || 38 "SPREAD" >> pure(OmpProcBindClause::Type::Spread))) 44 ("TO"_id >> pure(OmpMapType::Type::To) || 45 "FROM" >> pure(OmpMapType::Type::From) || 46 "TOFROM" >> pure(OmpMapType::Type::Tofrom) || [all …]
|
D | openacc-parsers.cpp | 157 first("+" >> pure(AccReductionOperator::Operator::Plus), 158 "*" >> pure(AccReductionOperator::Operator::Multiply), 159 "MAX" >> pure(AccReductionOperator::Operator::Max), 160 "MIN" >> pure(AccReductionOperator::Operator::Min), 161 "IAND" >> pure(AccReductionOperator::Operator::Iand), 162 "IOR" >> pure(AccReductionOperator::Operator::Ior), 163 "IEOR" >> pure(AccReductionOperator::Operator::Ieor), 164 ".AND." >> pure(AccReductionOperator::Operator::And), 165 ".OR." >> pure(AccReductionOperator::Operator::Or), 166 ".EQV." >> pure(AccReductionOperator::Operator::Eqv), [all …]
|
D | Fortran-parsers.cpp | 63 ".LT." >> pure(DefinedOperator::IntrinsicOperator::LT) || 64 ".LE." >> pure(DefinedOperator::IntrinsicOperator::LE) || 65 ".EQ." >> pure(DefinedOperator::IntrinsicOperator::EQ) || 66 ".NE." >> pure(DefinedOperator::IntrinsicOperator::NE) || 67 ".GE." >> pure(DefinedOperator::IntrinsicOperator::GE) || 68 ".GT." >> pure(DefinedOperator::IntrinsicOperator::GT) || 69 ".NOT." >> pure(DefinedOperator::IntrinsicOperator::NOT) || 70 ".AND." >> pure(DefinedOperator::IntrinsicOperator::AND) || 71 ".OR." >> pure(DefinedOperator::IntrinsicOperator::OR) || 72 ".EQV." >> pure(DefinedOperator::IntrinsicOperator::EQV) || [all …]
|
/external/llvm-project/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/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/virglrenderer/src/gallium/auxiliary/util/ |
D | u_format_parse.py | 57 def __init__(self, type, norm, pure, size, name = ''): argument 60 self.pure = pure 69 if self.pure: 78 …return self.type == other.type and self.norm == other.norm and self.pure == other.pure and self.si… 167 if channel.pure != ref_channel.pure: 186 if channel.pure != ref_channel.pure: 222 pures = [channel.pure 303 pure = False 306 pure = True 311 pure = False [all …]
|
/external/mesa3d/src/freedreno/vulkan/ |
D | vk_format_parse.py | 55 def __init__(self, type, norm, pure, scaled, size, name = ''): argument 58 self.pure = pure 68 if self.pure: 79 self.pure == other.pure and 167 if channel.pure != ref_channel.pure: 188 if channel.pure != ref_channel.pure: 226 pures = [channel.pure 307 pure = False 311 pure = True 316 pure = False [all …]
|
/external/mesa3d/src/util/format/ |
D | u_format_parse.py | 57 def __init__(self, type, norm, pure, size, name = ''): argument 60 self.pure = pure 69 if self.pure: 78 …return self.type == other.type and self.norm == other.norm and self.pure == other.pure and self.si… 168 if channel.pure != ref_channel.pure: 187 if channel.pure != ref_channel.pure: 243 pures = [channel.pure 324 pure = False 327 pure = True 332 pure = False [all …]
|
/external/mesa3d/src/amd/vulkan/ |
D | vk_format_parse.py | 55 def __init__(self, type, norm, pure, scaled, size, name = ''): argument 58 self.pure = pure 68 if self.pure: 79 …return self.type == other.type and self.norm == other.norm and self.pure == other.pure and self.si… 175 if channel.pure != ref_channel.pure: 196 if channel.pure != ref_channel.pure: 234 pures = [channel.pure 315 pure = False 319 pure = True 324 pure = False [all …]
|
/external/llvm-project/flang/lib/Semantics/ |
D | check-nullify.cpp | 22 const Scope *pure{FindPureProcedureContaining(scope)}; in Leave() local 38 } else if (pure) { in Leave() 39 CheckDefinabilityInPureScope(messages, symbol, scope, *pure); in Leave() 48 } else if (pure) { in Leave() 51 messages, *symbol, scope, *pure); in Leave()
|
D | assignment.cpp | 123 const Symbol &lhs, const Scope &context, const Scope &pure) { in CheckDefinabilityInPureScope() argument 124 if (pure.symbol()) { in CheckDefinabilityInPureScope() 128 pure.symbol()->name(), lhs.name(), why); in CheckDefinabilityInPureScope() 168 if (const Scope * pure{FindPureProcedureContaining(scope)}) { in CheckForPureContext() local 181 !CheckDefinabilityInPureScope(messages, *base, scope, *pure)) { in CheckForPureContext()
|
/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);
|
/external/llvm-project/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);
|
/external/libwebsockets/plugins/ |
D | protocol_lws_server_status.c | 64 char contents[256], pure[256], *p = v->d.buf + LWS_PRE, in update() local 78 strcpy(pure, "(unknown)"); in update() 85 lws_json_purify(pure, contents, sizeof(pure), NULL); in update() 91 fp->filepath, pure); in update()
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_RGBToHSV.pbtxt | 23 corresponds to pure red, hue 1/3 is pure green, and 2/3 is pure blue.
|
/external/llvm-project/clang/test/Profile/ |
D | cxx-abc-deleting-dtor.cpp | 13 virtual void pure() = 0; 17 void pure() override {} in pure() function
|
/external/clang/test/Parser/ |
D | attributes.c | 80 pure)) { // \ 87 __attribute((pure)) { // \ 95 __attribute__((pure)) int testFundef6(int a) { return a; }
|
/external/llvm-project/clang/test/Parser/ |
D | attributes.c | 80 pure)) { // \ 87 __attribute((pure)) { // \ 95 __attribute__((pure)) int testFundef6(int a) { return a; }
|
/external/llvm-project/lld/docs/ |
D | missingkeyfunction.rst | 11 non-pure, non-inline, virtual function), but you haven't actually defined it. 19 When a class has no non-pure, non-inline, virtual functions, there is no key 40 Here, ``~B`` is the first non-pure, non-inline, virtual function, so it is the key 53 Forgetting to declare a virtual function in an abstract class as pure 69 functions pure. Here, ``A::bar``, being non-pure, is nominated as the key function,
|
/external/clang/test/SemaCXX/ |
D | cxx11-attr-print.cpp | 71 __attribute__((pure)) static int f() { in f() 74 [[gnu::pure]] static int g() { in g()
|
/external/llvm-project/clang/test/SemaCXX/ |
D | cxx11-attr-print.cpp | 73 __attribute__((pure)) static int f() { in f() 76 [[gnu::pure]] static int g() { in g()
|
/external/python/cpython3/Doc/distutils/ |
D | introduction.rst | 73 version number) and information about what's in the package (a list of pure 156 other code. Three types of modules concern us here: pure Python modules, 159 pure Python module 162 "pure module." 203 pure module distribution 204 a module distribution that contains only pure Python modules and packages. 205 Sometimes referred to as a "pure distribution." 207 non-pure module distribution 209 referred to as a "non-pure distribution."
|
/external/python/cpython2/Doc/distutils/ |
D | introduction.rst | 71 version number) and information about what's in the package (a list of pure 154 other code. Three types of modules concern us here: pure Python modules, 157 pure Python module 160 to as a "pure module." 201 pure module distribution 202 a module distribution that contains only pure Python modules and packages. 203 Sometimes referred to as a "pure distribution." 205 non-pure module distribution 207 referred to as a "non-pure distribution."
|