Home
last modified time | relevance | path

Searched refs:fv (Results 1 – 25 of 271) sorted by relevance

1234567891011

/external/deqp-deps/glslang/Test/
Dspv.shaderBallotAMD.comp14 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/webrtc/api/
Dfunction_view_unittest.cc22 int CallWith33(rtc::FunctionView<int(int)> fv) { in CallWith33() argument
23 return fv ? fv(33) : -1; in CallWith33()
43 rtc::FunctionView<int(int)> fv(f); in TEST() local
44 EXPECT_TRUE(fv); in TEST()
45 EXPECT_EQ(18, fv(17)); in TEST()
51 rtc::FunctionView<int()> fv(f); in TEST() local
52 EXPECT_TRUE(fv); in TEST()
54 EXPECT_EQ(15, fv()); in TEST()
56 EXPECT_EQ(17, fv()); in TEST()
60 rtc::FunctionView<int(int)> fv(Add33); in TEST() local
[all …]
/external/clang/test/SemaCXX/
Dcomplex-overload.cpp4 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()
Doverload-call.cpp9 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/llvm-project/clang/test/SemaCXX/
Dcomplex-overload.cpp4 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()
15 void test_foo_2(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_2() argument
16 char *cp1 = foo(fv); in test_foo_2()
24 void test_foo_3(float fv, double dv, float _Complex fc, double _Complex dc) { in test_foo_3() argument
25 char *cp1 = foo(fv); in test_foo_3()
Doverload-call.cpp9 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/icu/icu4c/source/test/intltest/
Dformattedvaluetest.cpp169 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()
240 afterLoopResult = fv.nextPosition(cfpos, status); in checkMixedFormattedValue()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DFormattedValueTest.java152 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()
221 afterLoopResult = fv.nextPosition(cfpos); in checkFormattedValue()
233 assertTrue(baseMessage + i, fv.nextPosition(cfpos)); in checkFormattedValue()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DFormattedValueTest.java149 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()
218 afterLoopResult = fv.nextPosition(cfpos); in checkFormattedValue()
230 assertTrue(baseMessage + i, fv.nextPosition(cfpos)); in checkFormattedValue()
[all …]
/external/clang/test/Sema/
Doverloadable-complex.c4 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/llvm-project/clang/test/Sema/
Doverloadable-complex.c4 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/
Dtext.go262 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 …]
Dtext_parser.go746 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/icu4c/source/test/cintltst/
Duformattedvaluetst.c192 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()
Dcrelativedateformattest.c465 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 …]
/external/eigen/unsupported/test/
Dopenglsupport.cpp238 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/llvm-project/llvm/test/CodeGen/SystemZ/
Dsoft-float-args.ll9 ; CHECK-NOT: %{{[fv]}}
21 ; CHECK-NOT: %{{[fv]}}
34 ; CHECK-NOT: %{{[fv]}}
58 ; CHECK-NOT: %{{[fv]}}
77 ; CHECK-NOT: %{{[fv]}}
97 ; CHECK-NOT: %{{[fv]}}
110 ; CHECK-NOT: %{{[fv]}}
123 ; CHECK-NOT: %{{[fv]}}
138 ; CHECK-NOT: %{{[fv]}}
155 ; CHECK-NOT: %{{[fv]}}
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
DBrentOptimizer.java111 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/google-java-format/core/src/test/resources/com/google/googlejavaformat/java/testdata/
DB20128760.output96 .filter(fv -> itemLinkFieldIds.contains(fv.getKey()))
98 fv ->
99 FieldDTO.deserializeStringToListOfStrings(fv.getValue()).stream()
103 fieldsById.get(fv.getKey()).getItemTypeId(), id))));
DB20128760.input102 .filter(fv -> itemLinkFieldIds.contains(fv.getKey()))
103 .flatMap(fv -> FieldDTO.deserializeStringToListOfStrings(fv.getValue())
105 .map(id -> new ItemKey(fieldsById.get(fv.getKey()).getItemTypeId(), id))));
/external/vboot_reference/tests/futility/
Dtest_sign_fw_main.sh22 --fv ${TMP}.fw_main \
29 --fv ${TMP}.fw_main
37 --fv ${TMP}.fw_main \
/external/clang/test/OpenMP/
Datomic_capture_codegen.cpp20 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/llvm-project/clang/test/OpenMP/
Datomic_capture_codegen.cpp25 float fv, fx; variable
228 dv = fx = fx + fv; in main()
247 {fv = dx; dx = dv - dx;} in main()
489 {fx = fx * ulv; fv = fx;} in main()
553 {cix = fv / cix; civ = cix;} in main()
968 {fv = float2x.x; float2x.x = ulv - float2x.x;} in main()
/external/llvm-project/llvm/test/CodeGen/X86/
Ddropped_constructor.ll12 @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/clang/test/CodeGen/
Doverloadable.c21 float fv = 3.0f; in main() local
27 fv = f(fv); in main()

1234567891011