HomeSort by relevance Sort by last modified time
    Searched defs:vf (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/clang/test/Modules/
submodules.cpp 16 vector<float> vf; variable
  /dalvik/dx/tests/141-invoke-polymorphic-varhandles/
VarHandleDexTest.java 103 VarHandle vf = MethodHandles.lookup().findStaticVarHandle(t.getClass(), "fValue", Float.class); local
107 Float f0 = (Float) vf.compareAndExchangeAcquire(t, expectedValue, newValue);
108 vf.compareAndExchangeAcquire(t, expectedValue, newValue);
109 Float f1 = (Float) vf.compareAndExchange(t, expectedValue, newValue);
110 vf.compareAndExchange(t, expectedValue, newValue);
111 Float f2 = (Float) vf.compareAndExchangeRelease(t, expectedValue, newValue);
112 vf.compareAndExchangeRelease(t, expectedValue, newValue);
114 boolean r0 = vf.compareAndSet(t, expectedValue, newValue);
115 vf.compareAndSet(t, expectedValue, newValue);
116 boolean r1 = vf.weakCompareAndSetAcquire(t, expectedValue, newValue)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_packed_float.c 46 unsigned vf = (fu.s.sign << 7) | (exponent << 4) | mantissa; local
49 if ((vf & 0x7f) == 0)
56 return vf;
60 brw_vf_to_float(unsigned char vf)
65 if (vf == 0x00 || vf == 0x80) {
66 fu.u = vf << 24;
70 fu.s.sign = vf >> 7;
71 fu.s.exponent = ((vf & 0x70) >> 4) + (127 - 3);
72 fu.s.mantissa = (vf & 0xf) << (23 - 4)
    [all...]
  /prebuilts/go/darwin-x86/src/runtime/
sqrt_test.go 21 for i := 0; i < len(vf); i++ {
22 a := math.Abs(vf[i])
44 var vf = []float64{ var
  /prebuilts/go/linux-x86/src/runtime/
sqrt_test.go 21 for i := 0; i < len(vf); i++ {
22 a := math.Abs(vf[i])
44 var vf = []float64{ var
  /external/clang/test/CodeGen/
altivec.c 20 vector float vf; local
22 vf = (vector float)(1.0); // CHECK: <float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}>
38 vector float vf; local
39 vf++; // CHECK: fadd <4 x float> {{.*}} <float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}, float 1.000000e+{{0+}}>
builtins-ppc-altivec.c 25 vector float vf = { -1.5, 2.5, -3.5, 4.5 }; variable
79 vf = vec_abs(vf);
83 // CHECK: store <4 x float> %{{.*}}, <4 x float>* @vf
87 // CHECK-LE: store <4 x float> %{{.*}}, <4 x float>* @vf
88 // CHECK-NOALTIVEC: error: use of undeclared identifier 'vf'
89 // CHECK-NOALTIVEC: vf = vec_abs(vf)
183 res_vf = vec_add(vf, vf);
    [all...]
builtins-ppc-vsx.c 12 vector float vf = { -1.5, 2.5, -3.5, 4.5 }; variable
68 res_vf = vec_abs(vf);
143 res_vf = vec_ceil(vf);
151 res_vbi = vec_cmpeq(vf, vf);
159 res_vbi = vec_cmpge(vf, vf);
167 res_vbi = vec_cmpgt(vf, vf);
175 res_vbi = vec_cmple(vf, vf)
    [all...]
  /external/clang/test/CodeGenCXX/
constructor-for-array-members.cpp 9 float vf = 1.00; variable
12 S() : iS(i++), f1(vf++) {printf("S::S()\n");}
  /external/clang/test/Sema/
altivec-init.c 21 vector float vf; local
22 vf = (vector float)(1.0);
ext_vector_casts.c 101 float2 vf = f; local
117 vf = 1 + vf;
118 vf = l + vf;
119 vf = 2.0 + vf;
120 vf = d + vf; // expected-warning {{implicit conversion loses floating-point precision}}
121 vf = vf + 0xffffffff
    [all...]
  /external/compiler-rt/test/cfi/cross-dso/
stats.cpp 9 virtual void vf() {} function in struct:A
20 a->vf();
42 a->vf();
  /external/compiler-rt/test/cfi/
stats.cpp 11 virtual void vf() {} function in struct:A
17 a->vf();
37 a->vf();
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_formats.c 123 const struct vc4_format *vf = get_format(f); local
125 if (!vf)
128 return vf->rt_type != RT_NO;
134 const struct vc4_format *vf = get_format(f); local
136 if (!vf)
139 return vf->rt_type == RT_RGB565;
145 const struct vc4_format *vf = get_format(f); local
147 return vf != NULL;
153 const struct vc4_format *vf = get_format(f); local
155 if (!vf)
164 const struct vc4_format *vf = get_format(f); local
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
variance.h 59 vpx_variance_fn_t vf; member in struct:variance_vtable
74 vpx_variance_fn_t vf; member in struct:vp9_variance_vtable
  /external/clang/test/SemaCXX/
altivec.cpp 16 vector float vf; local
31 int res12[vec_step(vf) == 4 ? 1 : -1];
62 vector float vf; local
63 vf++;
  /external/eigen/test/
mixingtypes.cpp 57 Vec_f vf = Vec_f::Random(size,1); local
58 Vec_d vd = vf.template cast<double>();
79 VERIFY_RAISES_ASSERT(vf=vd);
80 VERIFY_RAISES_ASSERT(vf+=vd);
86 VERIFY_MIX_SCALAR(vf * scf , vf.template cast<complex<float> >() * scf);
96 VERIFY_MIX_SCALAR(vf / scf , vf.template cast<complex<float> >() / scf);
97 VERIFY_MIX_SCALAR(vf.array() / scf, vf.template cast<complex<float> >().array() / scf)
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_blitter.h 64 struct ilo_state_vf vf; member in struct:ilo_blitter
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4813.go 24 vf = f
34 a6 = A[vf] // ERROR "non-integer|must be integer"
42 s6 = S[vf] // ERROR "non-integer|must be integer"
50 t6 = T[vf] // ERROR "non-integer|must be integer"
23 vf = f var
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4813.go 24 vf = f
34 a6 = A[vf] // ERROR "non-integer|must be integer"
42 s6 = S[vf] // ERROR "non-integer|must be integer"
50 t6 = T[vf] // ERROR "non-integer|must be integer"
23 vf = f var
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
WindowFrameTests.java 152 final Rect vf = new Rect(pf); local
153 vf.top += topVisibleInset;
154 vf.bottom -= bottomVisibleInset;
163 w.computeFrameLw(pf, df, of, cf, vf, dcf, sf, null, WmDisplayCutout.NO_CUTOUT, false);
170 assertTrue(vf.equals(w.getVisibleFrameLw()));
178 w.computeFrameLw(pf, df, of, cf, vf, dcf, sf, null, WmDisplayCutout.NO_CUTOUT, false);
336 final Rect vf = cf; local
337 final Rect sf = vf;
343 w.computeFrameLw(pf, df, of, cf, vf, dcf, sf, null, WmDisplayCutout.NO_CUTOUT, false);
349 w.computeFrameLw(pf, df, of, cf, vf, dcf, sf, null, WmDisplayCutout.NO_CUTOUT, false)
    [all...]
  /external/eigen/bench/
bench_norm.cpp 230 for (int i=0; i<iters; ++i) { af += NRM(vf); } \
250 VectorXf vf = VectorXf::Ones(s) * yf; local
254 std::cout << "sqsumNorm\t" << sqsumNorm(vf) << "\t" << sqsumNorm(vd) << "\n";
255 std::cout << "hypotNorm\t" << hypotNorm(vf) << "\t" << hypotNorm(vd) << "\n";
256 std::cout << "blueNorm\t" << blueNorm(vf) << "\t" << blueNorm(vd) << "\n";
257 std::cout << "pblueNorm\t" << pblueNorm(vf) << "\t" << pblueNorm(vd) << "\n";
258 std::cout << "lapackNorm\t" << lapackNorm(vf) << "\t" << lapackNorm(vd) << "\n";
259 std::cout << "twopassNorm\t" << twopassNorm(vf) << "\t" << twopassNorm(vd) << "\n";
260 std::cout << "bl2passNorm\t" << bl2passNorm(vf) << "\t" << bl2passNorm(vd) << "\n";
265 VectorXf vf(s)
332 VectorXf vf = VectorXf::Random(s1) * y; local
348 VectorXf vf = VectorXf::Random(512) * y; local
    [all...]
  /external/mesa3d/src/gallium/drivers/ilo/core/
ilo_state_vf.h 75 * VF parameters.
166 const struct ilo_state_vf *vf = NULL; local
167 return (sizeof(vf->user_ve[0]) +
168 sizeof(vf->user_instancing[0])) * element_count;
176 ilo_state_vf_init(struct ilo_state_vf *vf,
181 ilo_state_vf_init_for_rectlist(struct ilo_state_vf *vf,
188 ilo_state_vf_set_params(struct ilo_state_vf *vf,
196 ilo_state_vf_get_attr_count(const struct ilo_state_vf *vf)
198 return vf->internal_ve_count + vf->user_ve_count
    [all...]
  /external/icu/icu4c/source/i18n/
decimfmtimpl.cpp 211 DecimalFormatImpl::prepareValueFormatter(ValueFormatter &vf) const {
213 vf.prepareScientificFormatting(
215 return vf;
217 vf.prepareFixedDecimalFormatting(
219 return vf;
329 ValueFormatter vf; local
332 prepareValueFormatter(vf),
494 ValueFormatter vf; local
497 prepareValueFormatter(vf),
510 ValueFormatter vf; local
623 ValueFormatter vf; local
    [all...]
  /external/llvm/include/llvm/ADT/
Hashing.h 227 uint64_t vf = a + z; local
238 uint64_t r = shift_mix((vf + ws) * k2 + (wf + vs) * k0);

Completed in 1877 milliseconds

1 2 3 4