/external/deqp-deps/glslang/Test/ |
D | spv.shaderBallotAMD.comp | 14 vec3 fv; 27 fv = minInvocationsAMD(fv); 37 fv = maxInvocationsAMD(fv); 47 fv = addInvocationsAMD(fv); 57 fv = minInvocationsNonUniformAMD(fv); 67 fv = maxInvocationsNonUniformAMD(fv); 77 fv = addInvocationsNonUniformAMD(fv); 87 fv = minInvocationsInclusiveScanAMD(fv); 97 fv = maxInvocationsInclusiveScanAMD(fv); 107 fv = addInvocationsInclusiveScanAMD(fv); [all …]
|
/external/angle/third_party/glslang/src/Test/ |
D | spv.shaderBallotAMD.comp | 14 vec3 fv; 27 fv = minInvocationsAMD(fv); 37 fv = maxInvocationsAMD(fv); 47 fv = addInvocationsAMD(fv); 57 fv = minInvocationsNonUniformAMD(fv); 67 fv = maxInvocationsNonUniformAMD(fv); 77 fv = addInvocationsNonUniformAMD(fv); 87 fv = minInvocationsInclusiveScanAMD(fv); 97 fv = maxInvocationsInclusiveScanAMD(fv); 107 fv = addInvocationsInclusiveScanAMD(fv); [all …]
|
/external/clang/test/SemaCXX/ |
D | complex-overload.cpp | 4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_1() argument 5 char *cp1 = foo(fv); in test_foo_1() 14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2() argument 15 char *cp1 = foo(fv); in test_foo_2() 23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3() argument 24 char *cp1 = foo(fv); in test_foo_3()
|
D | overload-call.cpp | 9 void test_f(int iv, float fv) { in test_f() argument 10 float* fp = f(fv); in test_f() 20 void test_g(int iv, float fv) { in test_g() argument 21 int* ip1 = g(iv, fv, 0); in test_g() 23 double* dp1 = g(iv, fv, fv); in test_g() 25 char* cp2 = g(0, 0, 0, iv, fv); in test_g() 27 double* dp2 = g(0, fv, 1.5); // expected-error {{call to 'g' is ambiguous}} in test_g() 33 void test_h(float fv, unsigned char cv) { in test_h() argument 34 double* dp = h(fv); in test_h()
|
/external/clang/test/Sema/ |
D | overloadable-complex.c | 4 void test_foo_1(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_1() argument 5 char *cp1 = foo(fv); in test_foo_1() 14 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2() argument 15 char *cp1 = foo(fv); in test_foo_2() 23 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3() argument 24 char *cp1 = foo(fv); in test_foo_3()
|
/external/golang-protobuf/proto/ |
D | text.go | 262 fv := sv.Field(i) 276 if name == "XXX_unrecognized" && !fv.IsNil() { 277 if err := writeUnknownStruct(w, fv.Interface().([]byte)); err != nil { 283 if fv.Kind() == reflect.Ptr && fv.IsNil() { 289 if fv.Kind() == reflect.Slice && fv.IsNil() { 294 if props.Repeated && fv.Kind() == reflect.Slice { 296 for j := 0; j < fv.Len(); j++ { 305 v := fv.Index(j) 323 if fv.Kind() == reflect.Map { 325 keys := fv.MapKeys() [all …]
|
D | text_parser.go | 746 switch fv := v; fv.Kind() { 758 fv.Set(reflect.ValueOf(bytes)) 765 fv.Set(reflect.Append(fv, reflect.New(at.Elem()).Elem())) 766 err := p.readAny(fv.Index(fv.Len()-1), props) 785 fv.Set(reflect.Append(fv, reflect.New(at.Elem()).Elem())) 786 return p.readAny(fv.Index(fv.Len()-1), props) 791 fv.SetBool(true) 794 fv.SetBool(false) 804 if f, err := strconv.ParseFloat(v, fv.Type().Bits()); err == nil { 805 fv.SetFloat(f) [all …]
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | FormattedValueTest.java | 149 public static void checkFormattedValue(String message, FormattedValue fv, String expectedString, in checkFormattedValue() argument 152 int stringLength = fv.toString().length(); in checkFormattedValue() 159 String baseMessage = message + ": " + fv.toString() + ": "; in checkFormattedValue() 162 assertEquals(baseMessage + " string", expectedString, fv.toString()); in checkFormattedValue() 163 assertCharSequenceEquals(expectedString, fv); in checkFormattedValue() 166 AttributedCharacterIterator fpi = fv.toCharacterIterator(); in checkFormattedValue() 205 assertTrue(baseMessage + i, fv.nextPosition(cfpos)); in checkFormattedValue() 216 boolean afterLoopResult = fv.nextPosition(cfpos); in checkFormattedValue() 228 assertTrue(baseMessage + i, fv.nextPosition(cfpos)); in checkFormattedValue() 239 afterLoopResult = fv.nextPosition(cfpos); in checkFormattedValue() [all …]
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | FormattedValueTest.java | 152 public static void checkFormattedValue(String message, FormattedValue fv, String expectedString, in checkFormattedValue() argument 155 int stringLength = fv.toString().length(); in checkFormattedValue() 162 String baseMessage = message + ": " + fv.toString() + ": "; in checkFormattedValue() 165 assertEquals(baseMessage + " string", expectedString, fv.toString()); in checkFormattedValue() 166 assertCharSequenceEquals(expectedString, fv); in checkFormattedValue() 169 AttributedCharacterIterator fpi = fv.toCharacterIterator(); in checkFormattedValue() 208 assertTrue(baseMessage + i, fv.nextPosition(cfpos)); in checkFormattedValue() 219 boolean afterLoopResult = fv.nextPosition(cfpos); in checkFormattedValue() 231 assertTrue(baseMessage + i, fv.nextPosition(cfpos)); in checkFormattedValue() 242 afterLoopResult = fv.nextPosition(cfpos); in checkFormattedValue() [all …]
|
/external/icu/icu4c/source/test/intltest/ |
D | formattedvaluetest.cpp | 169 const FormattedValue& fv, in checkFormattedValue() argument 181 checkMixedFormattedValue(message, fv, expectedString, converted.getAlias(), length); in checkFormattedValue() 202 const FormattedValue& fv, in checkMixedFormattedValue() argument 207 UnicodeString baseMessage = UnicodeString(message) + u": " + fv.toString(status) + u": "; in checkMixedFormattedValue() 210 assertEquals(baseMessage + u"string", expectedString, fv.toString(status)); in checkMixedFormattedValue() 211 assertEquals(baseMessage + u"temp string", expectedString, fv.toTempString(status)); in checkMixedFormattedValue() 214 UnicodeString readOnlyAlias = fv.toTempString(status); in checkMixedFormattedValue() 224 fv.nextPosition(cfpos, status)); in checkMixedFormattedValue() 238 UBool afterLoopResult = fv.nextPosition(cfpos, status); in checkMixedFormattedValue() 250 fv.nextPosition(cfpos, status)); in checkMixedFormattedValue() [all …]
|
/external/icu/icu4c/source/test/cintltst/ |
D | uformattedvaluetst.c | 192 const UFormattedValue* fv, in checkFormattedValueString() argument 196 const UChar* actualString = ufmtval_getString(fv, &length, ec); in checkFormattedValueString() 211 const UFormattedValue* fv, in checkFormattedValue() argument 218 checkFormattedValueString(message, fv, expectedString, &ec); in checkFormattedValue() 224 while (ufmtval_nextPosition(fv, ucfpos, &ec)) { in checkFormattedValue() 237 assertTrue("After loop", !ufmtval_nextPosition(fv, ucfpos, &ec)); in checkFormattedValue() 244 const UFormattedValue* fv, in checkMixedFormattedValue() argument 250 checkFormattedValueString(message, fv, expectedString, &ec); in checkMixedFormattedValue() 256 while (ufmtval_nextPosition(fv, ucfpos, &ec)) { in checkMixedFormattedValue() 269 assertTrue("After loop", !ufmtval_nextPosition(fv, ucfpos, &ec)); in checkMixedFormattedValue()
|
D | crelativedateformattest.c | 465 UFormattedRelativeDateTime* fv = ureldatefmt_openResult(&status); in TestNumericField() local 470 ureldatefmt_formatToResult(reldatefmt, offsets[iOffset], itemPtr->unit, fv, &status); in TestNumericField() 479 …const UChar* ubufget = ufmtval_getString(ureldatefmt_resultAsValue(fv, &status), &ulenget, &status… in TestNumericField() 487 … foundNumeric = ufmtval_nextPosition(ureldatefmt_resultAsValue(fv, &status), cfpos, &status); in TestNumericField() 519 ureldatefmt_closeResult(fv); in TestNumericField() 525 … ureldatefmt_formatNumericToResult(reldatefmt, offsets[iOffset], itemPtr->unit, fv, &status); in TestNumericField() 534 …const UChar* ubufget = ufmtval_getString(ureldatefmt_resultAsValue(fv, &status), &ulenget, &status… in TestNumericField() 542 … foundNumeric = ufmtval_nextPosition(ureldatefmt_resultAsValue(fv, &status), cfpos, &status); in TestNumericField() 571 ureldatefmt_closeResult(fv); in TestNumericField() 661 const UFormattedValue* fv = ureldatefmt_resultAsValue(frdt, &ec); in TestFields() local [all …]
|
D | cformtst.h | 45 const UFormattedValue* fv, 53 const UFormattedValue* fv,
|
/external/eigen/unsupported/test/ |
D | openglsupport.cpp | 238 VERIFY_UNIFORM(fv,v2f, Vector2f); in test_openglsupport() 239 VERIFY_UNIFORM(fv,v3f, Vector3f); in test_openglsupport() 240 VERIFY_UNIFORM(fv,v4f, Vector4f); in test_openglsupport() 244 VERIFY_UNIFORM(fv,m2f, Matrix2f); in test_openglsupport() 245 VERIFY_UNIFORM(fv,m3f, Matrix3f); in test_openglsupport() 246 VERIFY_UNIFORM(fv,m4f, Matrix4f); in test_openglsupport() 273 VERIFY_UNIFORM(fv,m23f, Matrix23f); in test_openglsupport() 274 VERIFY_UNIFORM(fv,m32f, Matrix32f); in test_openglsupport() 275 VERIFY_UNIFORM(fv,m24f, Matrix24f); in test_openglsupport() 276 VERIFY_UNIFORM(fv,m42f, Matrix42f); in test_openglsupport() [all …]
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/ |
D | BrentOptimizer.java | 111 double fv = fx; in localMin() local 127 r = (x - w) * (fx - fv); in localMin() 199 fv = fw; in localMin() 212 fv = fw; in localMin() 215 } else if (fu <= fv || v == x || v == w) { in localMin() 217 fv = fu; in localMin()
|
/external/v8/src/compiler/ |
D | diamond.h | 52 Node* Phi(MachineRepresentation rep, Node* tv, Node* fv) { in Phi() 53 return graph->NewNode(common->Phi(rep, 2), tv, fv, merge); in Phi() 56 Node* EffectPhi(Node* tv, Node* fv) { in EffectPhi() 57 return graph->NewNode(common->EffectPhi(2), tv, fv, merge); in EffectPhi()
|
/external/vboot_reference/tests/futility/ |
D | test_sign_fw_main.sh | 22 --fv ${TMP}.fw_main \ 29 --fv ${TMP}.fw_main 37 --fv ${TMP}.fw_main \
|
/external/clang/test/OpenMP/ |
D | atomic_capture_codegen.cpp | 20 float fv, fx; variable 223 dv = fx = fx + fv; in main() 242 {fv = dx; dx = dv - dx;} in main() 484 {fx = fx * ulv; fv = fx;} in main() 548 {cix = fv / cix; civ = cix;} in main() 1004 {fv = float2x.x; float2x.x = ulv - float2x.x;} in main()
|
/external/clang/test/CodeGen/ |
D | overloadable.c | 21 float fv = 3.0f; in main() local 27 fv = f(fv); in main()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | dropped_constructor.ll | 12 @fv = external global i8, align 8 13 …oid ()*, i8* }] [{ i32, void ()*, i8* } { i32 65535, void ()* @__cxx_global_var_init.33, i8* @fv }] 17 store i8 1, i8* @fv, align 8
|
/external/eigen/unsupported/Eigen/ |
D | OpenGLSupport | 93 EIGEN_GL_FUNC_SPECIALIZATION_VEC(glVertex,float, 2,2fv) 97 EIGEN_GL_FUNC_SPECIALIZATION_VEC(glVertex,float, 3,3fv) 101 EIGEN_GL_FUNC_SPECIALIZATION_VEC(glVertex,float, 4,4fv) 107 EIGEN_GL_FUNC_SPECIALIZATION_VEC(glTexCoord,float, 2,2fv) 111 EIGEN_GL_FUNC_SPECIALIZATION_VEC(glTexCoord,float, 3,3fv) 115 EIGEN_GL_FUNC_SPECIALIZATION_VEC(glTexCoord,float, 4,4fv) 121 EIGEN_GL_FUNC_SPECIALIZATION_VEC(glColor,float, 2,2fv) 125 EIGEN_GL_FUNC_SPECIALIZATION_VEC(glColor,float, 3,3fv) 129 EIGEN_GL_FUNC_SPECIALIZATION_VEC(glColor,float, 4,4fv) 135 EIGEN_GL_FUNC_SPECIALIZATION_VEC(glNormal,float, 3,3fv) [all …]
|
/external/mksh/src/ |
D | Build.sh | 423 eval fv=\$HAVE_CAN_`upper $vn` 425 test 11 = $fa$fv || LDFLAGS=$save_LDFLAGS 427 test 11 = $fa$fv || CFLAGS=$save_CFLAGS 1544 fv=0 1548 fv=0 1552 fv=1 1555 test $fv = 1 || for what in $checks; do 1556 test $fv = 1 && break 1576 8) fv=1 cm=normal ;; 1578 test $fv = 1 && break [all …]
|
/external/toolchain-utils/ |
D | buildbot_test_llvm.py | 173 fv = ToolchainVerifier(options.board, options.chromeos_root, 175 return fv.DoAll() 186 fv = ToolchainVerifier(board, options.chromeos_root, options.weekday, 188 buildbucket_id = fv.DoAll()
|
/external/llvm/test/CodeGen/Mips/ |
D | fpneeded.ll | 8 define float @fv() #0 { 14 ; 32: .ent fv 22 ; 32: .end fv 118 %call = call float @fv()
|
/external/angle/third_party/glslang/src/Test/baseResults/ |
D | spv.1.4.OpSelect.frag.out | 26 Name 77 "fv" 83 77(fv): 76(ptr) Variable Function 126 Store 77(fv) 86 127 87: 11(ptr) AccessChain 77(fv) 39
|