Searched refs:vv (Results 1 - 25 of 38) sorted by relevance

12

/external/compiler-rt/test/BlocksRuntime/
H A Dblockimport.c31 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);
H A Dnestedimport.c30 void (^vv)(void) = ^{
37 vv();
/external/elfutils/src/tests/
H A Dtestfile_parameter_ref.c3 volatile int vv; variable
12 vv++;
/external/clang/test/Analysis/
H A Dunions.cpp79 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/
H A Doverloadable.c21 v4hi vv; local
27 vv = f(vv);
/external/clang/test/SemaCXX/
H A Dfor-range-no-std.cpp41 void (*vv[])() = {PR11601, PR11601, PR11601};
42 for (void (*i)() : vv) i();
/external/opencv/cvaux/src/
H A Dcvfindhandregion.cpp75 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 local
[all...]
/external/skia/tests/
H A DInterpolatorTest.cpp52 SkScalar vv[3];
53 REPORTER_ASSERT(reporter, memcmp(v, iset(vv, 60, 120, 180), sizeof(v)) == 0);
/external/harfbuzz_ng/src/
H A Dgen-indic-table.py111 vv = values[i].keys () variable
112 vv.sort ()
113 for v in vv:
227 vv = values[i].keys () variable
228 vv.sort ()
229 for v in vv:
/external/mksh/src/
H A DBuild.sh207 vv() { function
211 eval "$@" >vv.out 2>&1
212 sed "s^${_c} " <vv.out
314 vv ']' "$CC $CFLAGS $CPPFLAGS $LDFLAGS $NOWARN conftest.c $LIBS $ccpr"
330 test -n "$vscan" && grep $vscan vv.out >/dev/null 2>&1 && fv=$fr
335 rmf conftest.c conftest.o ${tcfn}* vv.out
581 Rebuild.sh signames.inc test.sh x vv.out
644 vv ']' "${CC-cc} -E $CFLAGS $CPPFLAGS $NOWARN conftest.c | grep ct= | tr -d \\\\015 >x"
647 rmf x vv.out
938 vv '|' "osleve
[all...]
/external/vboot_reference/tests/
H A Drun_vbutil_kernel_arg_tests.sh70 vv=$(basename "$v")
71 echo -n "verify $vv ... "
80 echo -n "verify $vv signed ... "
/external/v8/test/webkit/
H A Drehash-assign.js76 vv = 21;
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/noise/
H A DShaderUtils.java241 for (float vv : v) {
242 r[i++] = vv / l;
249 for (float vv : v) {
250 s += vv * vv;
/external/mesa3d/src/mesa/vbo/
H A Dvbo_exec_eval.c195 GLfloat vv = (v - map->v1) * map->dv; local
202 uu, vv,
217 GLfloat vv = (v - map->v1) * map->dv; local
226 _math_de_casteljau_surf(map->Points, vertex, du, dv, uu, vv,
251 _math_horner_bezier_surf(map->Points, vertex, uu, vv,
/external/webp/src/dsp/
H A Dupsampling_neon.c129 const int16x8_t vv = vreinterpretq_s16_u16(vsubl_u8(v, u128)); \
132 const int32x4_t rl = vmlal_lane_s16(yl, vget_low_s16(vv), cf16, 1);\
133 const int32x4_t rh = vmlal_lane_s16(yh, vget_high_s16(vv), cf16, 1);\
138 gl = vmlsl_lane_s16(gl, vget_low_s16(vv), cf16, 3); \
139 gh = vmlsl_lane_s16(gh, vget_high_s16(vv), cf16, 3); \
/external/skia/src/animator/
H A DSkOperandIterpolator.cpp112 SkOperand v1[3], v2[3], v[3], vv[3]; local
140 SkASSERT(memcmp(v, iset(vv, 60, 120, 180), sizeof(v)) == 0);
/external/v8/test/mjsunit/
H A Dto_number_order.js31 var vv = function() { x += "hest"; return 1; } function
33 v.valueOf = vv;
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dmct.c387 __m128 vy, vu, vv; local
392 vv = _mm_load_ps(c2);
393 vr = _mm_add_ps(vy, _mm_mul_ps(vv, vrv));
394 vg = _mm_sub_ps(_mm_sub_ps(vy, _mm_mul_ps(vu, vgu)), _mm_mul_ps(vv, vgv));
405 vv = _mm_load_ps(c2);
406 vr = _mm_add_ps(vy, _mm_mul_ps(vv, vrv));
407 vg = _mm_sub_ps(_mm_sub_ps(vy, _mm_mul_ps(vu, vgu)), _mm_mul_ps(vv, vgv));
/external/v8/test/mjsunit/harmony/
H A Dmodule-linking.js37 assertEquals(undefined, vv)
158 var vv = 21
163 assertEquals(21, vv)
/external/fonttools/Lib/fontTools/
H A Dmerge.py677 vv = v.split(',')
678 if vv == ['']:
679 vv = []
680 vv = [int(x, 0) if len(x) and x[0] in "0123456789" else x for x in vv]
682 v = vv
685 v.extend(vv)
688 for x in vv:
H A Dsubset.py1890 vv = v.split(',')
1891 if vv == ['']:
1892 vv = []
1893 vv = [int(x, 0) if len(x) and x[0] in "0123456789" else x for x in vv]
1895 v = vv
1898 v.extend(vv)
1901 for x in vv:
/external/fonttools/Tools/fontTools/
H A Dmerge.py677 vv = v.split(',')
678 if vv == ['']:
679 vv = []
680 vv = [int(x, 0) if len(x) and x[0] in "0123456789" else x for x in vv]
682 v = vv
685 v.extend(vv)
688 for x in vv:
/external/javasqlite/src/main/native/
H A Dsqlite_jni.c2467 hvm *vv, **vvp; local
2470 vv = *vvp;
2471 while (vv) {
2472 if (vv == v) {
2473 *vvp = vv->next;
2476 vvp = &vv->next;
2477 vv = *vvp;
2516 hvm *vv, **vvp; local
2519 vv = *vvp;
2520 while (vv) {
3025 jvalue vv; local
3204 jvalue vv; local
3542 jvalue vv; local
4361 jvalue vv; local
4645 jvalue vv; local
[all...]
/external/v8/benchmarks/
H A Dcrypto.js165 var rr,vv;
167 for(vv = 0; vv <= 9; ++vv) BI_RC[rr++] = vv;
169 for(vv = 10; vv < 36; ++vv) BI_RC[rr++] = vv;
171 for(vv
[all...]
/external/bzip2/
H A Dblocksort.c843 Int32 vv; local
849 vv = runningOrder[i];
851 while ( BIGFREQ(runningOrder[j-h]) > BIGFREQ(vv) ) {
857 runningOrder[j] = vv;

Completed in 850 milliseconds

12