HomeSort by relevance Sort by last modified time
    Searched refs:vv (Results 1 - 25 of 112) sorted by null

1 2 3 4 5

  /external/compiler-rt/test/BlocksRuntime/
blockimport.c 31 void (^vv)(void) = ^{
38 //printf("Block dump %s\n", _Block_dump(vv));
40 struct Block_layout *layout = (struct Block_layout *)(void *)vv;
47 void (^vvcopy)(void) = Block_copy(vv);
nestedimport.c 30 void (^vv)(void) = ^{
37 vv();
  /external/elfutils/tests/
testfile_parameter_ref.c 3 volatile int vv; variable
12 vv++;
  /ndk/tests/build/issue34613-neon/jni/
issue34613-neon.cpp 6 float32x4_t vv = vmulq_n_f32( v0, f); local
  /external/clang/test/Analysis/
unions.cpp 79 IntOrString vv; local
80 vv.i = 5;
81 uu = vv;
90 IntOrString vv; local
92 vv.s = str;
95 uu = vv;
  /external/clang/test/CodeGen/
overloadable.c 24 v4hi vv; local
30 vv = f(vv);
  /external/clang/test/SemaCXX/
for-range-no-std.cpp 41 void (*vv[])() = {PR11601, PR11601, PR11601};
42 for (void (*i)() : vv) i();
  /prebuilts/go/darwin-x86/test/bench/shootout/
spectral-norm.c 71 double u[N],v[N],vBv,vv; local
78 vBv=vv=0;
79 for(i=0;i<N;i++) { vBv+=u[i]*v[i]; vv+=v[i]*v[i]; }
80 printf("%0.9f\n",sqrt(vBv/vv));
spectral-norm.go 87 var vBv, vv float64
90 vv += v[i] * v[i]
92 fmt.Printf("%0.9f\n", math.Sqrt(vBv/vv))
spectral-norm-parallel.go 105 var vBv, vv float64
108 vv += v[i] * v[i]
110 fmt.Printf("%0.9f\n", math.Sqrt(vBv/vv))
  /prebuilts/go/linux-x86/test/bench/shootout/
spectral-norm.c 71 double u[N],v[N],vBv,vv; local
78 vBv=vv=0;
79 for(i=0;i<N;i++) { vBv+=u[i]*v[i]; vv+=v[i]*v[i]; }
80 printf("%0.9f\n",sqrt(vBv/vv));
spectral-norm.go 87 var vBv, vv float64
90 vv += v[i] * v[i]
92 fmt.Printf("%0.9f\n", math.Sqrt(vBv/vv))
spectral-norm-parallel.go 105 var vBv, vv float64
108 vv += v[i] * v[i]
110 fmt.Printf("%0.9f\n", math.Sqrt(vBv/vv))
  /ndk/sources/cxx-stl/stlport/src/
num_get_float.cpp 489 _ll vv; local
490 vv.i64 = 0L;
493 vv.i64 *= 10;
494 vv.i64 += *buffer++;
497 if ( vv.i64 == ULL(0) ) { /* Check for zero and treat it as a special case */
507 if ((vv.i64 >> 32) != 0) { nzero = 32; }
508 if ((vv.i64 >> (16 + nzero)) != 0) { nzero += 16; }
509 if ((vv.i64 >> ( 8 + nzero)) != 0) { nzero += 8; }
510 if ((vv.i64 >> ( 4 + nzero)) != 0) { nzero += 4; }
511 if ((vv.i64 >> ( 2 + nzero)) != 0) { nzero += 2;
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidTreeMapTest.java 76 Integer vv = new Integer(val); local
77 String tms = tm.get(vv);
78 String hms = hm.get(vv);
97 Integer vv = new Integer(val); local
98 String tms = tm.get(vv);
99 String hms = hm.get(vv);
  /external/opencv/cvaux/src/
cvfindhandregion.cpp 75 float *vv = 0; local
108 vv = (float *) cvAlloc( count * sizeof( float ));
110 if( vv == NULL )
161 vv[i_point] = value;
176 l = cvRound( (vv[i] - vmin) / bsize );
229 if( vv[l] >= hand_left && vv[l] <= hand_right )
243 if( vv != NULL )
244 cvFree( &vv );
298 float *vv = 0 local
    [all...]
  /external/dng_sdk/source/
dng_point.h 43 dng_point (int32 vv, int32 hh)
44 : v (vv)
80 dng_point_real64 (real64 vv, real64 hh)
81 : v (vv)
dng_temperature.cpp 105 real64 vv = v - kTempTable [index] . v; local
109 real64 dt = - uu * dv + vv * du;
144 vv = v - (kTempTable [index - 1] . v * f +
159 fTint = (uu * du + vv * dv) * kTintScale;
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
ocaml.swg 254 SWIG_CAMLlocal1(vv);
255 vv = caml_swig_alloc(1,C_array);
256 SWIG_Store_field(vv,0,alloc_tuple(n));
257 CAMLreturn(vv);
350 SWIG_CAMLlocal1(vv);
351 vv = caml_swig_alloc(2,C_ptr);
352 SWIG_Store_field(vv,0,copy_int64((long)p));
353 SWIG_Store_field(vv,1,copy_int64((long)info));
354 CAMLreturn(vv);
359 SWIG_CAMLlocal1(vv);
    [all...]
  /ndk/tests/build/b9193874-neon/jni/
b9193874-neon.c 252 int16x8_t vv = vreinterpretq_s16_u16(vsubl_u8(v, u128)); local
254 int16x8_t vd = vshlq_n_s16(vv, 1);
255 int32x4_t vrl = vqdmlal_lane_s16(vshll_n_s16(vget_low_s16(vv), 1), vget_low_s16(vd), cf16, 0);
256 int32x4_t vrh = vqdmlal_lane_s16(vshll_n_s16(vget_high_s16(vv), 1), vget_high_s16(vd), cf16, 0);
258 int32x4_t vl = vmovl_s16(vget_low_s16(vv));
259 int32x4_t vh = vmovl_s16(vget_high_s16(vv));
262 int32x4_t gcl = vqdmlal_lane_s16(ugl, vget_low_s16(vv), cf16, 2);
263 int32x4_t gch = vqdmlal_lane_s16(ugh, vget_high_s16(vv), cf16, 2);
300 int16x8_t vv = vreinterpretq_s16_u16(vsubl_u8(v, u128)); local
302 int16x8_t vd = vshlq_n_s16(vv, 1)
    [all...]
  /external/harfbuzz_ng/src/
gen-indic-table.py 112 vv = values[i].keys () variable
113 vv.sort ()
114 for v in vv:
228 vv = values[i].keys () variable
229 vv.sort ()
230 for v in vv:
  /external/mksh/src/
Build.sh 212 vv() { function
216 eval "$@" >vv.out 2>&1
217 sed "s^${_c} " <vv.out
319 vv ']' "$CC $CFLAGS $CPPFLAGS $LDFLAGS $NOWARN conftest.c $LIBS $ccpr"
336 test -n "$vscan" && grep $vscan vv.out >/dev/null 2>&1 && fv=$fr
341 rmf conftest.c conftest.o ${tcfn}* vv.out
587 *.ll *.o *.gen Rebuild.sh lft no signames.inc test.sh x vv.out
650 vv ']' "${CC-cc} -E $CFLAGS $CPPFLAGS $NOWARN conftest.c | grep ct= | tr -d \\\\015 >x"
653 rmf x vv.out
957 vv '|' "oslevel >&2
    [all...]
  /hardware/ti/omap3/omx/video/src/openmax_il/prepost_processor/src/
OMX_VPP_ImgConv.c 182 OMX_U8 *uu, *vv; /* U and V buffer in 444 space */ local
214 vv = vvOut+3*KDeepFiltering*(iWidth+iAlign);
217 pvv = vv;
353 vv = vvOut+3*i*(iWidth+iAlign);
355 pvv = vv;
421 vv = vvOut;
425 pv1 = vv;
426 pv2 = vv+iWidth+iAlign;
462 OMX_U8 *uu, *vv; local
473 vv = pComponentPrivate->overlay->iOvlyConvBufPtr + (iWidth+iAlign)*2;
    [all...]
  /external/vboot_reference/tests/
run_vbutil_kernel_arg_tests.sh 70 vv=$(basename "$v")
71 echo -n "verify $vv ... "
80 echo -n "verify $vv signed ... "
  /external/opencv3/3rdparty/libwebp/dsp/
upsampling_neon.c 105 int16x8_t vv = vreinterpretq_s16_u16(vsubl_u8(v, u128)); \
108 int16x8_t vd = vshlq_n_s16(vv, 1); \
110 int32x4_t vrl = vqdmlal_lane_s16(vshll_n_s16(vget_low_s16(vv), 1), \
112 int32x4_t vrh = vqdmlal_lane_s16(vshll_n_s16(vget_high_s16(vv), 1), \
117 int32x4_t vl = vmovl_s16(vget_low_s16(vv)); \
118 int32x4_t vh = vmovl_s16(vget_high_s16(vv)); \
121 int32x4_t gcl = vqdmlal_lane_s16(ugl, vget_low_s16(vv), cf16, 2); \
122 int32x4_t gch = vqdmlal_lane_s16(ugh, vget_high_s16(vv), cf16, 2); \

Completed in 1130 milliseconds

1 2 3 4 5