/external/llvm-project/llvm/lib/Target/RISCV/ |
D | RISCVSchedule.td | 41 def WriteFMul32 : SchedWrite; // 32-bit floating point multiply 42 def WriteFMulAdd32 : SchedWrite; // 32-bit floating point multiply add 43 def WriteFMulSub32 : SchedWrite; // 32-bit floating point multiply sub 44 def WriteFMul64 : SchedWrite; // 64-bit floating point multiply 45 def WriteFMulAdd64 : SchedWrite; // 64-bit floating point multiply add 46 def WriteFMulSub64 : SchedWrite; // 64-bit floating point multiply sub 47 def WriteFDiv32 : SchedWrite; // 32-bit floating point divide 48 def WriteFDiv64 : SchedWrite; // 64-bit floating point divide 49 def WriteFSqrt32 : SchedWrite; // 32-bit floating point sqrt 50 def WriteFSqrt64 : SchedWrite; // 64-bit floating point sqrt [all …]
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | readability-implicit-bool-conversion.cpp | 64 float floating = boolean / 0.3f; in implicitConversionFromBoolInSingleBoolExpressions() local 85 float floating = (boolean || anotherBoolean) * 0.3f; in implicitConversionFromBoollInComplexBoolExpressions() local 141 float floating = static_cast<float>(boolean) * 0.3f; in ignoreExplicitCastsFromBool() local 182 float floating = 0.0f; in implicitConversionToBoolSimpleCases() local 183 functionTaking<bool>(floating); in implicitConversionToBoolSimpleCases() 214 float floating = 10.0f; in implicitConversionToBoolInSingleExpressions() local 215 bool boolComingFromFloat = floating; in implicitConversionToBoolInSingleExpressions() 239 float floating = 0.2f; in implicitConversionToBoolInComplexExpressions() local 240 bool boolComingFromFloating = floating - 0.3f || boolean; in implicitConversionToBoolInComplexExpressions() 256 float floating = 10.0f; in implicitConversionInNegationExpressions() local [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/ |
D | RISCVSchedule.td | 41 def WriteFMul32 : SchedWrite; // 32-bit floating point multiply 42 def WriteFMulAdd32 : SchedWrite; // 32-bit floating point multiply add 43 def WriteFMulSub32 : SchedWrite; // 32-bit floating point multiply sub 44 def WriteFMul64 : SchedWrite; // 64-bit floating point multiply 45 def WriteFMulAdd64 : SchedWrite; // 64-bit floating point multiply add 46 def WriteFMulSub64 : SchedWrite; // 64-bit floating point multiply sub 47 def WriteFDiv32 : SchedWrite; // 32-bit floating point divide 48 def WriteFDiv64 : SchedWrite; // 64-bit floating point divide 49 def WriteFSqrt32 : SchedWrite; // 32-bit floating point sqrt 50 def WriteFSqrt64 : SchedWrite; // 64-bit floating point sqrt [all …]
|
/external/clang/test/PCH/ |
D | exprs.c | 15 double floating; variable 27 floating_literal *double_ptr = &floating; 52 array_subscript *double_ptr1_5 = &floating; 55 call_returning_double *double_ptr2 = &floating; 58 member_ref_double *double_ptr3 = &floating; 69 conditional_operator *double_ptr4 = &floating; 79 ext_vector_element *double_ptr5 = &floating; 102 generic_selection_expr *double_ptr6 = &floating;
|
/external/llvm-project/clang/test/PCH/ |
D | exprs.c | 15 double floating; variable 27 floating_literal *double_ptr = &floating; 52 array_subscript *double_ptr1_5 = &floating; 55 call_returning_double *double_ptr2 = &floating; 58 member_ref_double *double_ptr3 = &floating; 69 conditional_operator *double_ptr4 = &floating; 79 ext_vector_element *double_ptr5 = &floating; 102 generic_selection_expr *double_ptr6 = &floating;
|
/external/oboe/samples/RhythmGame/third_party/glm/gtc/ |
D | reciprocal.inl | 13 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'sec' only accept floating-point value… 20 GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'sec' only accept floating-point inputs"); 28 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'csc' only accept floating-point value… 35 GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'csc' only accept floating-point inputs"); 43 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'cot' only accept floating-point value… 52 GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'cot' only accept floating-point inputs"); 60 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'asec' only accept floating-point valu… 67 GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'asec' only accept floating-point inputs"); 75 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'acsc' only accept floating-point valu… 82 GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'acsc' only accept floating-point inputs"); [all …]
|
/external/mesa3d/src/gallium/auxiliary/gallivm/ |
D | lp_bld_conv.c | 263 assert(src_type.floating); in lp_build_clamped_float_to_unsigned_norm() 399 assert(dst_type.floating); in lp_build_unsigned_norm_to_float() 468 if (src_type.floating == dst_type->floating && in lp_build_conv_auto() 482 dst_type->floating == 0 && in lp_build_conv_auto() 486 ((src_type.floating == 1 && src_type.sign == 1 && dst_type->norm == 1) || in lp_build_conv_auto() 487 (src_type.floating == 0 && dst_type->floating == 0 && in lp_build_conv_auto() 528 dst_type->floating == 0 && (num_srcs % 2 == 0) && in lp_build_conv_auto() 589 dst_type.floating == 0 && in lp_build_conv() 593 ((src_type.floating == 1 && src_type.sign == 1 && dst_type.norm == 1) || in lp_build_conv() 594 (src_type.floating == 0 && dst_type.floating == 0 && in lp_build_conv() [all …]
|
D | lp_bld_bitarit.c | 51 if (type.floating) { in lp_build_or() 58 if (type.floating) { in lp_build_or() 77 if (type.floating) { in lp_build_xor() 84 if (type.floating) { in lp_build_xor() 105 if (type.floating) { in lp_build_and() 112 if (type.floating) { in lp_build_and() 134 if (type.floating) { in lp_build_andnot() 142 if (type.floating) { in lp_build_andnot() 159 if (type.floating) { in lp_build_not() 163 if (type.floating) { in lp_build_not() [all …]
|
D | lp_bld_const.c | 50 assert(type.floating); in lp_mantissa() 52 if(type.floating) { in lp_mantissa() 82 if(type.floating) in lp_const_shift() 96 if(type.floating || type.fixed) in lp_const_offset() 140 if (type.floating) { in lp_const_min() 175 if (type.floating) { in lp_const_max() 204 if (type.floating) { in lp_const_eps() 236 if (type.floating) in lp_build_zero() 259 if(type.floating && type.width == 16) in lp_build_one() 261 else if(type.floating) in lp_build_one() [all …]
|
/external/tensorflow/tensorflow/lite/delegates/xnnpack/ |
D | README.md | 3 XNNPACK is a highly optimized library of floating-point neural network 12 for floating-point inference. 150 * Inputs and outputs must be in 32-bit floating-point format. 154 * Inputs and outputs must be in 32-bit floating-point format. 161 * Inputs and outputs must be in 32-bit floating-point format. 168 * Inputs and outputs must be in 32-bit floating-point format. 172 * Inputs and outputs must be in 32-bit floating-point format. 180 * Inputs and outputs must be in 32-bit floating-point format. 185 * Inputs and outputs must be in 32-bit floating-point format. 193 * Inputs and outputs must be in 32-bit floating-point format. [all …]
|
/external/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-script/ |
D | main.cpp | 8 float floating; member 11 integer(I), floating(F), character(C) {} in i_am_cool() 12 i_am_cool() : integer(1), floating(2), character('3') {} in i_am_cool() 20 float floating; member 25 floating((F1 + F2)/2) {} in i_am_cooler()
|
/external/libffi/testsuite/libffi.call/ |
D | float.c | 11 static int floating(int a, float b, double c, long double d) in floating() function 50 floating (si1, f, d, ld); in main() 52 ffi_call(&cif, FFI_FN(floating), &rint, values); in main() 54 printf ("%d vs %d\n", (int)rint, floating (si1, f, d, ld)); in main() 56 CHECK((int)rint == floating(si1, f, d, ld)); in main()
|
/external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/ |
D | float.c | 11 static int floating(int a, float b, double c, long double d) in floating() function 50 floating (si1, f, d, ld); in main() 52 ffi_call(&cif, FFI_FN(floating), &rint, values); in main() 54 printf ("%d vs %d\n", (int)rint, floating (si1, f, d, ld)); in main() 56 CHECK((int)rint == floating(si1, f, d, ld)); in main()
|
/external/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-cpp/ |
D | main.cpp | 36 ShowMyGuts floating; member 39 integer(I), floating(F), character(C) {} in i_am_cool() 40 i_am_cool() : integer(1), floating(2), character('3') {} in i_am_cool() 48 ShowMyGuts floating; member 53 floating((F1 + F2)/2) {} in i_am_cooler() 97 cool_array[3].floating = 5.25; in main()
|
/external/llvm/test/MC/AsmParser/ |
D | floating-literals.s | 60 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one exponent digit 63 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one exponent digit 66 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one exponent digit 69 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one significand digit 72 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one significand digit 75 # CHECK-ERROR: error: invalid hexadecimal floating-point constant: expected exponent part 'p'
|
/external/tensorflow/tensorflow/lite/tools/optimize/testdata/ |
D | README.md | 8 A floating point model with single convolution where all weights are 13 A floating point model with a single convolution where weights of the model 19 A floating point model with a single softmax. The input tensor has min 22 A floating point model with a single average pool. The input tensor has min 25 A floating point model with two convs that have a use the same weight tensor. 27 A floating point model with two inputs with an add followed by a reshape. 29 A floating point model with an input with a gather, modeling a situation
|
/external/llvm/test/MC/ARM/ |
D | fp-const-errors.s | 3 @ Test for floating point constants that are out of the 8-bit encoded value range 12 @ CHECK: error: invalid floating point immediate 15 @ CHECK: error: invalid floating point immediate 19 @ CHECK: error: invalid floating point immediate 22 @ CHECK: error: invalid floating point immediate
|
/external/llvm-project/llvm/test/MC/ARM/ |
D | fp-const-errors.s | 3 @ Test for floating point constants that are out of the 8-bit encoded value range 12 @ CHECK: error: invalid floating point immediate 15 @ CHECK: error: invalid floating point immediate 19 @ CHECK: error: invalid floating point immediate 22 @ CHECK: error: invalid floating point immediate
|
/external/llvm-project/lldb/test/API/functionalities/data-formatter/data-formatter-advanced/ |
D | main.cpp | 8 float floating; member 11 integer(I), floating(F), character(C) {} in i_am_cool() 12 i_am_cool() : integer(1), floating(2), character('3') {} in i_am_cool() 20 float floating; member 25 floating((F1 + F2)/2) {} in i_am_cooler() 139 cool_array[3].floating = 5.25; in main()
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | readability-magic-numbers.rst | 6 Detects magic numbers, integer or floating point literals that are embedded in 65 For floating point literals by default the `0.0` floating point value is 66 accepted without a warning. The set of ignored floating point literals can 69 floating-point value representation used by the target architecture. If a 70 floating-point literal value compares equal to one of the converted values, 71 then that literal is not diagnosed by this check. Because floating-point 73 be aware of the details of floating-point representations for any values that 81 Alternatively, the check for the floating point numbers can be disabled for 82 all floating point values by enabling the 105 Semicolon-separated list of magic positive floating point values that will [all …]
|
/external/llvm-project/llvm/test/MC/AsmParser/ |
D | floating-literals.s | 107 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one exponent digit 110 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one exponent digit 113 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one exponent digit 116 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one significand digit 119 # CHECK-ERROR: invalid hexadecimal floating-point constant: expected at least one significand digit 122 # CHECK-ERROR: error: invalid hexadecimal floating-point constant: expected exponent part 'p'
|
/external/llvm-project/lld/test/ELF/ |
D | mips-fp-flags-err.test | 4 # files with incompatible floating point ABI flags. 26 # DBLFP64: {{.*}}fp64.o: floating point ABI '-mgp32 -mfp64' is incompatible with target floating po… 27 # SGLFP64OLD: {{.*}}fp64old.o: floating point ABI '-mgp32 -mfp64 (old)' is incompatible with target… 28 # SOFTFP64A: {{.*}}fp64a.o: floating point ABI '-mgp32 -mfp64 -mno-odd-spreg' is incompatible with… 29 # SGLFPXX: {{.*}}fpxx.o: floating point ABI '-mfpxx' is incompatible with target floating point ABI…
|
/external/llvm-project/clang/test/Lexer/ |
D | opencl-half-literal.cl | 7 constant half b = 1.0hh; // expected-error{{invalid suffix 'hh' on floating constant}} 8 constant half c = 1.0fh; // expected-error{{invalid suffix 'fh' on floating constant}} 9 constant half d = 1.0lh; // expected-error{{invalid suffix 'lh' on floating constant}} 10 constant half e = 1.0hf; // expected-error{{invalid suffix 'hf' on floating constant}}
|
/external/clang/test/Lexer/ |
D | opencl-half-literal.cl | 7 constant half b = 1.0hh; // expected-error{{invalid suffix 'hh' on floating constant}} 8 constant half c = 1.0fh; // expected-error{{invalid suffix 'fh' on floating constant}} 9 constant half d = 1.0lh; // expected-error{{invalid suffix 'lh' on floating constant}} 10 constant half e = 1.0hf; // expected-error{{invalid suffix 'hf' on floating constant}}
|
/external/oboe/apps/fxlab/app/src/main/cpp/effects/ |
D | SingleFunctionEffects.h | 23 template<class floating> 24 void _overdrive (floating &x) { in _overdrive() 43 template <class floating> 44 void _distortion (floating &x) { in _distortion()
|